:root {
  --primary-color: #5B2E2E;
  --secondary-color: #8B4513;
  --accent-color: #D4AF37;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --text-medium: #4a4a4a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - Minimal Design */
header {
  background: rgba(40, 20, 20, 0.92);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 0;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

body {
  padding-top: 80px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 15px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  flex-shrink: 0;
}

.site-title {
  line-height: 1.3;
  flex: 1;
}

.site-title h1 {
  font-size: 17px;
  margin: 0;
  font-weight: 600;
}

.site-title p {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  margin-top: 4px;
  opacity: 1;
  max-height: 100px;
  visibility: visible;
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-info a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.contact-info .icon {
  font-size: 14px;
}

/* Hide contact info when scrolled */
header.header-minimized .contact-info {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 5px 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* Navigation */
nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

nav.nav-open {
  max-height: 500px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 15px 0;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  transition: all 0.3s;
  font-size: 16px;
  border-left: 3px solid transparent;
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--accent-color);
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(91, 46, 46, 0.85), rgba(139, 69, 19, 0.85)), 
              url('../images/hero-banner.png') center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  max-width: 900px;
}

.hero h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--accent-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn:hover {
  background: #f4c542;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 2px 8px rgba(91, 46, 46, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(91, 46, 46, 0.4);
}

/* Content Section */
.content-section {
  padding: 50px 20px;
  background: var(--bg-white);
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.content-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.content-section p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 15px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 15px 0 30px;
}

.service-card {
  background: var(--bg-white);
  padding: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 0;
}

.service-card h3 {
  color: var(--primary-color);
  margin: 25px 25px 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.service-card p {
  color: var(--text-medium);
  margin: 0 25px 25px;
  font-size: 16px;
  line-height: 1.7;
}

.service-card .btn {
  margin: 0 25px 30px;
}

/* Location Page Service Cards - Special Golden Border Style */
.content-section .services-grid .service-card {
  border: 2px solid var(--accent-color);
  background: linear-gradient(to bottom, #fffef8, var(--bg-white));
}

.content-section .services-grid .service-card h4 {
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 700;
  margin: 20px 25px 15px;
}

.content-section .services-grid .service-card p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 25px 20px;
}

.content-section .services-grid .service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.content-section .services-grid .service-card .btn {
  background: var(--accent-color);
  color: var(--text-dark);
  margin: 0 25px 25px;
  display: inline-block;
  font-weight: 700;
  text-transform: none;
}

/* Cities Section */
.cities-section {
  background: var(--bg-light);
  padding: 50px 20px;
}

.cities-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.city-link {
  display: block;
  padding: 18px 24px;
  background: var(--bg-white);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  font-size: 16px;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.city-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  padding: 45px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 40px auto;
  border: 1px solid #f0f0f0;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(91, 46, 46, 0.1);
}

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

/* Sticky Contact Buttons */
.sticky-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.sticky-btn i {
  line-height: 1;
}

.sticky-btn:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebd59;
}

.call-btn {
  background: #0088cc;
}

.call-btn:hover {
  background: #0077b3;
}

.email-btn {
  background: #EA4335;
}

.email-btn:hover {
  background: #d33426;
}

/* Testimonials */
.testimonials-section {
  padding: 60px 20px;
  background: var(--bg-white);
}

.testimonial-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 16px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

/* Social Media */
.social-media {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 30px 20px;
  background: var(--bg-light);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-link i {
  line-height: 1;
}

.social-link:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.facebook { background: #1877F2; }
.facebook:hover { background: #145dbf; }

.twitter { background: #000000; }
.twitter:hover { background: #1a1a1a; }

.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); }
.instagram:hover { transform: scale(1.15) translateY(-3px); box-shadow: 0 4px 12px rgba(221, 42, 123, 0.4); }

.youtube { background: #FF0000; }
.youtube:hover { background: #cc0000; }

.tiktok { background: #000000; }
.tiktok:hover { background: #1a1a1a; }

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

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

.footer-section h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: block;
  margin: 8px 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
}

/* Page Content */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header .container {
  max-width: 900px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.content-section ul {
  margin: 20px 0;
  padding-left: 30px;
}

.content-section li {
  margin: 12px 0;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
}

/* Service Page */
.service-hero-image {
  width: 100%;
  max-width: 1000px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin: 40px auto;
  display: block;
}

.service-content {
  max-width: 1200px;
  margin: 0 auto;
}

.content-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.content-card h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
}

.content-card h3 {
  color: var(--text-dark);
  font-size: 22px;
  margin: 25px 0 15px;
}

.content-card h4 {
  color: var(--primary-color);
  font-size: 18px;
  margin: 20px 0 10px;
}

.content-card img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 20px auto;
  display: block;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 20px;
}

.service-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-info h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 28px;
}

.service-info ul {
  list-style: none;
  margin: 20px 0;
}

.service-info li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.service-info li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  header {
    padding: 8px 0;
  }

  header.header-minimized {
    padding: 4px 0;
  }

  .logo {
    width: 45px;
    height: 45px;
  }

  header.header-minimized .logo {
    width: 35px;
    height: 35px;
  }

  .site-title h1 {
    font-size: 15px;
    line-height: 1.2;
  }

  .site-title p {
    font-size: 10px;
    line-height: 1.2;
  }

  header.header-minimized .site-title h1 {
    font-size: 13px;
  }

  header.header-minimized .site-title p {
    font-size: 9px;
  }

  .contact-info {
    font-size: 10px;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
  }

  .contact-info .icon {
    font-size: 12px;
  }

  .menu-toggle {
    font-size: 26px;
    padding: 3px 6px;
  }

  .hero {
    padding: 60px 20px;
    min-height: 350px;
  }

  .hero h2 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .page-header {
    padding: 30px 20px;
  }

  .page-header h1 {
    font-size: 24px;
    line-height: 1.3;
    max-width: 100%;
  }

  .content-section {
    padding: 40px 15px;
  }

  .content-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .content-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .content-card h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .content-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .content-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .service-hero-image {
    height: 200px;
    margin: 15px auto;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-media {
    flex-wrap: wrap;
  }

  .sticky-contact {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .sticky-btn {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }

  header {
    padding: 6px 0;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  header.header-minimized .logo {
    width: 32px;
    height: 32px;
  }

  .site-title h1 {
    font-size: 13px;
  }

  .site-title p {
    font-size: 9px;
  }

  header.header-minimized .site-title h1 {
    font-size: 11px;
  }

  header.header-minimized .site-title p {
    font-size: 8px;
  }

  .contact-info {
    font-size: 9px;
    gap: 6px;
  }

  .contact-info .icon {
    font-size: 11px;
  }

  .menu-toggle {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 14px;
  }

  .page-header h1 {
    font-size: 18px;
    line-height: 1.2;
  }

  .content-section h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .content-card h2 {
    font-size: 17px;
    line-height: 1.2;
  }
  
  .hero h2 {
    font-size: 18px;
  }

  .sticky-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* Blog Section */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.category-btn {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.category-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post-header h1 {
    font-size: 28px;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .related-services {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content h2 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  color: var(--accent-color);
}

.blog-post-header {
  background: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
}

.blog-post-header h1 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 20px;
}

.blog-post-content {
  max-width: 900px;
  margin: 40px auto;
}

.blog-post-content .content-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin: 30px 0 15px;
}

.blog-post-content ol,
.blog-post-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.blog-post-content ol li,
.blog-post-content ul li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.related-posts {
  background: var(--bg-light);
  padding: 60px 20px;
  margin-top: 60px;
}

.related-posts h3 {
  text-align: center;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 40px;
}

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

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

.service-link-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-link-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-link-card h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Success Message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 5px;
  margin: 20px 0;
  border: 1px solid #c3e6cb;
  display: none;
}

.success-message.show {
  display: block;
}
