/* ==========================================
   JUST BLINDS - PROFESSIONAL STYLES
   ========================================== */

/* GOOGLE FONTS - ROBOTO */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ROOT VARIABLES */
:root {
  --primary-orange: #ff6b00;
  --dark-orange: #e55f00;
  --accent-orange: #e55f00;
  --light-orange: #fff4e6;
  --black: #1a1a1a;
  --dark-gray: #333333;
  --text-dark: #333333;
  --text-gray: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --border-gray: #e0e0e0;
  --success-green: #28a745;
  --emergency-red: #dc3545;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

/* HEADER */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-top {
  background-color: var(--black);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header-contact a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-contact a:hover {
  color: var(--light-orange);
}

.header-main {
  padding: 15px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.logo span {
  color: var(--accent-orange);
}

/* NAVIGATION */
nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

nav ul li a:hover {
  color: var(--primary-orange);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-orange);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--accent-orange);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: #e55f00;
  border: 2px solid var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

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

.btn-emergency {
  background-color: var(--emergency-red);
  color: var(--white);
  animation: pulse 2s infinite;
}

.btn-emergency:hover {
  background-color: #c82333;
  animation: none;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(255, 107, 0, 0.85) 100%),
              url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  color: var(--light-orange);
  margin-bottom: 30px;
}

.hero .btn {
  font-size: 1.1rem;
  padding: 15px 35px;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.trust-badge-icon {
  font-size: 2rem;
}

.trust-badge-text h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0;
}

.trust-badge-text p {
  font-size: 0.85rem;
  color: var(--light-orange);
  margin-bottom: 0;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-orange);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

/* DETAILED SERVICE SECTIONS */
.service-detail {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.service-detail h3 {
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--light-orange);
}

.service-detail h4 {
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-detail ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-gray);
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
  font-size: 1.2rem;
}

