/* Acqualina Cleaning Services - Elegant Theme Stylesheet */

/* Elegant Color Scheme */
:root {
    /* Dark Theme Colors */
    --gold: #a8763e;
    --dark-blue: #0643cd;
    
    /* Light Theme Colors */
    --deep-teal: #0e5962;
    --soft-gray-blue: #7d8b90;
    --warm-taupe: #8c6b66;
    --light-caramel: #987961;
    --golden-brown: #a27440;
    --warm-beige: #a99789;
    --light-taupe: #afa7a3;
    --cool-off-white: #b5b6c8;
    --creamy-neutral: #bdaa9a;
    --soft-beige: #c5b7af;
    
    /* Primary Colors */
    --primary-color: var(--deep-teal);
    --secondary-color: #f8f9fa;
    --accent-color: var(--gold);
    --text-dark: var(--warm-taupe);
    --text-light: var(--soft-gray-blue);
    --border-light: var(--light-taupe);
    
    /* Very Light Background Colors */
    --bg-very-light: #fefefe;
    --bg-light-elegant: #fbfbfb;
    --bg-warm-light: #f9f8f7;
    --bg-cream: #faf9f8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 300;
    background-color: var(--bg-very-light);
}

/* Font Classes */
.font-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.font-script-elegant {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

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

.display-4, .display-5 {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Utility Classes */
.bg-light-elegant {
    background-color: var(--bg-light-elegant);
}

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

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

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light-elegant) 0%, var(--bg-cream) 100%);
    padding: 120px 0 80px;
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 400;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--deep-teal);
    border-color: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 89, 98, 0.3);
    color: white;
}

/* Card Styles */
.card-custom {
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(168, 118, 62, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light-elegant) 100%);
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(168, 118, 62, 0.15);
    border-color: var(--accent-color);
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--golden-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.3);
}

/* Navigation */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 3px 25px rgba(168, 118, 62, 0.1);
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 400;
    color: var(--text-dark) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(168, 118, 62, 0.15);
    padding: 10px 0;
}

.dropdown-item {
    color: var(--text-dark);
    font-weight: 300;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light-elegant);
    color: var(--accent-color);
}

/* Image Dividers */
.image-divider {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.image-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 118, 62, 0.15);
}

/* Service Areas */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-area-item {
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light-elegant) 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.08);
}

.service-area-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 118, 62, 0.15);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--warm-taupe) 0%, var(--light-caramel) 100%);
    color: var(--cool-off-white);
}

.footer-link {
    color: var(--cool-off-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--golden-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.3);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.faq-header {
    background-color: var(--bg-light-elegant);
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: var(--bg-warm-light);
}

.faq-content {
    padding: 1rem;
    display: none;
    background-color: white;
}

.faq-content.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
}

.nav-link:hover {
  color: var(--primary);
}

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

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero Section */
.hero {
  background-color: var(--light);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--gray);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
  z-index: 1;
}

/* Services Section */
.services {
  background-color: var(--white);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow);
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

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

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

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

.service-link {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

/* About Section */
.about {
  background-color: var(--light);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--gray);
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
}

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

.testimonial-card {
  background-color: var(--light);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

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

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-name {
  font-weight: 600;
}

.author-title {
  font-size: 0.9rem;
  color: var(--gray);
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 30px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.cta .btn:hover {
  background-color: var(--light);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--light-gray);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  color: var(--light-gray);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--light-gray);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
}

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

.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Contact Section */
.contact {
  background-color: var(--light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--white);
  font-size: 20px;
}

.contact-text h4 {
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--gray);
}

/* Book Now Page */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Services Pages */
.service-header {
  background-color: var(--light);
  padding: 150px 0 80px;
  text-align: center;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    max-width: 45%;
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    position: relative;
    top: auto;
    transform: none;
    max-width: 80%;
    margin: 40px auto 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 0 0 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .service-cards,
  .testimonial-cards,
  .service-features {
    grid-template-columns: 1fr;
  }
}
