/* 
   Nova LED TV Repair - Global Stylesheet
   Theme: LG Corporate Inspired Color Palette 
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #a50034; /* LG Corporate Ruby Red */
  --primary-dark: #7e0027;
  --primary-light: #fff0f3;
  --secondary-color: #1c1c1e; /* Dark Slate Gray */
  --text-dark: #2c2c2e;
  --text-muted: #636366;
  --bg-light: #f5f5f7;
  --bg-white: #ffffff;
  --accent-color: #f39c12; /* Gold rating stars and highlights */
  --whatsapp-color: #25d366;
  --border-color: #e5e5ea;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(165, 0, 52, 0.12);
  --font-main: 'Poppins', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-section svg {
  fill: var(--primary-color);
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-call {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(165, 0, 52, 0.2);
}

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(165, 0, 52, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Slider Section */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.hero-slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  width: 33.3333%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 700px;
  color: var(--bg-white);
  z-index: 10;
  padding: 20px;
}

.badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.slide-content h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.slide-content h1 span {
  color: #ff3366; /* Bright Red highlight */
}

.slide-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--primary-color);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--bg-white);
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.arrow-prev {
  left: 20px;
}

.arrow-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-color);
  width: 28px;
  border-radius: 6px;
}

/* Trust Bar / Stats */
.trust-bar {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 30px 20px;
  border-bottom: 4px solid var(--primary-color);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.trust-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.page-banner-content {
  position: relative;
  z-index: 10;
  padding: 20px;
}

.page-banner-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb li::after {
  content: '/';
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li:last-child::after {
  content: '';
}

.breadcrumb li.active {
  color: var(--bg-white);
  font-weight: 600;
}

/* Sections */
section {
  padding: 80px 20px;
}

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

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  background-color: var(--primary-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon svg {
  fill: var(--primary-color);
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.service-card .read-more:hover {
  gap: 10px;
}

/* About Block */
.about-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-badge span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Why Choose Us & Key Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pillar-item {
  text-align: center;
  background: var(--bg-white);
  padding: 30px 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
}

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

.pillar-item .icon svg {
  fill: var(--primary-color);
  width: 24px;
  height: 24px;
}

.pillar-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* FAQs Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background-color: var(--bg-white);
  color: var(--secondary-color);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 25px;
  color: var(--text-dark);
  font-size: 15px;
  background-color: var(--bg-white);
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.contact-form-container {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-light);
  font-size: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(165, 0, 52, 0.1);
}

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

.form-error {
  color: var(--primary-color);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--bg-white);
  width: 100%;
  padding: 14px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(165, 0, 52, 0.2);
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(165, 0, 52, 0.3);
  transform: translateY(-1px);
}

.form-success-msg {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  display: none;
  font-weight: 500;
}

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

.info-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.info-item .icon {
  background-color: var(--primary-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item .icon svg {
  fill: var(--primary-color);
  width: 18px;
  height: 18px;
}

.info-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.info-text p, .info-text a {
  font-size: 14px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon svg {
  fill: var(--text-muted);
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.social-icon:hover svg {
  fill: var(--bg-white);
}

/* Maps Integration */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.testimonial-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.rating-stars {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  gap: 2px;
}

.rating-stars svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

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

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

.user-avatar {
  background-color: var(--primary-light);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.user-details h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary-color);
}

.user-details span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Quick Service CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2e 100%);
  color: var(--bg-white);
  padding: 60px 20px;
  border-radius: var(--border-radius-md);
  margin-top: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-left: 6px solid var(--primary-color);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(165, 0, 52, 0.1);
  border-radius: 50%;
}

.cta-banner h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* SEO Content Section */
.seo-content-block {
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

.seo-content-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.seo-content-block p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.seo-content-block ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}

.seo-content-block ul li {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-content-block ul li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp-color);
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float svg {
  fill: var(--bg-white);
  width: 32px;
  height: 32px;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-color);
  top: 0;
  left: 0;
  z-index: -1;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 70px 20px 20px 20px;
  border-top: 4px solid var(--primary-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-brand h3 span {
  color: var(--primary-color);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 25px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links ul a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  fill: var(--primary-color);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 15px;
}

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

/* Tablet & Mobile Layout Adaptations */
@media (max-width: 992px) {
  .header-container {
    padding: 15px;
  }
  
  .hero-slider-container {
    height: 500px;
  }
  
  .slide-content h1 {
    font-size: 42px;
  }
  
  .about-block {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-image {
    order: -1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* Hide default nav for mobile */
  }
  
  /* Active Mobile Menu */
  nav.mobile-active {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    overflow-y: auto;
  }
  
  nav.mobile-active .nav-links {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  
  nav.mobile-active .nav-links a {
    font-size: 18px;
    display: block;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
  }
  
  nav.mobile-active .nav-cta {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav.mobile-active .btn-call {
    width: 100%;
    justify-content: center;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Menu open icon morphing */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-slider-container {
    height: 420px;
  }
  
  .slide-content {
    left: 5%;
    right: 5%;
  }
  
  .slide-content h1 {
    font-size: 32px;
  }
  
  .slide-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .about-experience-badge {
    left: 10px;
    bottom: -10px;
    padding: 10px 15px;
  }
  
  .about-experience-badge span {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-slider-container {
    height: 380px;
  }
  
  .slide-content h1 {
    font-size: 28px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  
  .contact-form-container {
    padding: 25px 20px;
  }
}
