:root {
  --primary: #0b4a7a;
  --accent: #0f6fb0;
  --muted: #6b7280;
  --bg: #ffffff;
  --max-width: 1200px;
  --radius: 8px;
  --gradient-1: linear-gradient(135deg, #0b4a7a 0%, #0f6fb0 100%);
  --gradient-2: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0f1724;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/* Header - Smart Hide/Show - 140px on desktop */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: all 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  height: 140px;
}

.site-header.scrolled {
  background: rgba(11, 74, 122, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
  min-height: 140px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  position: absolute;
  left: -50px;
  top: -40px;
  transform: none;
  z-index: 10;
}

.logo {
  width: 204px;
  height: 204px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  padding: 0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  flex-wrap: nowrap;
  margin-left: 170px;
  margin-right: 170px;
  max-width: calc(100% - 340px);
}

.nav-item {
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: var(--radius);
  flex-shrink: 0;
  min-width: max-content;
}

.nav-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.schedule-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.schedule-btn:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Button - MOVED BACK TO RIGHT */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Mobile Call Button */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 74, 122, 0.3);
  border-radius: 50%;
}

.mobile-call-btn:hover {
  transform: scale(1.1);
}

.mobile-call-btn img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

/* Hero Section */
.hero {
  padding: 220px 20px 120px;
  background: linear-gradient(rgba(11, 74, 122, 0.7), rgba(15, 111, 176, 0.6)), 
              url('assets/background/image 1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta.primary {
  padding: 16px 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta.primary:hover {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Sections */
section {
  padding: 80px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  color: var(--muted);
}

/* About Section */
.about {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
              url('assets/background/image 2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 250px;
  border-radius: var(--radius);
  box-shadow: none;
  background: transparent;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Specials Section */
.specials {
  background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(238, 242, 246, 0.9)), 
              url('assets/background/image 3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 80px 20px;
}

.specials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.special-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.special-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.special-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
}

.special-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.special-features li {
  padding: 8px 0;
  color: var(--muted);
  position: relative;
  padding-left: 20px;
}

.special-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.special-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.3s ease;
  width: 100%;
}

.special-cta:hover {
  transform: translateY(-2px);
}

/* Services Section */
.services {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
              url('assets/background/image 4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

/* Brands Section */
.brands {
  background: var(--bg);
  padding: 80px 20px;
  overflow: hidden;
}

.brands-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.brands-scroll-container {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.brands-track {
  display: flex;
  gap: 50px;
  animation: scrollBrands 40s linear infinite;
  padding: 20px 0;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-height: 120px;
  min-width: 180px;
  flex-shrink: 0;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
  opacity: 1;
  filter: grayscale(30%);
}

.brand-card:hover .brand-logo {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 33 - 50px * 33));
  }
}

/* Areas Section */
.areas {
  background: linear-gradient(rgba(248, 250, 252, 0.85), rgba(238, 242, 246, 0.9)), 
              url('assets/background/image 5.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.areas-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.areas-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.areas-list h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 30px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.area-column ul {
  list-style: none;
  text-align: center;
}

.area-column li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--muted);
  border-bottom: 1px solid #eef2f6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.area-column li:hover {
  color: var(--accent);
}

/* Gallery Section */
.gallery {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), 
              url('assets/background/image 6.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  height: 200px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 20px;
}

.gallery-caption h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.gallery-caption p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg);
  padding: 80px 20px;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 15px;
}

.star {
  color: #FFD700;
  font-size: 20px;
}

.testimonial-card p {
  font-style: normal;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 15px;
}

.reviewer {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.more-reviews {
  text-align: center;
  margin-top: 40px;
}

.more-reviews-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.more-reviews-btn:hover {
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  background: var(--gradient-2);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}

.contact-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}

.contact-details a {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--muted);
  margin: 4px 0;
  font-size: 16px;
}

