/*
Theme Name: GrowthDigitalMedia
Theme URI: https://growthdigitalmedia.in
Author: Pratik Ganatra
Author URI: https://growthdigitalmedia.in
Description: A modern digital media WordPress theme for GrowthDigitalMedia with blog categories, latest posts, and custom dashboard widgets.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: growthdigitalmedia
Tags: blog, digital-media, custom-logo, featured-images, categories
*/

/* =============================================
   CSS VARIABLES - GrowthDigitalMedia Brand
   ============================================= */
:root {
  --gdm-primary: #FF6B00;
  --gdm-secondary: #1A1A2E;
  --gdm-accent: #E94560;
  --gdm-dark: #0F0F1A;
  --gdm-light: #F8F9FF;
  --gdm-white: #FFFFFF;
  --gdm-gray: #6B7280;
  --gdm-light-gray: #F3F4F6;
  --gdm-border: #E5E7EB;
  --gdm-text: #1F2937;
  --gdm-text-light: #9CA3AF;
  --gdm-gradient: linear-gradient(135deg, #FF6B00 0%, #E94560 100%);
  --gdm-gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
  --gdm-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
  --gdm-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --gdm-radius: 12px;
  --gdm-radius-sm: 6px;
  --gdm-radius-lg: 20px;
  --gdm-font-heading: 'Montserrat', sans-serif;
  --gdm-font-body: 'Open Sans', sans-serif;
  --gdm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--gdm-font-body);
  color: var(--gdm-text);
  background: var(--gdm-white);
  line-height: 1.7;
  font-size: 16px;
}

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

a:hover {
  color: var(--gdm-accent);
}

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

ul, ol {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gdm-font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--gdm-secondary);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.gdm-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.gdm-section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.gdm-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gdm-gradient);
  border-radius: 2px;
}

.gdm-section-title p {
  color: var(--gdm-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#gdm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gdm-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--gdm-transition);
}

#gdm-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.gdm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.gdm-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.gdm-logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gdm-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gdm-logo-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.gdm-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gdm-logo-text span:first-child {
  font-family: var(--gdm-font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--gdm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gdm-logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--gdm-gray);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation */
.gdm-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gdm-nav ul li a {
  padding: 8px 16px;
  border-radius: var(--gdm-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gdm-secondary);
  transition: var(--gdm-transition);
}

.gdm-nav ul li a:hover,
.gdm-nav ul li.current-menu-item > a {
  color: var(--gdm-primary);
  background: rgba(255, 107, 0, 0.08);
}

.gdm-nav-cta a {
  background: var(--gdm-gradient) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.gdm-nav-cta a:hover {
  box-shadow: var(--gdm-shadow);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.gdm-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.gdm-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gdm-secondary);
  border-radius: 2px;
  transition: var(--gdm-transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.gdm-hero {
  margin-top: 75px;
  background: var(--gdm-gradient-dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.gdm-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.gdm-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,69,96,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.gdm-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.gdm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 0.85rem;
  color: var(--gdm-primary);
  font-weight: 600;
}

.gdm-hero h1 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gdm-hero h1 span {
  background: var(--gdm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gdm-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 550px;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.gdm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--gdm-transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--gdm-font-heading);
}

.gdm-btn-primary {
  background: var(--gdm-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}

.gdm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.45);
  color: white;
}

.gdm-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.gdm-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: white;
  transform: translateY(-2px);
}

.gdm-btn-secondary {
  background: var(--gdm-light);
  color: var(--gdm-secondary);
}

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

/* =============================================
   LATEST POSTS - 24 HOUR SECTION
   ============================================= */
.gdm-latest-section {
  background: var(--gdm-light);
  padding: 80px 0;
}

.gdm-latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.gdm-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gdm-accent);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gdm-live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Blog Cards Grid */
.gdm-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.gdm-posts-grid.gdm-latest-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.gdm-post-card {
  background: white;
  border-radius: var(--gdm-radius);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: var(--gdm-transition);
  display: flex;
  flex-direction: column;
}

.gdm-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gdm-shadow-lg);
}

.gdm-post-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gdm-light-gray);
}

.gdm-post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gdm-post-card:hover .gdm-post-card-img img {
  transform: scale(1.05);
}

.gdm-post-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gdm-gradient);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gdm-post-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gdm-post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--gdm-text-light);
}

