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

/* CSS Variables for Premium Theme */
:root {
  --primary-dark: #121315;
  --secondary-dark: #1e2023;
  --accent-gold: #c5a880;
  --accent-gold-hover: #b09168;
  --text-light: #f8f9fa;
  --text-muted: #a0a5ad;
  --bg-light: #fdfdfd;
  --bg-light-alt: #f5f6f8;
  --text-dark: #1e2023;
  --text-dark-muted: #62666d;
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.2);
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 8px;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(18, 19, 21, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled .nav-link {
  color: var(--text-light);
}

header.scrolled .logo-text {
  color: var(--text-light);
}

header.scrolled .logo-subtext {
  color: var(--accent-gold);
}

/* Navigation Inner */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo SVG Styling */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--accent-gold);
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: var(--border-radius-md);
  object-fit: contain;
}

.logo-info {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  line-height: 1.1;
  transition: var(--transition-smooth);
}

.logo-subtext {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.nav-link:hover {
  color: var(--accent-gold) !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

header.scrolled .mobile-nav-toggle span {
  background-color: var(--text-light);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding-top: 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(18, 19, 21, 0.8), rgba(18, 19, 21, 0.95)), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

/* Hero Details */
.hero-content h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--accent-gold);
  background: linear-gradient(to right, var(--accent-gold), #e8cbb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
}

.stat-item h3 {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

/* Glassmorphic Enquiry Card */
.enquiry-card {
  background: rgba(30, 32, 35, 0.65);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.enquiry-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
}

.enquiry-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--text-light);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--primary-dark);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline-dark:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

/* Section Common Styling */
.section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

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

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

/* Feature Showcase / Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-body {
  padding: 32px;
}

.service-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-body p {
  color: var(--text-dark-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 14px;
}

.service-link svg {
  transition: var(--transition-smooth);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* About Block Section */
.about-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-block-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  position: relative;
}

.about-img-main {
  grid-column: 1 / 10;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-premium);
}

.about-img-sub {
  grid-column: 7 / 13;
  grid-row: 1;
  margin-top: 150px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 280px;
  border: 8px solid var(--bg-light);
  box-shadow: var(--shadow-premium);
  z-index: 2;
}

.about-img-main img,
.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-block-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feat-item {
  display: flex;
  gap: 16px;
}

.feat-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon-box svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.feat-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feat-text p {
  font-size: 13px;
  color: var(--text-dark-muted);
  margin-bottom: 0;
}

/* Portfolio Page Filter / Grid */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-dark);
  color: var(--text-light);
  border-color: var(--primary-dark);
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-light);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(18, 19, 21, 0) 40%, rgba(18, 19, 21, 0.95));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition-smooth);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.portfolio-title {
  color: var(--text-light);
  font-size: 22px;
  font-weight: 700;
}

/* Services Tabs Detail */
.services-detail-tabs {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 48px;
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding-right: 24px;
}

.tab-btn {
  background-color: var(--bg-light-alt);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 14px 24px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tab-pane-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-premium);
}

.tab-pane-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-pane-info h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.tab-pane-info p {
  color: var(--text-dark-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.bullet-list {
  list-style: none;
  margin-bottom: 32px;
}

.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

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

.contact-info-card {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
}

.contact-info-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-detail-item {
  display: flex;
  gap: 20px;
}

.c-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon-box svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-gold);
}

.c-text h4 {
  font-size: 14px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.c-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 0;
}

.c-socials {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}

.social-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.social-link-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-light);
  transition: var(--transition-smooth);
}

.social-link-icon:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.social-link-icon:hover svg {
  fill: var(--primary-dark);
}

/* Contact Form Container */
.contact-form-container {
  background-color: var(--bg-light);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-light);
}

.contact-form-container h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-form-container p {
  color: var(--text-dark-muted);
  margin-bottom: 36px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 19, 21, 0.98);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 36px;
  cursor: pointer;
}

.lightbox-title {
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  margin-top: 16px;
  text-align: center;
  font-size: 20px;
}

/* Footer Section */
footer {
  background-color: #0c0d0f;
  color: var(--text-light);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo-block p {
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 15px;
}

.footer-links-block h4,
.footer-contact-block h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

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

.f-contact-item {
  display: flex;
  gap: 16px;
}

.f-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.f-contact-item p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-block-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-detail-tabs {
    grid-template-columns: 1fr;
  }
  .tab-buttons {
    flex-direction: row;
    border-right: none;
    padding-right: 0;
    padding-bottom: 16px;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tab-buttons::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    white-space: nowrap;
  }
  .tab-pane {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation Mobile */
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-light);
    font-size: 18px;
  }
  
  /* Mobile menu open state animation for toggle button */
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--text-light);
  }
  
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--text-light);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .enquiry-card {
    padding: 24px;
  }
  .about-img-main {
    height: 280px;
  }
  .about-img-sub {
    height: 180px;
    margin-top: 100px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 30px;
  }
}