.contact-details a[href^="mailto:"] {
  font-size: 16px;
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 40px 20px 20px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand .company {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 16px;
}

.footer-contact a {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-contact p {
  opacity: 0.8;
  font-size: 16px;
}

.footer-contact .email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-top: 5px;
  display: block;
}

/* Footer Info Section */
.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

/* Hours Section */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item.emergency .time {
  color: #ff6b6b;
  font-weight: 600;
}

.day {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Areas Footer Grid */
.areas-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-footer-column ul {
  list-style: none;
}

.area-footer-column li {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .main-nav {
    gap: 12px;
    margin-right: 160px;
  }
  
  .nav-item {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    margin-left: 160px;
    margin-right: 150px;
  }
  
  .nav-item {
    font-size: 12px;
    padding: 5px 8px;
  }
}

@media (max-width: 900px) {
  .brand {
    position: static;
    transform: none;
    left: 0;
    order: 1;
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }
  
  .logo {
    width: 170px;
    height: 170px;
    max-width: none;
  }
  
  .main-nav {
    display: none;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    order: 3;
  }
  
  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 15px;
    backdrop-filter: blur(10px);
    height: 135px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
    justify-content: space-between;
    min-height: 135px;
    align-items: center;
  }

  .brand {
    position: absolute;
    left: -40px;
    top: -35px;
    transform: none;
    order: 1;
  }

  .logo {
    width: 265px; /* 1.3x bigger (204px * 1.3 = 265px) - PHONE VERSION */
    height: 265px; /* 1.3x bigger (204px * 1.3 = 265px) - PHONE VERSION */
    object-fit: contain;
  }

  .mobile-menu-btn {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 74, 122, 0.98);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 15px;
    backdrop-filter: blur(20px);
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    z-index: 1001;
  }

  .main-nav.active {
    display: flex;
  }

  .header-cta {
    position: static;
    transform: none;
    display: none;
  }

  .mobile-call-btn {
    display: block;
  }

  .hero {
    padding: 240px 20px 80px; /* Increased padding for bigger logo */
    margin-top: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-img {
    max-width: 180px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .specials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .areas-footer-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Brands */
  .brands-track {
    gap: 30px;
    animation: scrollBrandsMobile 30s linear infinite;
  }
  
  .brand-card {
    padding: 20px;
    min-height: 100px;
    min-width: 140px;
  }
  
  .brand-logo {
    width: 100px;
    height: 60px;
  }
  
  @keyframes scrollBrandsMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-140px * 33 - 30px * 33));
    }
  }

  /* Mobile Areas */
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .area-column li {
    font-size: 14px;
    padding: 8px 0;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  /* Mobile Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-inner {
    flex-direction: row;
    text-align: center;
    padding: 15px 0;
    min-height: 135px;
  }

  .brand {
    position: absolute;
    left: -45px;
    top: -40px;
    transform: none;
    order: 1;
  }

  .logo {
    width: 247px; /* 1.3x bigger (190px * 1.3 = 247px) - PHONE VERSION */
    height: 247px; /* 1.3x bigger (190px * 1.3 = 247px) - PHONE VERSION */
    min-width: 247px;
  }

  .mobile-menu-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero {
    padding: 220px 20px 60px; /* Increased padding for bigger logo */
  }

  section {
    padding: 60px 20px;
  }

  /* Mobile Areas - 2 columns on mobile */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .area-column ul {
    text-align: center;
  }
  
  .area-column li {
    font-size: 12px;
    padding: 6px 0;
  }

  .brands-track {
    gap: 20px;
  }
  
  .brand-card {
    padding: 15px;
    min-height: 80px;
    min-width: 110px;
  }
  
  .brand-logo {
    width: 80px;
    height: 50px;
  }
  
  @keyframes scrollBrandsMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-110px * 33 - 20px * 33));
    }
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .brand {
    left: -40px;
    top: -35px;
  }

  .logo {
    width: 234px; /* 1.3x bigger (180px * 1.3 = 234px) - PHONE VERSION */
    height: 234px; /* 1.3x bigger (180px * 1.3 = 234px) - PHONE VERSION */
  }

  .mobile-menu-btn {
    right: 0;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .area-column li {
    font-size: 11px;
    padding: 4px 0;
  }
}