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

:root {
  --color-bg: #FFFFFF; /* White */
  --color-primary: #009dba; /* Blue */
  --color-secondary: #9abf00; /* Olive Green */
  --color-accent: #8B5A2B; /* Brown */
  --color-dark-green: darkgreen;
  
  --color-blue-light: #e6f5f9;
  --color-green-light: #eef5ee;
  --color-brown-light: #fdf8f5;

  --color-text: #1E293B; /* Dark Blue-grey */
  --color-text-light: #475569;
  --glass-bg: rgba(240, 248, 255, 0.6); /* Light Blue tint for glass */
  --glass-border: rgba(135, 206, 235, 0.3); /* Light Blue border */
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Glassmorphism Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(22, 66, 60, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 156, 137, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-fast);
  background-color: #8a00c4;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: white;
}

.header.scrolled {
  background: rgba(138, 0, 196, 0.9); /* Purple with slight transparency */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: white;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: var(--transition-fast);
}

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

.mobile-only-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 4px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.search-form:focus-within {
  background: rgba(255, 255, 255, 0.3);
}

.search-form input {
  background: transparent;
  border: none;
  color: white;
  outline: none;
  padding: 5px;
  width: 150px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: width 0.3s ease;
}

.search-form input:focus {
  width: 200px;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-form button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
  transition: opacity 0.3s ease;
}

.search-form button:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-secondary) 0%, rgba(253,252,240,0) 70%);
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent) 0%, rgba(253,252,240,0) 70%);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text h1 span {
  color: var(--color-secondary);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: var(--transition-slow);
}

.hero-image:hover img {
  transform: translateY(-10px);
}

/* Services / Features */
.services {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  transition: var(--transition-fast);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(106, 156, 137, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-secondary);
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-light);
}

/* Portfolio / Documents */
.portfolio {
  padding: 6rem 0;
  background-color: white;
  border-radius: 40px;
  margin: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--color-bg);
  transition: var(--transition-fast);
}

.doc-card:hover {
  transform: scale(1.02);
}

.doc-preview {
  height: 250px;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.doc-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.doc-info h4 {
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background-color: var(--color-primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-col h3 {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-col p, .footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Slider Styles */
.hero-slider-section { position: relative; width: 100%; height: 85vh; min-height: 500px; overflow: hidden; }
.hero-slider-container { display: flex; width: 100%; height: 100%; transition: transform 0.5s ease-in-out; }
.hero-slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-control { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 15px; cursor: pointer; z-index: 10; border-radius: 50%; }
.hero-control.prev { left: 20px; }
.hero-control.next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
  }
}

/* --- NEW HOMEPAGE REDESIGN STYLES --- */

/* Hero New */
.hero-new {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}
.hero-content-new {
    position: relative;
    z-index: 10;
}
.hero-subtitle {
    font-family: 'Brush Script MT', 'Comic Sans MS', cursive; /* fallback for cursive */
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: -10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-title {
    font-family: 'Times New Roman', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Common Section Title */
.section-title-large {
    position: relative;
    margin-bottom: 2rem;
}
.section-title-large.center {
    text-align: center;
}
.section-title-large .bg-text {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.05);
    text-transform: uppercase;
    z-index: 0;
    letter-spacing: 5px;
    text-align: inherit;
}
.section-title-large h2 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: inherit;
    font-family: var(--font-body);
}
.section-title-large.center h2 {
    justify-content: center;
}
.section-title-large h2 strong {
    font-weight: 800;
}
.section-title-large h2 em {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #8fa08f;
    font-weight: 400;
}
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 20px;
}
.title-divider.left {
    justify-content: flex-start;
}
.title-divider span {
    width: 30px;
    height: 2px;
    background: #8fa08f;
}
.title-divider .dot {
    width: 6px;
    height: 6px;
    background: #8fa08f;
    border-radius: 50%;
}
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* About Us Section */
.about-section {
    padding: 6rem 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.about-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #fcfcfc;
}
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}
.service-card-new {
    background: white;
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    box-shadow: none;
}
.service-card-new img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-card-content {
    padding: 2rem 1.5rem;
}
.service-card-new h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #000;
}
.service-card-new p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.btn-olive {
    background-color: #b5c183;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
    font-weight: 600;
    border: none;
}
.btn-outline {
    background-color: transparent;
    color: #009dba;
    padding: 10px 25px;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
    font-weight: 600;
    border: 2px solid #009dba;
    cursor: pointer;
}
.btn-outline:hover {
    background-color: #009dba;
    color: white;
}
.btn-olive:hover {
    background-color: #9abf00;
    color: white;
}
.btn-block {
    display: block;
    width: max-content;
    margin: 0 auto;
}