.gdm-post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gdm-post-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
  flex: 1;
}

.gdm-post-card-body h3 a {
  color: var(--gdm-secondary);
}

.gdm-post-card-body h3 a:hover {
  color: var(--gdm-primary);
}

.gdm-post-card-body p {
  color: var(--gdm-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.gdm-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gdm-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
}

.gdm-read-more:hover {
  gap: 10px;
  color: var(--gdm-accent);
}

/* =============================================
   CATEGORY FILTER BAR
   ============================================= */
.gdm-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.gdm-cat-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--gdm-border);
  background: white;
  color: var(--gdm-gray);
  cursor: pointer;
  transition: var(--gdm-transition);
  font-family: var(--gdm-font-body);
}

.gdm-cat-btn:hover,
.gdm-cat-btn.active {
  background: var(--gdm-gradient);
  color: white;
  border-color: transparent;
  box-shadow: var(--gdm-shadow);
}

/* =============================================
   ALL BLOGS PAGE
   ============================================= */
.gdm-blog-page {
  margin-top: 75px;
  padding: 60px 0;
}

.gdm-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

/* Sidebar */
.gdm-sidebar {
  position: sticky;
  top: 95px;
  height: fit-content;
}

.gdm-sidebar-widget {
  background: white;
  border-radius: var(--gdm-radius);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.gdm-sidebar-widget h4 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gdm-light);
  font-size: 1rem;
  position: relative;
}

.gdm-sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gdm-gradient);
}

.gdm-cat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gdm-border);
  font-size: 0.9rem;
}

.gdm-cat-list li:last-child {
  border-bottom: none;
}

.gdm-cat-list li a {
  color: var(--gdm-text);
  font-weight: 500;
}

.gdm-cat-list li a:hover {
  color: var(--gdm-primary);
}

.gdm-cat-count {
  background: var(--gdm-light);
  color: var(--gdm-gray);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.gdm-search-form {
  display: flex;
  gap: 0;
}

.gdm-search-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gdm-border);
  border-right: none;
  border-radius: var(--gdm-radius-sm) 0 0 var(--gdm-radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: var(--gdm-transition);
  font-family: var(--gdm-font-body);
}

.gdm-search-form input:focus {
  border-color: var(--gdm-primary);
}

.gdm-search-form button {
  padding: 12px 18px;
  background: var(--gdm-gradient);
  color: white;
  border: none;
  border-radius: 0 var(--gdm-radius-sm) var(--gdm-radius-sm) 0;
  cursor: pointer;
}

/* =============================================
   ABOUT US PAGE
   ============================================= */
.gdm-about-hero {
  background: var(--gdm-gradient-dark);
  padding: 120px 0 80px;
  margin-top: 75px;
  text-align: center;
}

.gdm-about-hero h1 {
  color: white;
  margin-bottom: 15px;
}

.gdm-about-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.gdm-about-content {
  padding: 80px 0;
}

.gdm-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gdm-about-text h2 {
  margin-bottom: 20px;
}

.gdm-about-text p {
  color: var(--gdm-gray);
  margin-bottom: 15px;
}

.gdm-team-info {
  background: var(--gdm-light);
  border-radius: var(--gdm-radius);
  padding: 25px;
  margin-top: 25px;
  border-left: 4px solid var(--gdm-primary);
}

.gdm-team-info h4 {
  color: var(--gdm-primary);
  margin-bottom: 5px;
}

.gdm-team-info p {
  color: var(--gdm-gray);
  font-size: 0.9rem;
  margin: 3px 0;
}

.gdm-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gdm-stat-box {
  background: var(--gdm-gradient-dark);
  border-radius: var(--gdm-radius);
  padding: 30px;
  text-align: center;
}

.gdm-stat-box .number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gdm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--gdm-font-heading);
  display: block;
}

.gdm-stat-box .label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 5px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.gdm-contact-page {
  margin-top: 75px;
}

.gdm-contact-hero {
  background: var(--gdm-gradient-dark);
  padding: 100px 0 60px;
  text-align: center;
}

.gdm-contact-hero h1 {
  color: white;
  margin-bottom: 12px;
}

.gdm-contact-hero p {
  color: rgba(255,255,255,0.7);
}

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

