/* ============================================
   3zoob Concrete - Modern Visual Design v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --text-dark: #1e293b;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 10px;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 5px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
}

.navbar-nav .btn-contact {
  background: var(--accent);
  color: var(--secondary) !important;
  font-weight: 600;
  padding: 0.5rem 1.5rem !important;
}

.navbar-nav .btn-contact:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 20px;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.hero-buttons .btn-outline-light {
  border: 2px solid var(--white);
}

.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-20px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Features Bar
   ============================================ */
.features-bar {
  background: var(--secondary);
  padding: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 500;
  padding: 1rem;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

/* ============================================
   Section Styles
   ============================================ */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.about-images {
  position: relative;
  padding: 2rem;
  z-index: 1;
}

.about-img-1 {
  width: 70%;
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.about-img-2 {
  width: 60%;
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid var(--white);
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 4;
}

.experience-badge .years {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content .lead {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-medium);
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.about-stats .stat .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
}

.about-stats .stat .label {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.service-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: none;
  box-shadow: none;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.25) 40%, rgba(15,23,42,0.05) 100%);
  transition: var(--transition);
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.25) 40%, rgba(15,23,42,0.05) 100%);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--white);
  z-index: 2;
}

.service-content i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-content i {
  color: var(--accent);
  transform: none;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-content p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-section {
  padding: 100px 0;
  background: var(--white);
}

.why-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-section > .container > .row > .col-lg-6:first-child > p {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.why-list {
  margin-top: 2rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 10px;
  transition: var(--transition);
}

.why-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.why-icon {
  flex-shrink: 0;
}

.why-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.why-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.why-text p {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.why-image {
  position: relative;
  padding: 2rem;
}

.why-image img {
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.why-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: var(--secondary);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.why-badge i {
  font-size: 2rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
}

.cta-buttons .btn-light {
  background: var(--white);
  color: var(--primary);
}

.cta-buttons .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-contact {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact span {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

.cta-contact i {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--off-white);
}

.gallery-section .section-header h2 {
  color: var(--secondary);
}

.gallery-section .section-header p {
  color: var(--text-medium);
}

.gallery-grid {
  margin: 0 -10px;
}

.gallery-item {
  padding: 10px;
  margin-bottom: 0;
}

.gallery-item a {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 99, 235, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

.gallery-note {
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   Footer
   ============================================ */
.footer-top {
  padding: 80px 0 60px;
  background-size: cover;
  background-position: center;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo {
  width: 80px;
  margin-bottom: 1.5rem;
}

.footer-widget p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li::before {
  display: none;
}

.footer-widget ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-widget ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-widget .contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.footer-widget .contact-info i {
  color: var(--primary);
  width: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ============================================
   Page Content Styles (for inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--secondary), #1e3a5f);
  padding: 150px 0 80px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.page-content {
  padding: 80px 0;
  background: var(--white);
}

.content-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  margin-bottom: 2rem;
}

.content-card h1, .content-card h2, .content-card h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.content-card h1::after, .content-card h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.content-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-top: 2rem;
}

.content-card p {
  color: var(--text-medium);
}

.content-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.content-card ul li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.content-card ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.content-card ul li:last-child {
  border-bottom: none;
}

/* Form Styles for inner pages */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.radio-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 2rem;
  cursor: pointer;
}

.radio-inline input {
  margin-right: 0.5rem;
  accent-color: var(--primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-dark), #1e40af);
}

/* Contact Form */
.fcf-body {
  max-width: 700px;
}

.fcf-form-group {
  margin-bottom: 1.5rem;
}

.fcf-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.fcf-form-control {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
}

.fcf-form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.fcf-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.fcf-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.fcf-btn-block {
  width: 100%;
}

.fb-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1877f2;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  transition: var(--transition);
}

.fb-banner:hover {
  background: #166fe5;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

#contact-us {
  background: linear-gradient(135deg, var(--off-white), #e0f2fe);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary);
}

#contact-us p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-dark);
}

/* Estimate Result */
#estimate-result {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 2.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
  color: #f1f5f9;
}

#estimate-result h2, #estimate-result h3 {
  color: #ffffff;
}

#estimate-result p {
  color: #e2e8f0;
}

#price_result {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

table th {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
}

table td {
  background: var(--white);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-dark);
}

table tr:nth-child(even) td {
  background: var(--off-white);
}

table tr:hover td {
  background: #e0f2fe;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-images {
    margin-bottom: 3rem;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .why-image {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .about-img-2 {
    width: 50%;
  }
  
  .experience-badge {
    padding: 1rem;
  }
  
  .experience-badge .years {
    font-size: 2rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .service-card {
    height: 280px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-contact {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-widget {
    text-align: center;
  }
  
  .footer-widget h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .page-header h1 {
    font-size: 2.25rem;
  }
  
  .content-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .hero {
    padding: 80px 15px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .about-img-1 {
    width: 100%;
  }
  
  .about-img-2 {
    display: none;
  }
  
  .experience-badge {
    position: relative;
    top: 0;
    transform: none;
    margin-top: 1rem;
    display: inline-block;
  }
  
  .about-images {
    text-align: center;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .content-card {
    padding: 1.5rem;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.service-card, .gallery-item, .why-item {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   Price Page Specific
   ============================================ */
.price-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.price-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.price-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}

.price-section table {
  margin-top: 1rem;
}

.price-section table th {
  background: var(--secondary);
}

.price-section table td strong {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ============================================
   Estimate Page Specific
   ============================================ */
.estimate-section {
  margin-bottom: 2rem;
}

.estimate-section h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-200);
}

.estimate-section h4 i {
  color: var(--primary);
  font-size: 1.25rem;
}

#estimate-result {
  margin-top: 2rem;
}

.estimate-breakdown {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.estimate-breakdown p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
}

/* Alert Styles */
.alert-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-info i {
  font-size: 1.25rem;
  color: var(--primary);
}

.alert-info a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.alert-info a:hover {
  color: var(--primary-dark);
}