/* Workshop Carousel */
.workshop-section {
    padding: 6rem 0;
    background: #f4f5f0;
}
.workshop-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 20px;
}
.workshop-carousel-container {
    overflow: hidden;
    flex: 1;
}
.workshop-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}
.workshop-slide {
    flex: 0 0 calc(33.333% - 14px);
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.workshop-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}
.carousel-prev, .carousel-next {
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}
.carousel-prev:hover, .carousel-next:hover {
    color: #b5c183;
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
    .section-title-large .bg-text { font-size: 3.5rem; top: -10px; }
    .workshop-slide { flex: 0 0 calc(50% - 10px); }
    .nav-links { display: none; }
    .header-actions { flex-wrap: wrap; justify-content: center; margin-top: 10px; }
    .navbar { flex-wrap: wrap; justify-content: space-between; }
    .mobile-menu-btn { display: block; }
}
@media (max-width: 576px) {
    .workshop-slide { flex: 0 0 100%; }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.nav-links.show-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 10px;
    background: rgba(0, 100, 0, 0.95);
    padding: 15px;
    border-radius: 8px;
}
/* Top Bar Styles */
.top-bar-dark {
    background-color: #009dba;
    padding: 10px 0;
    color: white;
}

.top-bar-dark-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.top-bar-left {
    /* Empty spacer */
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
}

.top-bar-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-pill {
    display: flex;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid rgba(255,255,255,0.2);
}

