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

/* --- Root Variables --- */
:root {
  --primary: #E50914;
  --primary-hover: #FF1E27;
  --primary-glow: rgba(229, 9, 20, 0.45);
  --bg: #08080C;
  --bg-offset: #111119;
  --card-bg: rgba(20, 20, 30, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(229, 9, 20, 0.3);
  --text-main: #FFFFFF;
  --text-muted: #A0A0AB;
  --accent-cyan: #00F0FF;
  --accent-green: #25D366;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --glow-shadow: 0 0 20px var(--primary-glow);
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2C2C3E;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 80px 0;
}

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

.section-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #FFF;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: #FFF;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(8, 8, 12, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  transition: var(--transition);
}

.logo img {
  height: 90px;
  width: auto;
  transition: var(--transition);
}

@media (min-width: 1025px) {
  .nav-container {
    height: 200px;
  }
  .logo img {
    height: 170px;
  }
  .header.scrolled .nav-container {
    height: 120px;
  }
  .header.scrolled .logo img {
    height: 100px;
  }
}


.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #FFF;
}

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

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

.nav-phone:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 18px var(--primary-glow);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #FFF;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  background: linear-gradient(135deg, rgba(8, 8, 12, 0.95) 0%, rgba(20, 10, 10, 0.8) 100%);
}

@media (min-width: 1025px) {
  .hero {
    padding-top: 220px;
  }
}


.hero .container {
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    var(--bg) 0%, 
    rgba(8, 8, 12, 0.95) 25%, 
    rgba(8, 8, 12, 0.7) 45%, 
    rgba(8, 8, 12, 0.3) 70%, 
    transparent 100%
  );
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-top: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
}

/* --- Info Features Section --- */
.features-bar {
  background-color: var(--bg-offset);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-wrapper {
  background-color: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(229, 9, 20, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 24px;
  display: inline-flex;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-main);
  margin-top: auto;
}

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

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

/* --- Projects Portfolio --- */
.portfolio-section {
  background-color: var(--bg-offset);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  group-hover: scale(1.05);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 12, 0.95) 0%, rgba(8, 8, 12, 0.3) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

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

.portfolio-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

/* --- Stats Counters --- */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-offset) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFF;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #FFF 0%, #AAA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Partner Logos --- */
.partners-section {
  padding: 40px 0;
  background-color: var(--bg-offset);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.partners-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  transition: var(--transition);
}

.partner-logo:hover {
  color: #FFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* --- About Pages / Inner Pages --- */
.page-header {
  padding: 160px 0 60px 0;
  background: linear-gradient(to bottom, rgba(229, 9, 20, 0.08) 0%, transparent 100%);
  text-align: center;
}

@media (min-width: 1025px) {
  .page-header {
    padding: 240px 0 80px 0;
  }
}


.page-header h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

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

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

.about-row {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-col-img {
  flex: 1;
  position: relative;
}

.about-col-img::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
}

.about-col-img img {
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-col-text {
  flex: 1.2;
}

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

.about-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-icon {
  color: var(--primary);
  font-size: 18px;
}

.about-badge-label {
  font-weight: 600;
  font-size: 14px;
}

/* --- Products page CSS --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
}

.product-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.product-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.product-specs span strong {
  color: #FFF;
}

/* --- Blog List CSS --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
}

.blog-img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.blog-readmore {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-readmore:hover {
  color: var(--primary);
}

/* --- Contact & Forms --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

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

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

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  color: var(--primary);
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(229, 9, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.contact-detail-text a:hover {
  color: var(--primary);
}

.contact-map-box {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.contact-form-col {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-col h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

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

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

.form-control {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--card-border);
  padding: 14px 16px;
  border-radius: 8px;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.15);
}

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

/* --- Footer --- */
.footer {
  background-color: #040406;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-about .footer-logo {
  height: 110px;
  margin-bottom: 20px;
}

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

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: #FFF;
  transform: translateY(-2px);
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #FFF;
  transform: translateX(4px);
}

.footer-links a::before {
  content: '›';
  font-size: 16px;
  color: var(--primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
}

.footer-contact-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-col-cta {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
}

.footer-col-cta h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-col-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #FFF;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-green);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  font-size: 30px;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20BA5A;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Mobile Menu Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg);
  z-index: 1002;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #FFF;
  font-size: 24px;
}

.mobile-drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer-link {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  color: var(--primary);
}

.mobile-drawer-phone {
  margin-top: auto;
  background-color: var(--primary);
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* --- Responsiveness (Media Queries) --- */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 44px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-bg {
    width: 100%;
    opacity: 0.65;
  }
  .hero-bg::after {
    background: rgba(8, 8, 12, 0.7);
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 160px;
  }
  .logo img {
    height: 140px;
  }
  .header.scrolled .nav-container {
    height: 110px;
  }
  .header.scrolled .logo img {
    height: 90px;
  }
  .nav-menu, .nav-phone {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .section-title {
    font-size: 28px;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .about-row {
    flex-direction: column;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .products-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* --- Interactive Turkey SVG Map --- */
.turkey-map-container {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  position: relative;
  background: #11131e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}
.svg-turkiye-haritasi g path {
  fill: #1a1d2e;
  stroke: #0c0e14;
  stroke-width: 1.2;
  transition: all 0.2s ease;
  cursor: pointer;
}
.svg-turkiye-haritasi g:hover path {
  fill: var(--primary);
  stroke: #FFF;
}
.svg-turkiye-haritasi g[id]:hover path {
  fill: var(--primary);
  stroke: #FFF;
}