.gdm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.gdm-contact-info-box {
  background: var(--gdm-gradient-dark);
  border-radius: var(--gdm-radius-lg);
  padding: 40px;
  height: fit-content;
}

.gdm-contact-info-box h3 {
  color: white;
  margin-bottom: 30px;
}

.gdm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gdm-contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.gdm-contact-icon {
  width: 46px;
  height: 46px;
  background: var(--gdm-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.gdm-contact-item-text h4 {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.gdm-contact-item-text p,
.gdm-contact-item-text a {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.gdm-contact-form {
  background: white;
  border-radius: var(--gdm-radius-lg);
  padding: 40px;
  box-shadow: var(--gdm-shadow-lg);
}

.gdm-contact-form h3 {
  margin-bottom: 25px;
}

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

.gdm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.gdm-form-group input,
.gdm-form-group textarea,
.gdm-form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gdm-border);
  border-radius: var(--gdm-radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: var(--gdm-transition);
  font-family: var(--gdm-font-body);
  color: var(--gdm-text);
  background: white;
}

.gdm-form-group input:focus,
.gdm-form-group textarea:focus,
.gdm-form-group select:focus {
  border-color: var(--gdm-primary);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.gdm-form-group textarea {
  height: 140px;
  resize: vertical;
}

/* =============================================
   FOOTER
   ============================================= */
#gdm-footer {
  background: var(--gdm-gradient-dark);
  color: white;
  padding: 70px 0 30px;
}

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

.gdm-footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 20px;
}

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

.gdm-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: var(--gdm-transition);
}

.gdm-social-link:hover {
  background: var(--gdm-gradient);
  color: white;
  transform: translateY(-2px);
}

.gdm-footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.gdm-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gdm-gradient);
}

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

.gdm-footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--gdm-transition);
}

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

.gdm-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

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

.gdm-footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* =============================================
   ADMIN / DASHBOARD ENHANCEMENTS
   ============================================= */
.gdm-admin-notice {
  background: var(--gdm-gradient);
  color: white;
  padding: 12px 20px;
  border-radius: var(--gdm-radius-sm);
  border-left: none !important;
}

/* =============================================
   PAGINATION
   ============================================= */
.gdm-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.gdm-pagination a,
.gdm-pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--gdm-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--gdm-border);
  color: var(--gdm-gray);
  transition: var(--gdm-transition);
}

.gdm-pagination a:hover,
.gdm-pagination .current {
  background: var(--gdm-gradient);
  color: white;
  border-color: transparent;
}

/* =============================================
   SINGLE POST
   ============================================= */
.gdm-single-post {
  margin-top: 75px;
  padding: 60px 0;
}

.gdm-post-header {
  margin-bottom: 40px;
}

.gdm-post-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.gdm-post-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gdm-text);
}

.gdm-post-content h2, .gdm-post-content h3 {
  margin: 35px 0 15px;
}

.gdm-post-content p { margin-bottom: 1.3rem; }

.gdm-post-content img {
  border-radius: var(--gdm-radius);
  margin: 20px 0;
  width: 100%;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .gdm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gdm-about-grid,
  .gdm-contact-grid {
    grid-template-columns: 1fr;
  }
  .gdm-blog-layout {
    grid-template-columns: 1fr;
  }
  .gdm-sidebar {
    position: static;
  }
  .gdm-posts-grid.gdm-latest-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .gdm-nav { display: none; }
  .gdm-nav.open { display: block; }
  .gdm-nav.open ul { flex-direction: column; padding: 20px; }
  .gdm-menu-toggle { display: flex; }
  .gdm-header-inner { flex-wrap: wrap; }

  .gdm-posts-grid,
  .gdm-posts-grid.gdm-latest-grid {
    grid-template-columns: 1fr;
  }
  .gdm-footer-grid {
    grid-template-columns: 1fr;
  }
  .gdm-form-row {
    grid-template-columns: 1fr;
  }
  .gdm-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gdm-contact-info-box {
    padding: 25px;
  }
  .gdm-contact-form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .gdm-hero { padding: 70px 0 60px; }
  .gdm-hero-btns { flex-direction: column; }
  .gdm-btn { justify-content: center; }
  .gdm-stats-grid { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center { text-align: center; }
.text-primary { color: var(--gdm-primary); }
.bg-light { background: var(--gdm-light); }
.gdm-no-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
