/* ==========================================
   SAROJA HOSPITAL REDESIGN STYLESHEET
   ========================================== */

@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-navy: #0d273e;         /* Deep professional blue */
  --accent-blue: #0062ff;          /* Vibrant action blue */
  --light-blue-bg: #eaf3fc;        /* Reassuring clean light blue background */
  --white: #ffffff;
  --text-dark: #1e293b;            /* High contrast charcoal */
  --text-muted: #64748b;           /* Muted grey */
  --border-light: #e2e8f0;         /* Soft borders */
  --yellow-bg: #fff9db;            /* Soft yellow highlights */
  --yellow-text: #856404;          /* Yellow contrast text */
  --yellow-accent: #ffd43b;        /* Active yellow color */
  --footer-bg: #071524;            /* Dark premium footer background */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(13, 39, 62, 0.08);
  --shadow-lg: 0 10px 30px rgba(13, 39, 62, 0.12);
}

/* Reset and Global Overrides for Redesign Scope */
.redesign-body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

.redesign-body h1, 
.redesign-body h2, 
.redesign-body h3, 
.redesign-body h4, 
.redesign-body h5, 
.redesign-body h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 700;
}

/* Section Common Titles */
.redesign-section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

/* --- Redesign Buttons --- */
.btn-redesign-primary {
  background-color: var(--accent-blue);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 98, 255, 0.2);
}

.btn-redesign-primary:hover {
  background-color: #004ecc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 98, 255, 0.3);
}

.btn-redesign-outline {
  border: 2px solid var(--border-light);
  background-color: transparent;
  color: var(--primary-navy) !important;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.btn-redesign-outline:hover {
  border-color: var(--primary-navy);
  background-color: var(--primary-navy);
  color: var(--white) !important;
}

/* --- Header & Branding --- */
.redesign-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.redesign-header .sitename {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 1.6rem;
  margin: 0;
}

.redesign-header .sitename span {
  color: var(--accent-blue);
}

.redesign-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.redesign-nav a {
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.redesign-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: var(--transition-smooth);
}

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

.redesign-nav a:hover,
.redesign-nav a.active {
  color: var(--accent-blue);
}

/* --- Hero Section --- */
.hero-redesign {
  padding: 5rem 0 3rem 0;
  background-color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--primary-navy);
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.hero-bullets li i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* --- Overlapping Hero Cards --- */
.hero-cards-container {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.hero-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.hero-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-card .card-link {
  font-weight: 700;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-card .card-link i {
  transition: var(--transition-smooth);
}

.hero-card:hover .card-link i {
  transform: translateX(4px);
}

/* --- Medical Services --- */
.services-redesign {
  padding: 6rem 0;
  background-color: var(--white);
}

.services-redesign-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

@media (max-width: 991px) {
  .services-redesign-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.services-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services-menu-item {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background-color: transparent;
  color: var(--primary-navy);
  font-weight: 600;
  border: 1px solid transparent;
  text-align: left;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-menu-item:hover,
.services-menu-item.active {
  background-color: var(--light-blue-bg);
  border-color: var(--border-light);
  color: var(--accent-blue);
}

.services-menu-item i {
  opacity: 0;
  transition: var(--transition-smooth);
}

.services-menu-item:hover i,
.services-menu-item.active i {
  opacity: 1;
  transform: translateX(4px);
}

.services-display-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .services-display-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services-display-grid {
    grid-template-columns: 1fr;
  }
}

.service-display-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.service-display-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-img-wrapper {
  overflow: hidden;
  height: 200px;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card-info {
  padding: 1.25rem;
  text-align: center;
}

.service-card-info h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--primary-navy);
}

/* --- New Premium Services Grid and Search --- */
.services-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-search-container {
  position: relative;
}

.services-search-container .input-group {
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.services-search-container .input-group:focus-within {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}

.services-search-container .input-group-text {
  border: none;
  font-size: 1.1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.services-search-container .form-control {
  border: none;
  padding: 0.85rem 1rem 0.85rem 0;
  font-size: 1rem;
  font-family: var(--font-body);
}

.services-search-container .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Category menu buttons overrides */
button.services-menu-item {
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  background-color: transparent;
}

/* Modern Card Layout */
.service-card-new {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-smooth);
  text-decoration: none !important;
  color: inherit;
  opacity: 0; /* Animated entry */
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-blue);
}

.service-card-new-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: var(--light-blue-bg);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.service-card-new:hover .service-card-new-icon-wrapper {
  background-color: var(--accent-blue);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
}

.service-card-new-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
}

.service-card-new-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-navy);
  transition: var(--transition-smooth);
}

.service-card-new:hover .service-card-new-content h4 {
  color: var(--accent-blue);
}

.service-card-new-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.service-card-new-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  transition: var(--transition-smooth);
}