.offer-badge {
    background-color: #ff7b25;
    color: white;
    padding: 6px 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.offer-code {
    padding: 6px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffeb3b;
}

.offer-text {
    color: #ffeb3b;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-claim {
    background-color: white;
    color: #111;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.btn-claim:hover {
    background-color: #f0f0f0;
}

.btn-claim i {
    font-size: 0.8rem;
}

.top-bar-light {
    background-color: #05b3ca;
    padding: 12px 0;
    color: white;
    font-size: 0.9rem;
}

.top-bar-light-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.top-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

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

.top-social-links a {
    color: white;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.top-social-links a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .top-bar-dark-inner {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .top-bar-left {
        display: none;
    }
    .top-bar-right {
        justify-content: center;
    }
    .top-bar-light-inner {
        justify-content: center;
    }
    .top-contact-info {
        justify-content: center;
    }
}


/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: #333;
    transition: color 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    color: var(--color-primary);
}

.popup-content {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.popup-image {
    flex: 1 1 350px;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-form {
    flex: 1 1 350px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-form h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-family: var(--font-body);
    font-weight: 700;
}

.popup-form p {
    color: #92a47e; 
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.popup-form .form-group {
    margin-bottom: 1.5rem;
}

.popup-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-form .form-row .form-group {
    margin-bottom: 0;
    flex: 1;
}

.popup-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #333;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    color: #333;
}

.popup-form input:focus {
    outline: none;
    border-color: #92a47e;
}

.popup-form input::placeholder {
    color: #666;
}

.popup-submit {
    width: 100%;
    background-color: #aebd7d;
    color: white;
    border-radius: 2px;
    padding: 1rem;
    font-size: 1.1rem;
    box-shadow: none;
    border: 1px solid #9ea580;
}

.popup-submit:hover {
    background-color: #9cb066;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .popup-form .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .popup-form .form-row .form-group {
        margin-bottom: 0;
    }
    .popup-form {
        padding: 2rem 1.5rem;
    }
    .popup-image {
        flex: 1 1 200px;
    }
}

/* --- THEME CLASSES FOR UNIFIED SECTION MATCHING --- */

/* Theme Green */
.theme-green {
    background-color: var(--color-green-light);
}
.theme-green .section-title-large h2 em { color: var(--color-dark-green); }
.theme-green .title-divider span, .theme-green .title-divider .dot { background: var(--color-dark-green); }
.theme-green .btn-olive {
    background-color: #ab00c8;
    color: white;
}
.theme-green .btn-olive:hover { background-color: var(--color-secondary); }
.theme-green .bg-text { -webkit-text-stroke: 1px rgba(0, 100, 0, 0.05); }

/* Theme Blue */
.theme-blue {
    background-color: var(--color-blue-light);
}
.theme-blue .section-title-large h2 em { color: var(--color-primary); }
.theme-blue .title-divider span, .theme-blue .title-divider .dot { background: var(--color-primary); }
.theme-blue .btn-olive { background-color: var(--color-primary); color: white; }
.theme-blue .btn-olive:hover { background-color: #007a90; }
.theme-blue .bg-text { -webkit-text-stroke: 1px rgba(0, 157, 186, 0.05); }

/* Theme Brown */
.theme-brown {
    background-color: var(--color-brown-light);
}
.theme-brown .section-title-large h2 em { color: var(--color-accent); }
.theme-brown .title-divider span, .theme-brown .title-divider .dot { background: var(--color-accent); }
.theme-brown .btn-olive { background-color: var(--color-accent); color: white; }
.theme-brown .btn-olive:hover { background-color: #6b4421; }
.theme-brown .bg-text { -webkit-text-stroke: 1px rgba(139, 90, 43, 0.05); }

/* --- COMPREHENSIVE MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    /* Kill Horizontal Scroll Completely */
    html, body { 
        width: 100%; 
        max-width: 100vw; 
        overflow-x: hidden !important; 
        position: relative;
    }
    
    /* Global Typography & Spacing */
    body { font-size: 0.95rem; }
    h1, h2, h3, h4, h5, h6 { line-height: 1.3; }
    .section-header h2 { font-size: 2rem; }
    .section-header { margin-bottom: 2rem; }
    
    /* Top Bar Fixes */
    .top-bar-light-inner, .top-bar-dark-inner {
        padding: 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    .top-contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px 15px;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .top-contact-info span:nth-child(1),
    .top-contact-info span:nth-child(2) {
        width: auto;
        font-size: 0.8rem;
    }
    .top-contact-info span:nth-child(3) {
        width: 100%;
        font-size: 0.8rem;
        margin-top: 5px;
    }
    .top-contact-info span {
        white-space: normal;
        word-wrap: break-word;
        word-break: break-all;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .top-social-links { margin-top: 10px; justify-content: center; width: 100%; }

    /* Header & Navigation (Single line fit) */
    .header { padding: 0.5rem 0; width: 100%; max-width: 100vw; }
    .navbar { flex-wrap: nowrap; justify-content: space-between; align-items: center; width: 100%; position: relative; }
    .logo { font-size: 1.2rem; white-space: nowrap; }
    .logo img { height: 28px; }
    .desktop-actions { display: none !important; }
    .mobile-menu-btn { display: block; margin-left: auto; font-size: 1.5rem; }
    .mobile-only-actions { display: block; margin-top: 15px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 15px; }

    .nav-links.show-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        margin-left: -1rem; /* Offset the container padding */
        margin-top: 0.5rem; /* Small gap below header */
        gap: 10px;
        background: rgba(138, 0, 196, 0.95); /* Match header purple instead of dark green */
        padding: 15px;
        z-index: 1000;
        box-sizing: border-box;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    /* Hero Section (New & Old) & Slider */
    .hero-new, .hero { height: auto; min-height: 400px; padding: 4rem 1rem; }
    .hero-slider-section { height: 40vh; min-height: 250px; }
    .hero-slide { background-size: contain; background-repeat: no-repeat; background-position: center; }
    .hero-title { font-size: 2.5rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 2rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { font-size: 1rem; margin-bottom: 1.5rem; max-width: 100%; }
    
    /* Section Titles */
    .section-title-large .bg-text { font-size: 2.5rem; top: -10px; letter-spacing: 2px; }
    .section-title-large h2 { font-size: 1.6rem; }
    
    /* Sections Padding */
    .services, .about-section, .services-section, .workshop-section, .portfolio { 
        padding: 3rem 0; 
        margin: 1rem 0;
    }
    .container { padding: 0 1rem; }
    
    /* About & Services & Workshop Cards */
    .about-image { max-height: 300px; margin-bottom: 1.5rem; }
    .services-grid, .services-grid-new, .portfolio-grid { gap: 1.5rem; }
    .service-card { padding: 1.5rem; }
    .service-card-new img { height: 180px; }
    .service-card-content { padding: 1.5rem 1rem; }
    
    /* Footer */
    .footer { padding: 2.5rem 0 1.5rem; margin-top: 2rem; }
    .footer-content { gap: 1.5rem; grid-template-columns: 1fr; text-align: center; }
    .footer-col h3 { font-size: 1.3rem; margin-bottom: 1rem; }
    .footer-col div { justify-content: center; }
    
    /* Popup Overrides */
    .popup-container { width: 92%; padding: 0; }
    .popup-form { padding: 1.5rem 1rem; }
    .popup-form h2 { font-size: 1.3rem; margin-bottom: 1rem; }
    .popup-form p { font-size: 1rem; margin-bottom: 1rem; }
    .popup-form .form-row { flex-direction: column; gap: 1rem; }
    .popup-submit { padding: 0.8rem; font-size: 1rem; }
    .popup-image { flex: none; height: 150px; }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .section-title-large .bg-text { display: none; }
    .section-title-large h2 { font-size: 1.4rem; flex-wrap: wrap; text-align: center; justify-content: center; }
    .title-divider { justify-content: center; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
    .hero-buttons .btn { width: 100%; text-align: center; }
}
/ *   H e r o   S l i d e r   S t y l e s   * /   . h e r o - s l i d e r - s e c t i o n   {   p o s i t i o n :   r e l a t i v e ;   w i d t h :   1 0 0 % ;   h e i g h t :   6 0 v h ;   o v e r f l o w :   h i d d e n ;   }   . h e r o - s l i d e r - c o n t a i n e r   {   d i s p l a y :   f l e x ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e - i n - o u t ;   }   . h e r o - s l i d e   {   m i n - w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d - s i z e :   c o v e r ;   b a c k g r o u n d - p o s i t i o n :   c e n t e r ;   }   . h e r o - c o n t r o l   {   p o s i t i o n :   a b s o l u t e ;   t o p :   5 0 % ;   t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;   c o l o r :   w h i t e ;   b o r d e r :   n o n e ;   p a d d i n g :   1 5 p x ;   c u r s o r :   p o i n t e r ;   z - i n d e x :   1 0 ;   b o r d e r - r a d i u s :   5 0 % ;   }   . h e r o - c o n t r o l . p r e v   {   l e f t :   2 0 p x ;   }   . h e r o - c o n t r o l . n e x t   {   r i g h t :   2 0 p x ;   }  
 