/*
Theme Name: Diyalog Araştırma
Theme URI: https://diyalog.com.tr
Author: Diyalog Dijital
Author URI: https://diyalog.com.tr
Description: Diyalog Kamuoyu ve Pazarlama Araştırmaları A.Ş. kurumsal web sitesi teması.
Version: 1.0.0
License: Private
Text Domain: diyalog-arastirma
*/

/* =========================================
   DİYALOG ARAŞTIRMA - Ana Stylesheet
   ========================================= */

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --primary:        #1B5E20;
  --primary-dark:   #0d3d11;
  --primary-mid:    #2E7D32;
  --primary-light:  #43A047;
  --accent:         #66BB6A;
  --accent-light:   #A5D6A7;
  --bg-light:       #F1F8E9;
  --bg-section:     #FAFFFE;
  --white:          #FFFFFF;
  --text-dark:      #1A2E1A;
  --text-body:      #374840;
  --text-muted:     #6B736B;
  --border:         #D7EDD8;
  --shadow-sm:      0 2px 8px rgba(27,94,32,.10);
  --shadow-md:      0 6px 24px rgba(27,94,32,.14);
  --shadow-lg:      0 14px 48px rgba(27,94,32,.18);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all 0.3s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { color: var(--text-dark); font-weight: 700; line-height: 1.3; }

a { color: var(--primary-mid); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; }

ul { list-style: none; padding: 0; margin: 0; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-brand img {
  height: 54px;
  object-fit: contain;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.brand-tagline {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.55rem 0.85rem !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--bg-light);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
}

.navbar-toggler {
  border: none;
  padding: 0.4rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--accent-light); }

.hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hero-visual { position: relative; z-index: 2; }

.hero-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: inline-block;
}

.hero-stat-card .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-card .stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.3);
}

/* =========================================
   SECTION COMMONS
   ========================================= */
section { padding: 80px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-mid);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 28px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.bg-light-green { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-size: 0.92rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(46,125,50,.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-mid);
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--primary-mid);
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 50px 0;
}

.stat-item { text-align: center; padding: 0.5rem; }

.stat-item .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.8);
  font-weight: 400;
  margin-top: 6px;
  display: block;
}

/* =========================================
   SERVICE CARDS
   ========================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--accent-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.7rem;
  color: var(--primary-mid);
  transition: var(--transition);
}

.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge .num { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .txt { font-size: 0.72rem; font-weight: 400; opacity: .85; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-body);
}

.check-list li i {
  color: var(--primary-light);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* =========================================
   TEAM CARD
   ========================================= */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.team-card-img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--bg-light), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
}

.team-card-img i { font-size: 5rem; color: var(--primary); opacity: 0.4; }
.team-card-body { padding: 1.4rem; }
.team-card-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.team-card-body .role { font-size: 0.8rem; color: var(--primary-mid); font-weight: 600; margin-bottom: 0.8rem; }
.team-card-body .email { font-size: 0.78rem; color: var(--text-muted); }

.team-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary-mid);
  font-size: 0.85rem;
  transition: var(--transition);
  margin: 0 3px;
}

.team-social a:hover { background: var(--primary); color: var(--white); }

/* =========================================
   BLOG CARD
   ========================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img i { font-size: 4rem; color: rgba(255,255,255,.3); }

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--primary-mid);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.blog-card-body { padding: 1.4rem; }

.blog-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.blog-meta span { margin-right: 12px; }

.blog-card-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.5; }

.blog-card-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }

.blog-read-more {
  font-size: 0.85rem; font-weight: 600; color: var(--primary-mid);
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}

.blog-read-more:hover { color: var(--primary); gap: 10px; }

/* =========================================
   REFERENCE CARDS / LOGO GRID
   ========================================= */
.ref-logo-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.ref-logo-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); color: var(--primary); }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  padding: 1.15rem 1.4rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--bg-light);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232E7D32'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
  padding: 1rem 1.4rem 1.3rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
}

.contact-info-card h4 { color: var(--white); margin-bottom: 2rem; }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.6rem; }

.contact-info-item .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon i { color: var(--white); font-size: 1rem; }

.contact-info-item .content label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
  opacity: .7; display: block; margin-bottom: 4px;
}

.contact-info-item .content span { font-size: 0.9rem; font-weight: 500; }

.contact-social { margin-top: 2rem; }

.contact-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  margin-right: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-social a:hover { background: var(--white); color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(67,160,71,.15);
  outline: none;
}

.form-label { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 0.4rem; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 3px solid var(--white); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 50px;
  background: var(--bg-light);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 0.5rem; }

.breadcrumb-item { font-size: 0.85rem; }
.breadcrumb-item a { color: rgba(255,255,255,.8); }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* =========================================
   GALLERY
   ========================================= */
.gallery-filter .filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.gallery-filter .filter-btn.active,
.gallery-filter .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }

.gallery-item-inner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  height: 230px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: var(--transition);
}

