/*
 * Diyarbakır Epoksi Yalıtım - Premium CSS Stylesheet
 * Colors: Navy Blue (#0d233a), Accent Orange (#e87a24), Accent Orange Hover (#cf6515), Dark Charcoal (#222222), Light Gray (#f8f9fa)
 */

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

:root {
  --primary-color: #0d233a;
  --primary-light: #163354;
  --primary-dark: #071424;
  --accent-color: #e87a24;
  --accent-hover: #cf6515;
  --text-dark: #222222;
  --text-muted: #555555;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-premium: 0 20px 40px rgba(13, 35, 58, 0.08);
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --container-width: 1200px;
}

/* CSS Reset & General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
  cursor: pointer;
  font-size: 0.95rem;
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 122, 36, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

/* Typography & Section Headers */
.section-subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
  font-family: var(--font-title);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

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

/* Top Bar Styling */
.top-bar {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar-info {
  display: flex;
  gap: 25px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  color: var(--accent-color);
}

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

.top-bar-social a {
  opacity: 0.85;
}

.top-bar-social a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* Header & Navigation */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
}

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

.logo-main {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent-color);
}

/* Dropdown styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent-color);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  width: 250px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.dropdown-item a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color);
  padding-left: 25px;
}

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

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--primary-color);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(13, 35, 58, 0.85), rgba(13, 35, 58, 0.75)), url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-content {
  max-width: 750px;
}

.hero-tagline {
  color: var(--accent-color);
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 0.95rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

/* Service Card Section */
.services-section {
  background-color: var(--bg-light);
}

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

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

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

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(232, 122, 36, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.75rem;
  color: var(--accent-color);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: rotateY(360deg);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.service-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Why Us Section */
.why-us-section {
  background-image: linear-gradient(rgba(13, 35, 58, 0.95), rgba(13, 35, 58, 0.95)), url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.why-us-section .section-title {
  color: var(--text-light);
}

.why-us-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.why-card {
  padding: 30px;
  border-left: 2px solid rgba(232, 122, 36, 0.3);
  transition: var(--transition-normal);
}

.why-card:hover {
  border-left-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.03);
}

.why-icon {
  font-size: 2.25rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.why-card-title {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Projects / Referanslar Section */
.projects-section {
  background-color: var(--bg-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.project-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 35, 58, 0.95), rgba(13, 35, 58, 0.3));
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--text-light);
}

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

.project-item:hover .project-img {
  transform: scale(1.1);
}

.project-category {
  color: var(--accent-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-title {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 700;
}

/* Stats Section (Rakamlarla Biz) */
.stats-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-number {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Call to Action (CTA) Section */
.cta-section {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
}

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

.cta-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(232, 122, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.cta-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: var(--text-muted);
}

.cta-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Footer Section */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.25fr 1.25fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-container {
  margin-bottom: 20px;
}

.footer-logo-text .logo-main {
  color: var(--text-light);
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-normal);
}

.footer-social-link:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 4px;
}

.footer-contact-text {
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.footer-legal-links a:hover {
  color: var(--accent-color);
}

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

.whatsapp-float:hover {
  transform: scale(1.1);
  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);
  }
}

/* Breadcrumb Section for Inner Pages */
.breadcrumb-section {
  background-image: linear-gradient(rgba(13, 35, 58, 0.9), rgba(13, 35, 58, 0.9)), url('../img/hero_bg.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.breadcrumb-title {
  color: var(--text-light);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-links a:hover {
  color: var(--accent-color);
}

.breadcrumb-current {
  color: var(--accent-color);
  font-weight: 600;
}

/* Inner Page Layout (Sidebar + Content) */
.page-layout {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.page-grid {
  display: grid;
  grid-template-columns: 2.75fr 1.25fr;
  gap: 40px;
}

.main-content article h3 {
  font-size: 1.6rem;
  margin: 30px 0 15px 0;
}

.main-content article p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.main-content img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  width: 100%;
}

.bullet-list {
  margin: 20px 0;
  padding-left: 20px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Sidebar Styling */
.sidebar-widget {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.widget-menu li {
  margin-bottom: 10px;
}

.widget-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
}

.widget-menu a:hover, .widget-menu li.active a {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.widget-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-contact-item {
  display: flex;
  gap: 15px;
}

.widget-contact-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.widget-contact-item h5 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.widget-contact-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact Page Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
}

.contact-info-card {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.contact-info-card h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.6rem;
}

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

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.contact-info-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-form-container {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--border-radius-lg);
}

.contact-form-container h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(232, 122, 36, 0.1);
}

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

/* Maps section */
.map-section {
  width: 100%;
  height: 450px;
  margin-top: 50px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-body {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta-item i {
  color: var(--accent-color);
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-card-link i {
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-link i {
  transform: translateX(3px);
}

/* Brands Section */
.brands-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.brand-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 15px 30px;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
  min-width: 150px;
}

.brand-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

/* Dealer Section */
.dealer-section {
  background-color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.dealer-box {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  animation: dealer-glow 3s infinite alternate ease-in-out;
}

.dealer-box::before {
  content: 'RESMİ BAYİ';
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--text-light);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  animation: pulse-badge 2s infinite ease-in-out;
  z-index: 10;
}

@keyframes dealer-glow {
  0% {
    border-color: rgba(232, 122, 36, 0.2);
    box-shadow: 0 4px 15px rgba(232, 122, 36, 0.05);
  }
  50% {
    border-color: rgba(13, 35, 58, 0.3);
    box-shadow: 0 8px 25px rgba(13, 35, 58, 0.08);
  }
  100% {
    border-color: rgba(232, 122, 36, 0.4);
    box-shadow: 0 12px 30px rgba(232, 122, 36, 0.12);
  }
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(232, 122, 36, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(232, 122, 36, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(232, 122, 36, 0);
  }
}

.dealer-logo-wrapper {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 15px;
  box-shadow: var(--shadow-sm);
}

.dealer-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dealer-text {
  flex-grow: 1;
}

.dealer-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.dealer-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.dealer-desc {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .grid-4, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide top bar on smaller screens */
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 0 0 0 15px;
    width: 100%;
    display: none;
  }

  .nav-item.active .dropdown-menu {
    display: block;
  }

  .header-actions .btn {
    display: none; /* Hide CTA button in menu on mobile */
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-section {
    height: 550px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .grid-2, .grid-3, .grid-4, .projects-grid, .blog-grid, .footer-grid, .page-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-left {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-right {
    width: 100%;
    flex-direction: column;
  }
  
  .cta-right .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dealer-box {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px 20px;
  }

  .dealer-logo-wrapper {
    width: 130px;
    height: 130px;
  }
}