.service-card-new-link i {
  transition: var(--transition-smooth);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- About Journey & Stats --- */
.journey-redesign {
  padding: 6rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

.journey-left-content {
  padding-right: 2rem;
}

.journey-left-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.journey-stat-panel {
  display: flex;
  gap: 2rem;
  align-items: center;
  background-color: var(--light-blue-bg);
  padding: 2.5rem;
  border-radius: 20px;
}

@media (max-width: 480px) {
  .journey-stat-panel {
    flex-direction: column;
    text-align: center;
  }
}

.journey-stat-number {
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.journey-stat-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Graphic Columns from image */
.journey-bars-graphic {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 250px;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .journey-bars-graphic {
    justify-content: center;
    margin-top: 2rem;
  }
}

.journey-bar {
  width: 50px;
  border-radius: 8px 8px 0 0;
  animation: growUp 1s ease-out;
}

.journey-bar.yellow {
  height: 120px;
  background-color: var(--yellow-accent);
}

.journey-bar.dark-navy {
  height: 220px;
  background-color: var(--primary-navy);
}

.journey-bar.light-blue {
  height: 170px;
  background-color: #9ac5f4;
}

@keyframes growUp {
  from { height: 0; }
}

/* --- Block Grid Section --- */
.grid-blocks-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.grid-blocks-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .grid-blocks-container {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}

@media (max-width: 576px) {
  .grid-blocks-container {
    grid-template-columns: 1fr;
  }
}

.grid-block {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.grid-block.tall-image {
  grid-row: span 2;
}

@media (max-width: 991px) {
  .grid-block.tall-image {
    grid-row: span 1;
    height: 350px;
  }
}

.grid-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-block.yellow-card {
  background-color: var(--yellow-bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #ffeeba;
  color: var(--yellow-text);
}

.grid-block.yellow-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--yellow-text);
}

.grid-block.yellow-card h4 {
  color: var(--yellow-text);
  margin-bottom: 0.5rem;
}

.grid-block.blue-card {
  background-color: var(--light-blue-bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #d6e9f8;
}

.grid-block.blue-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.grid-block.blue-card h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.grid-block.normal-image {
  height: 100%;
}

@media (max-width: 991px) {
  .grid-block.normal-image {
    height: 250px;
  }
}

/* --- Stat Ribbon Banner --- */
.stat-ribbon-section {
  background-color: var(--light-blue-bg);
  padding: 3.5rem 0;
}

.stat-ribbon-card {
  background-color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  height: 100%;
  transition: var(--transition-smooth);
}

.stat-ribbon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.stat-ribbon-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-ribbon-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.stat-ribbon-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Meet Specialists --- */
.specialists-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.specialist-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.specialist-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.specialist-quote-box {
  background-color: var(--light-blue-bg);
  padding: 3rem;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.specialist-quote-box::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(0, 98, 255, 0.1);
  line-height: 1;
}

.specialist-title {
  font-size: 1rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.specialist-quote-box h3 {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.specialist-quote-box p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --- Appointment Section --- */
.appointment-redesign-section {
  background-color: var(--light-blue-bg);
  padding: 6rem 0;
  position: relative;
}

.appointment-form-wrapper {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 576px) {
  .appointment-form-wrapper {
    padding: 2rem;
  }
}

.appointment-form-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: var(--primary-navy);
}

.appointment-form-wrapper label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.appointment-form-wrapper .form-control,
.appointment-form-wrapper .form-select {
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.appointment-form-wrapper .form-control:focus,
.appointment-form-wrapper .form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
}

.appointment-form-wrapper button[type="submit"] {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  transition: var(--transition-smooth);
  width: 100%;
}

.appointment-form-wrapper button[type="submit"]:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
}

.appointment-image-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.appointment-doctor-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.appointment-floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 250px;
}

@media (max-width: 991px) {
  .appointment-floating-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }
}

.appointment-floating-card h4 {
  font-size: 1.05rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.appointment-floating-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.appointment-floating-card .phone-link {
  color: var(--accent-blue);
  font-weight: 800;
  font-size: 1.15rem;
  display: block;
  margin-top: 0.5rem;
}

/* --- Patient Resources --- */
.resources-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.resources-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-tab-btn {
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: left;
  border-left: 4px solid transparent;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  background-color: #fafbfc;
  width: 100%;
}

.resource-tab-btn.active,
.resource-tab-btn:hover {
  background-color: var(--light-blue-bg);
  border-left-color: var(--accent-blue);
  color: var(--accent-blue);
}

.resource-center-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.resource-center-image-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.resource-detail-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.resource-detail-content h3 {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
}

.resource-detail-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* --- Latest Articles --- */
.articles-section {
  padding: 6rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

.article-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-smooth);
}

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

.article-img-wrapper {
  height: 220px;
  overflow: hidden;
}

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

.article-card:hover .article-img-wrapper img {
  transform: scale(1.04);
}

.article-info {
  padding: 1.5rem;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.article-title {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-link {
  color: var(--accent-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* --- Double CTA Banner --- */
.double-cta-section {
  background-color: var(--light-blue-bg);
  padding: 5rem 0;
}

.cta-box {
  background-color: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-box h3 {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-box .btn-redesign-primary {
  align-self: flex-start;
}

/* --- Modern Footer --- */
.redesign-footer {
  background-color: var(--footer-bg);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

.redesign-footer .sitename {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.redesign-footer .sitename span {
  color: var(--accent-blue);
}

.redesign-footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.redesign-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.redesign-footer ul li {
  margin-bottom: 0.75rem;
}

.redesign-footer ul a {
  color: #94a3b8;
  transition: var(--transition-smooth);
}

.redesign-footer ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.redesign-footer-contact p {
  margin-bottom: 0.5rem;
}

.redesign-footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.redesign-footer-socials a {
  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(--white);
  transition: var(--transition-smooth);
}

.redesign-footer-socials a:hover {
  background-color: var(--accent-blue);
  color: var(--white);
}

.redesign-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: 0.85rem;
}

.redesign-footer-bottom a {
  color: #94a3b8;
}

.redesign-footer-bottom a:hover {
  color: var(--white);
}

/* --- Header Navigation Spacing Fix --- */
@media (min-width: 1200px) {
  .redesign-header .logo {
    margin-right: 0 !important;
  }
  .redesign-nav {
    margin-left: auto;
    margin-right: 2.5rem;
  }
}