.gallery-item-inner i { font-size: 3.5rem; color: rgba(255,255,255,.25); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(27,94,32,.8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); text-align: center; padding: 1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h6 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.gallery-overlay span { font-size: 0.78rem; opacity: .8; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  color: var(--accent-light);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
  margin-top: 2rem; margin-bottom: 1.5rem; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 44px; height: 44px;
  background: var(--bg-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.t-avatar i { color: var(--primary-mid); font-size: 1.2rem; }

.t-info h6 { font-size: 0.9rem; font-weight: 700; margin: 0; }
.t-info span { font-size: 0.75rem; color: var(--text-muted); }
.stars { color: #F9A825; font-size: 0.85rem; margin-bottom: 0.5rem; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}

.footer-brand img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 280px; }

.footer h6 {
  color: var(--white); font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem;
  position: relative; padding-bottom: 0.6rem;
}

.footer h6::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--accent); border-radius: 2px;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,.65); font-size: 0.87rem; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 1rem; font-size: 0.86rem;
}

.footer-contact-item i { color: var(--accent); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  color: rgba(255,255,255,.7); margin-right: 6px;
  font-size: 0.85rem; transition: var(--transition);
}

.footer-social a:hover { background: var(--primary-light); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.3rem 0; margin-top: 3rem;
  font-size: 0.82rem; color: rgba(255,255,255,.45);
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.process-step { text-align: center; padding: 1rem; position: relative; }

.step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  position: relative; z-index: 1;
}

.process-step::after {
  content: ''; position: absolute;
  top: 30px; left: calc(50% + 30px); right: calc(-50% + 30px);
  height: 2px; background: var(--border); z-index: 0;
}

.process-step:last-child::after { display: none; }
.process-step h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--primary); color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999;
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .hero { min-height: auto; padding: 80px 0 100px; }
  .hero::after { height: 50px; }
  .about-badge { right: 10px; }
  .process-step::after { display: none; }
  .navbar-collapse {
    background: var(--white); padding: 1rem; margin-top: 0.5rem;
    border-radius: var(--radius); box-shadow: var(--shadow-md);
  }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .contact-form-card { padding: 1.5rem; }
  .contact-info-card { margin-bottom: 1.5rem; }
  .cta-section h2 { font-size: 1.7rem; }
  .footer { padding: 40px 0 0; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }
.fade-up[data-delay="5"] { transition-delay: 0.5s; }
.fade-up[data-delay="6"] { transition-delay: 0.6s; }

/* Progress bar for skills */
.skill-bar { margin-bottom: 1.2rem; }
.skill-bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-dark);
}

.skill-bar-track { height: 8px; background: var(--bg-light); border-radius: 50px; overflow: hidden; }

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 50px; width: 0; transition: width 1.2s ease;
}

/* =========================================
   WORDPRESS SPECIFIC
   ========================================= */
.wp-post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.wp-post-content h2, .wp-post-content h3 { margin-top: 2rem; margin-bottom: 0.8rem; }
.wp-post-content p { margin-bottom: 1.2rem; color: var(--text-muted); }
.wp-post-content ul, .wp-post-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; color: var(--text-muted); }
.wp-post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* Contact Form 7 styling */
.wpcf7-form .form-control { width: 100%; margin-bottom: 1rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  margin-bottom: 1rem;
  background: var(--white);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(67,160,71,.15);
  outline: none;
}

.wpcf7-form input[type="submit"] {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  transform: translateY(-2px);
}

/* =========================================
   USER / LOGIN PANEL
   ========================================= */
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-user-btn i { font-size: 1rem; }
.nav-user-btn:hover,
.nav-user-btn.active {
  background: var(--bg-light);
  border-color: var(--primary-light);
  color: var(--primary);
}

.login-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
}

.login-panel {
  position: fixed;
  top: 70px;
  right: 16px;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 1050;
  display: none;
}
.login-panel.open {
  display: block;
  animation: lpSlideDown .2s ease;
}
@keyframes lpSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.login-panel-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-panel .form-control {
  font-size: 0.85rem;
  border-color: var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.6rem;
}
.login-panel .form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(67,160,71,.15);
}

.login-panel-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0.4rem;
}
.login-panel-submit:hover { opacity: 0.9; }
.login-panel-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.login-panel-error {
  font-size: 0.8rem;
  color: #c62828;
  background: #ffebee;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  margin-top: 0.5rem;
  display: none;
}
.login-panel-error.show { display: block; }

.login-panel-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: .2rem;
}

.login-panel-forgot {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  display: block;
}
.login-panel-forgot:hover { color: var(--primary); }

.login-panel-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.login-panel-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-mid);
  flex-shrink: 0;
}
.login-panel-user-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.login-panel-user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.login-panel-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.login-panel-links a {
  font-size: 0.83rem;
  color: var(--text-body);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.login-panel-links a:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.login-panel-logout {
  width: 100%;
  background: transparent;
  border: 1.5px solid #ef5350;
  color: #ef5350;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.login-panel-logout:hover { background: #ffebee; }
