:root {
  --primary-blue: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #3399ff;
  --accent-blue: #0099ff;
  --electric-blue: #00a8ff;
  --dark-blue: #004080;
  --bg-color: #f8fafc;
  --container-bg: #ffffff;
  --text-color: #2d3748;
  --secondary-text: #718096;
  --border-color: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
  --gradient-dark: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-color: #0f172a;
  --container-bg: #1e293b;
  --text-color: #f1f5f9;
  --secondary-text: #94a3b8;
  --border-color: #334155;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: var(--transition);
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--container-bg);
  border: 2px solid var(--border-color);
  color: var(--text-color);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1000;
  padding: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.theme-toggle:hover {
  transform: rotate(180deg);
  background: var(--primary-blue);
  color: white;
}

/* Header & Navigation */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

[data-theme="dark"] .main-header {
  background: rgba(30, 41, 59, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem; /* Added gap for better spacing */
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0; /* Prevent brand from shrinking */
  min-width: max-content; /* Ensure brand doesn't get too small */
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; /* Prevent logo from shrinking */
}

.company-name {
  font-weight: 700;
  color: var(--text-color);
  font-size: 1.2rem; 
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem; /* Reduced gap to fit better */
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping if needed */
  justify-content: center; /* Center the menu items */
  flex: 1; /* Take available space */
  margin: 0 2rem; /* Added margin for breathing room */
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0.8rem; /* Slightly reduced padding */
  border-radius: 5px;
  position: relative;
  white-space: nowrap; /* Prevent text wrapping */
  font-size: 0.9rem; /* Slightly smaller font */
}

.nav-link:hover {
  color: var(--primary-blue);
  background: rgba(0, 102, 204, 0.1); /* Added background on hover */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Prevent CTA from shrinking */
  min-width: max-content; /* Ensure CTA doesn't get too small */
}

.btn {
  padding: 10px 20px; /* Slightly reduced padding */
  border: none;
  border-radius: 8px;
  font-size: 0.9rem; /* Slightly smaller font */
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap; /* Prevent button text wrapping */
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  font-size: 0.85rem; /* Slightly smaller font */
  padding: 8px 16px; /* Reduced padding */
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem; /* Reduced padding on smaller screens */
    gap: 0.5rem;
  }
  
  .nav-menu {
    gap: 1rem; /* Further reduced gap */
    margin: 0 1rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.6rem; /* Further reduced padding */
    font-size: 0.85rem;
  }
  
  .company-name {
    font-size: 0.85rem; /* Smaller company name */
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-menu {
    display: none; /* Hide menu on mobile */
  }
  
  .nav-cta {
    display: none; /* Hide CTA button on mobile */
  }
  
  .hamburger {
    display: flex; /* Show hamburger menu */
  }
  
  .company-name {
    font-size: 0.8rem; /* Even smaller on mobile */
  }
  
  .nav-brand {
    gap: 0.5rem; /* Reduced gap in brand */
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .company-name {
    font-size: 0.75rem; /* Smallest size for mobile */
  }
  
  .nav-logo {
    width: 40px; /* Smaller logo on mobile */
    height: 40px;
  }
}

/* Mobile Menu when active */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--container-bg);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  gap: 0;
}

.nav-menu.active .nav-link {
  display: block;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  text-align: center;
}

.nav-menu.active .nav-link::after {
  display: none; /* Remove underline effect in mobile menu */
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section with Background Image */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(83, 80, 80, 0.7), rgba(0, 80, 160, 0.8)), url('assets/images/Shop.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-dark);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center; /* Add this */
  align-items: center; /* Add this */
  text-align: center; /* Add this */
}

.hero-text {
  max-width: 600px;
  text-align: center; /* Add this */
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-highlight {
  background: linear-gradient(135deg, #00a8ff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  justify-content: center; /* Add this */
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--electric-blue);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center; /* Add this */
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  margin-top: 0.5rem;
  display: block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Simple Images Section */
.images-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.image-item {
  border-radius: 6%;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.image-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.image-item:hover .grid-image {
  transform: scale(1.05);
}

/* Responsive for Simple Grid */
@media (max-width: 768px) {
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .images-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .image-item {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-color);
}

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

.service-card {
  background: var(--container-bg);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: var(--transition);
}

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

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--secondary-text);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
}

.features-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.features-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.features-text > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  opacity: 0.8;
  line-height: 1.6;
}

.certification-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.certification-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.certs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--container-bg);
}

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

.about-description {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.mission-vision {
  display: grid;
  gap: 2rem;
}

.mv-item h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.mv-item p {
  color: var(--secondary-text);
  line-height: 1.6;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: white;
  padding: 1.5rem;
  border-radius: 50%;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.years {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: white;
  color: var(--primary-blue); /* Blue text on white background */
  border: 2px solid white;
}

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

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--container-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
  border-color: var(--primary-blue);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 1.1rem;
}

.contact-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: block;
  margin-bottom: 0.25rem;
}

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

.contact-details p {
  color: var(--secondary-text);
  font-size: 0.9rem;
}

.inquiry-form {
  background: var(--container-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.inquiry-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

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

/* Footer - Desktop Layout (Keep as is) */
.main-footer {
  background: var(--container-bg);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.footer-tagline {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-blue);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-text);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--secondary-text);
}

/* Designer Link in Footer */
.designer-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.designer-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

[data-theme="dark"] .designer-link {
  color: var(--electric-blue);
}

[data-theme="dark"] .designer-link:hover {
  color: var(--primary-light);
}

/* Mobile Footer Layout */
@media (max-width: 768px) {
  .main-footer {
    text-align: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section ul {
    padding: 0;
  }

  .contact-info p {
    justify-content: center;
  }
}

/* Keep your existing responsive styles for other sections */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--container-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}