* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 1rem;
  background-color: #f5f5f5;
}

footer a {
  color: #2E2E2E;
  text-decoration: none;
}

/* HERO BÖLÜMÜ */
.hero {
  background-color: #E5D9B6;
  text-align: center;
  padding: 4rem 2rem;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #444;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #B8E0D2;
  color: #2E2E2E;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

/* INTRO ve SERVICES BÖLÜMLERİ */
.intro,
.services {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.more-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #B8E0D2;
  color: #2E2E2E;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}


.about-section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.about-image img {
  width: 300px;
  border-radius: 12px;
}

.about-text {
  flex: 1;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  margin-bottom: 0.5rem;
}

.services-section {
  padding: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card h2 {
  margin-top: 0;
  color: #2e2e2e;
}

.service-card p {
  color: #444;
}

.appointment-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.appointment-method label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.appointment-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appointment-form label {
  font-weight: bold;
}

.appointment-form input,
.appointment-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
}

.appointment-form button {
  background-color: #B8E0D2;
  color: #2E2E2E;
  padding: 0.75rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appointment-form button:hover {
  background-color: #9ccfc2;
}

.contact-section {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info p a {
  color: #2e2e2e;
  text-decoration: underline;
}

.map-container {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form button {
  background-color: #B8E0D2;
  color: #2E2E2E;
  padding: 0.75rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.blog-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-item h2 a {
  text-decoration: none;
  color: #2e2e2e;
}

.blog-item p {
  margin-top: 0.5rem;
  color: #444;
}

.blog-meta {
  font-size: 0.85rem;
  color: #888;
}

.kvkk-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.kvkk-section h2 {
  margin-top: 2rem;
  color: #2e2e2e;
}

.kvkk-section p {
  line-height: 1.6;
  color: #444;
}

/* HEADER + MENU TOGGLE */
header {
  background-color: #B8E0D2;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #2E2E2E;
  white-space: nowrap;
}

.logo:hover {
  opacity: 0.85;
}

.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #2E2E2E;
  display: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: opacity 0.2s;
}

nav a:hover {
  opacity: 0.7;
}

/* Küçük ekran için açılır menü */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-left {
    width: 100%;
  }

  nav {
    width: 100%;
    display: none;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}

@media screen and (min-width: 769px) {
  #main-nav { display: block; }
}

@media screen and (max-width: 600px) {
  header {
    padding: 0.8rem 1rem;
  }
}

.popup-message {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  max-width: 90vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.popup-message.success {
  background-color: #28a745;
}

.popup-message.error {
  background-color: #dc3545;
}

.popup-message button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  margin-left: 20px;
}


@media screen and (max-width: 600px) {
  .popup-message {
    right: 10px;
    left: 10px;
    top: 20px;
    transform: none;
    max-width: unset;
  }
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-slide .caption {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 750px;
  padding: 2rem;
}

.hero-slide .caption .quote {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

.hero-slide .caption .quote .bold {
  font-weight: 700;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-arrows button {
  pointer-events: auto;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-arrows button:hover {
  background: rgba(255,255,255,0.3);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dots button.active {
  background: #fff;
}

/* ========== SECTION HEADINGS ========== */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 1.8rem;
  color: #2E2E2E;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #B8E0D2;
  margin: 0.7rem auto 0;
  border-radius: 2px;
}

/* ========== HOMEPAGE ABOUT ========== */
.home-about {
  padding: 4rem 2rem;
  background: #fafaf8;
}

.home-about .container {
  max-width: 1100px;
  margin: 0 auto;
}

.home-about .row {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.home-about .about-img {
  flex: 0 0 280px;
}

.home-about .about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.home-about .about-text {
  flex: 1;
  min-width: 280px;
}

.home-about .about-text h2 {
  font-size: 1.5rem;
  color: #2E2E2E;
  margin-bottom: 0.3rem;
}

.home-about .about-text .title-tag {
  display: inline-block;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.home-about .about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* ========== SOCIAL MEDIA ========== */
.social-section {
  padding: 2.5rem 2rem;
  text-align: center;
  background: #f5f5f5;
}

.social-section h3 {
  font-size: 1.2rem;
  color: #2E2E2E;
  margin-bottom: 1rem;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #B8E0D2;
  color: #2E2E2E;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
  background: #9ccfc2;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transition: transform 0.3s;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.whatsapp-float .tooltip {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 0.85rem;
  color: #333;
  white-space: nowrap;
  display: none;
}

.whatsapp-float:hover .tooltip {
  display: block;
}

/* ========== FOOTER ========== */
.site-footer {
  margin-top: auto;
  background: #2E2E2E;
  color: #ccc;
}

.footer-widgets {
  padding: 3rem 2rem;
}

.footer-widgets .container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid .widget h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-grid .widget p {
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-grid .widget a {
  color: #B8E0D2;
  text-decoration: none;
}

.footer-grid .widget .contact-info {
  line-height: 2;
}

.copyright-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

.copyright-bar a {
  color: #B8E0D2;
  text-decoration: none;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  width: 60px;
  height: 3px;
  background: #B8E0D2;
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

/* ========== INTERIOR PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, #B8E0D2 0%, #D4EAD8 40%, #E8DCC8 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(184,224,210,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .page-hero-content h1 {
  font-size: 2.4rem;
  color: #2E2E2E;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  font-size: 0.9rem;
  color: #666;
}

.page-hero .breadcrumb a {
  color: #2E2E2E;
  text-decoration: none;
  font-weight: 600;
}

.page-hero .breadcrumb a:hover {
  opacity: 0.7;
}

.page-hero .breadcrumb span {
  color: #555;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 4rem 2rem;
}

.content-section.cream {
  background: #FAF8F3;
}

.content-section.sage {
  background: #F3F7F4;
}

.content-section.warm {
  background: #F8F3EE;
}

.content-section.white {
  background: #fff;
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.content-inner.narrow {
  max-width: 800px;
}

.content-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  line-height: 1.8;
  color: #444;
  border: 1px solid rgba(184,224,210,0.15);
}

.content-card p {
  margin-bottom: 1rem;
}

/* ========== ABOUT PAGE ========== */
.about-intro {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-intro .about-photo-wrap {
  flex: 0 0 300px;
  position: relative;
}

.about-intro .about-photo-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid #B8E0D2;
  border-radius: 20px;
  z-index: 0;
}

.about-intro .about-photo-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.about-intro .about-bio {
  flex: 1;
  min-width: 300px;
}

.about-intro .about-bio .greeting {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B8E0D2;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-intro .about-bio h2 {
  font-size: 1.8rem;
  color: #2E2E2E;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.about-intro .about-bio p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* About highlight boxes */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-box {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}

.highlight-box .num {
  font-size: 2rem;
  font-weight: 700;
  color: #B8E0D2;
}

.highlight-box .label {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.3rem;
}

/* Qualifications/certifications */
.qual-section h3 {
  font-size: 1.3rem;
  color: #2E2E2E;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qual-section h3 i {
  color: #B8E0D2;
  font-size: 1.4rem;
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.qual-item {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: #444;
  border-left: 3px solid #B8E0D2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  line-height: 1.5;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #B8E0D2, #D4EAD8);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.15rem;
  color: #2E2E2E;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ========== BLOG CARDS ========== */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.blog-card .card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .card-img {
  transform: scale(1.05);
}

.blog-card .card-body {
  padding: 1.3rem 1.5rem;
}

.blog-card .card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card .card-body h3 a {
  color: #2E2E2E;
  text-decoration: none;
}

.blog-card .card-body h3 a:hover {
  color: #5a9e8a;
}

.blog-card .card-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card .card-body .card-meta {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Featured blog post */
.blog-featured {
  display: flex;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-featured .feat-img {
  flex: 0 0 380px;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.blog-featured .feat-body {
  flex: 1;
  padding: 2rem 2rem 2rem 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured .feat-badge {
  display: inline-block;
  background: #B8E0D2;
  color: #2E2E2E;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  width: fit-content;
}

.blog-featured .feat-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-featured .feat-body h3 a {
  color: #2E2E2E;
  text-decoration: none;
}

.blog-featured .feat-body p {
  color: #666;
  line-height: 1.6;
}

.blog-featured .feat-body .card-meta {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.8rem;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-grid .section-title {
  text-align: left;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.contact-info-card .ci-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-card .ci-item:last-child {
  margin-bottom: 0;
}

.contact-info-card .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F3F7F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8E0D2;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card .ci-text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}

.contact-info-card .ci-text a {
  color: #2E2E2E;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card .ci-text a:hover {
  color: #B8E0D2;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

/* ========== RANDEVU PAGE ========== */
.appointment-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #B8E0D2, #D4EAD8);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.5rem;
  color: #2E2E2E;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cta-section .cta-btn {
  display: inline-block;
  background: #2E2E2E;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.cta-section .cta-btn:hover {
  background: #444;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-slide .caption .quote {
    font-size: 1.2rem;
  }
  .hero-arrows button {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }
  .home-about .about-img {
    flex: 0 0 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 3rem 1rem;
  }
  .page-hero .page-hero-content h1 {
    font-size: 1.7rem;
  }
  .content-section {
    padding: 2.5rem 1rem;
  }
  .content-card {
    padding: 1.5rem;
  }
  .about-intro {
    flex-direction: column;
    align-items: center;
  }
  .about-intro .about-photo-wrap {
    flex: 0 0 220px;
    max-width: 260px;
  }
  .qual-grid {
    grid-template-columns: 1fr;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-featured {
    flex-direction: column;
  }
  .blog-featured .feat-img {
    flex: 0 0 200px;
    min-height: 200px;
  }
  .blog-featured .feat-body {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 2.5rem 1rem;
  }
  .page-hero .page-hero-content h1 {
    font-size: 1.4rem;
  }
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}