/* EMERGENCY BANNER */
.emergency-banner {
  background: linear-gradient(135deg, var(--emergency-red) 0%, #b02a37 100%);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
  margin: 60px 0;
}

.emergency-banner h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.emergency-banner p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* WHY CHOOSE US */
.why-choose-us {
  background-color: var(--light-gray);
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.feature-text h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-text p {
  color: var(--text-gray);
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--light-orange);
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary-orange);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  color: var(--text-dark);
  margin-bottom: 3px;
  font-size: 1rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.rating {
  color: #ffc107;
  margin-top: 5px;
}

/* CONTACT FORM */
.contact-section {
  background-color: var(--light-gray);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  flex-shrink: 0;
}

.contact-item-text h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-item-text p {
  color: var(--text-gray);
  margin-bottom: 0;
}

.contact-item-text a {
  color: var(--primary-orange);
  font-weight: 600;
}

.contact-item-text a:hover {
  text-decoration: underline;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-gray);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .error {
  color: var(--emergency-red);
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.form-group.invalid .error {
  display: block;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: var(--emergency-red);
}

/* SERVICE AREA */
.service-area {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.service-area h3 {
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.service-area-list li {
  padding: 10px;
  background-color: var(--light-gray);
  border-radius: 5px;
  text-align: center;
  color: var(--text-gray);
  font-weight: 500;
}

/* PRICING */
.pricing-intro {
  background-color: var(--light-orange);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.pricing-intro h3 {
  color: var(--primary-orange);
  font-size: 2rem;
  margin-bottom: 15px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

.pricing-card h4 {
  color: var(--primary-orange);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-gray);
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

/* ABOUT PAGE */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.about-text h3 {
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.about-image {
  background-color: var(--light-orange);
  border-radius: 10px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-orange);
}

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

.value-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.value-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--light-orange);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* FOOTER */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

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

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
  color: var(--text-light);
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

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

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-links a:not(:last-child)::after {
  content: '|';
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.3);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

/* RESPONSIVE DESIGN */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

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

  .contact-wrapper,
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile Tablets */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  .section {
    padding: 35px 0;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 50px 0;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  /* Mobile Navigation */
  nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    z-index: 999;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid var(--border-gray);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.4rem;
  }

  /* Trust Badges Mobile */
  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .trust-badge {
    padding: 12px 15px;
  }

  .trust-badge-icon {
    font-size: 1.5rem;
  }

  .trust-badge-text h4 {
    font-size: 0.9rem;
  }

  .trust-badge-text p {
    font-size: 0.8rem;
  }

  /* Buttons Mobile */
  .btn-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* Service Cards Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-icon {
    font-size: 2rem;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  /* Values Grid Mobile */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 25px;
  }

  /* Contact Form Mobile */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-form,
  .contact-info {
    padding: 25px 20px;
  }

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

  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  /* Service Details Mobile */
  .service-detail {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .service-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .service-detail h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .service-detail ul li {
    font-size: 0.95rem;
    padding: 8px 0 8px 25px;
  }

  /* Service Area Mobile */
  .service-area {
    padding: 25px 20px;
  }

  .service-area-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  .service-area-list li {
    padding: 8px;
    font-size: 0.9rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* WhatsApp Float Mobile */
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 15px;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .section {
    padding: 30px 0;
  }

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

  .section-title p {
    font-size: 0.9rem;
  }

  /* Hero Mobile Small */
  .hero {
    padding: 40px 0;
    min-height: 350px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

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

  /* Header Mobile Small */
  .header-top {
    padding: 8px 0;
    font-size: 0.75rem;
  }

  .header-top .container {
    flex-direction: column;
    gap: 8px;
  }

  .header-contact {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .header-contact a,
  .header-contact span {
    font-size: 0.75rem;
  }

  .header-main {
    padding: 12px 0;
  }

  .logo {
    font-size: 1.5rem;
  }

  /* Service Cards Extra Small */
  .service-card,
  .testimonial-card,
  .value-card {
    padding: 20px 15px;
  }

  .service-icon,
  .value-icon {
    font-size: 2.5rem;
  }

  .service-card h3,
  .value-card h4 {
    font-size: 1.1rem;
  }

  .service-card p,
  .value-card p {
    font-size: 0.9rem;
  }

  /* Contact Form Extra Small */
  .contact-form,
  .contact-info,
  .service-detail,
  .service-area {
    padding: 20px 15px;
  }

  .contact-item {
    margin-bottom: 20px;
  }

  .contact-item-icon {
    font-size: 1.5rem;
  }

  /* Feature Items Extra Small */
  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-icon {
    margin-bottom: 10px;
  }

  /* Buttons Extra Small */
  .btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }

  /* WhatsApp Float Extra Small */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 15px;
    right: 12px;
  }

  /* CTA Extra Small */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.35rem;
  }

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

  .logo {
    font-size: 1.35rem;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-orange);
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-white {
  background-color: var(--white);
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.hidden {
  display: none;
}

/* ==========================================
   GALLERY STYLES
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2);
}

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

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

.gallery-item h4 {
  margin: 0 0 5px 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}

.gallery-item p {
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
}

/* ==========================================
   LOCATION INPUT STYLES
   ========================================== */
.location-wrapper {
  position: relative;
  width: 100%;
}

#location {
  padding-right: 155px;
  width: 100%;
}

/* Autocomplete suggestions dropdown */
.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-gray);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 1px;
}

.location-suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.location-suggestion-item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.location-suggestion-item:hover {
  background-color: var(--light-orange);
}

.location-suggestion-item:active {
  background-color: #ffe4cc;
}

#useMyLocation {
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#useMyLocation:hover:not(:disabled) {
  background-color: var(--dark-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 107, 0, 0.3);
}

#useMyLocation:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#useMyLocation:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Google Places Autocomplete Dropdown Styling */
.pac-container {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  margin-top: 5px;
  font-family: 'Roboto', sans-serif;
  z-index: 10000;
}

.pac-item {
  padding: 10px 15px;
  border-top: 1px solid var(--border-gray);
  cursor: pointer;
  transition: background-color 0.2s;
}

.pac-item:first-child {
  border-top: none;
}

.pac-item:hover {
  background-color: var(--light-orange);
}

.pac-item-selected {
  background-color: var(--light-orange);
}

.pac-icon {
  margin-top: 6px;
}

.pac-matched {
  font-weight: 600;
  color: var(--primary-orange);
}

/* Responsive location button */
@media (max-width: 768px) {
  .location-wrapper {
    display: flex;
    flex-direction: column;
  }

  #location {
    padding-right: 15px;
    margin-bottom: 0;
  }

  #useMyLocation {
    position: static !important;
    width: 100%;
    margin-top: 10px;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
  }

  .location-suggestions {
    top: auto;
    margin-top: 50px; /* Account for button below input */
  }

  .location-suggestion-item {
    padding: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #useMyLocation {
    font-size: 0.85rem !important;
    padding: 10px 12px !important;
  }

  .location-suggestion-item {
    padding: 12px;
    font-size: 0.95rem;
  }
}

/* ==========================================
   SERVICE IMAGE CAROUSEL
   ========================================== */
.service-carousel {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  transition: transform 0.4s ease-in-out;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.carousel-caption {
  padding: 20px;
  text-align: center;
  background: var(--white);
  width: 100%;
}

.carousel-caption h4 {
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.carousel-caption p {
  color: var(--text-gray);
  margin: 0;
  font-size: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 107, 0, 0.9);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--dark-orange);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: var(--white);
  border-radius: 0 0 10px 10px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-indicator.active {
  background: var(--primary-orange);
  width: 12px;
  height: 12px;
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-container {
    height: 350px;
  }

  .carousel-slide img {
    height: 250px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-caption h4 {
    font-size: 1.1rem;
  }

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

@media (max-width: 480px) {
  .carousel-container {
    height: 300px;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .carousel-caption {
    padding: 15px;
  }

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

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