:root {
  --primary: #1f373d;
  --primary-dark: #152629;
  --primary-light: #2a4b52;
  --secondary: #0ea5e9;
  --background: #f7f9ff;
  --text: #0f1b3d;
  --muted: #55657a;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(31, 55, 61, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: var(--background);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 7vw;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar__logo {
  display: block;
  transition: transform 0.3s ease;
}

.navbar__logo:hover {
  transform: scale(1.05);
}

.navbar__logo img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  display: block;
}

.navbar__menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar__menu a {
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
  font-size: 1rem;
 
}

.navbar__menu a:hover {
  color: var(--primary);
}

.navbar__cta {
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  color: #fff !important;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 55, 61, 0.3);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  background: url('assets/Wael-almajed-cover.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  width: 100%;
}

.hero-content-section {
  background: var(--background);
  padding: 4rem 7vw 4rem;
  position: relative;
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero__content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  letter-spacing: -0.5px;
  color: var(--text);
}

.subtitle {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: #fff;
  color: var(--primary);
  border-color: rgba(31, 55, 61, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(31, 55, 61, 0.2);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: rgba(31, 55, 61, 0.06);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(31, 55, 61, 0.12);
}

.pill i {
  color: var(--primary);
}

.hero__image {
  position: relative;
  justify-self: center;
}

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

.hero__image > div {
  position: relative;
  padding-bottom: 3rem;
}

.hero__image img {
  width: min(380px, 90vw);
  height: min(380px, 90vw);
  display: block;
  border-radius: 50%;
  border: 6px solid var(--primary);
  box-shadow: 0 20px 60px rgba(31, 55, 61, 0.2);
  animation: float 5s ease-in-out infinite;
  background: #fff;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  align-items: center;
  min-width: 280px;
  border: 2px solid var(--primary);
}

.hero__card .label {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.hero__card strong {
  font-size: 1.4rem;
  color: var(--primary);
}

.hero__card > div {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(31, 55, 61, 0.08);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid rgba(31, 55, 61, 0.15);
  margin-bottom: 1rem;
}

.badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(31, 55, 61, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.section {
  padding: 3.5rem 7vw;
  position: relative;
}

.section--light {
  background: #fff;
}

.section--dark {
  background: linear-gradient(135deg, #1f373d 0%, #2a4b52 100%);
  color: #fff;
}

.section--dark .eyebrow {
  color: #a5c9ce;
}

.section--dark .section__lead {
  color: rgba(255, 255, 255, 0.85);
}

/* Video Section Styles */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 1rem;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: contain;
}

.video-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #fff;
}

.video-card p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.section__header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color:  #233e45;
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.section__lead {
  margin: 0.6rem 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card, .service-card, .contact-card, .stat-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.info-card__icon, .service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
}

.gradient-1 { background: linear-gradient(135deg, #0acffe, #495aff); }
.gradient-2 { background: linear-gradient(135deg, #f8367c, #f9d423); }
.gradient-3 { background: linear-gradient(135deg, #3ab5b0, #3d99be); }
.gradient-4 { background: linear-gradient(135deg, #9b5de5, #f15bb5); }
.gradient-5 { background: linear-gradient(135deg, #2193b0, #6dd5ed); }

.service-card__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin: 0;
}

.accordion details {
  border: 1px solid rgba(15, 27, 61, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  background: #fafcff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.accordion details[open] {
  border-color: rgba(31, 55, 61, 0.3);
  box-shadow: 0 10px 25px rgba(31, 55, 61, 0.08);
}

.accordion p {
  margin: 0.5rem 0 0.6rem;
  color: var(--muted);
}

.inline-link {
  color: var(--primary);
  font-weight: 700;
}

.stats {
  align-items: stretch;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.stat-card .label {
  margin: 0;
  color: var(--muted);
}

.stat-card strong {
  font-size: 2.6rem;
}

.stat-card .plus {
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.8rem;
  color: var(--text);
  font-weight: 600;
}

.contact-list i {
  color: #fff;
  margin-left: 0.35rem;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

.section::after {
  content: "";
  position: absolute;
  inset: 10% 8% auto auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(31, 55, 61, 0.12), transparent 50%);
  z-index: -1;
}

.section--light::after {
  background: radial-gradient(circle, rgba(165, 201, 206, 0.12), transparent 50%);
}

.floating-shape {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  z-index: -1;
}

.shape-1 {
  top: 5%;
  left: 5%;
  background: #a5c9ce;
}

.shape-2 {
  bottom: 8%;
  right: 12%;
  background: #7ba8af;
}

[data-animate] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-up"] {
  transform: translateY(28px);
}

[data-animate="fade-right"] {
  transform: translateX(36px);
}

[data-animate="fade-left"] {
  transform: translateX(-36px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

details[open] .accordion__content {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 7vw 3rem;
  text-align: center;
  color: #fff;
}

.page-header__content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0;
  color: #fff;
}

.page-header .subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0.5rem auto;
}

/* Blog List Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(31, 55, 61, 0.15);
}

.blog-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-card__category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(31, 55, 61, 0.95);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__content time {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.blog-card__content h2 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-card__content h2 a {
  color: var(--text);
  transition: color 0.3s ease;
}

.blog-card__content h2 a:hover {
  color: var(--primary);
}

.blog-card__content p {
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card__link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.blog-card__link:hover {
  gap: 0.7rem;
}

/* Blog Article Styles */
.blog-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 7vw 4rem;
}

.blog-article__header {
  margin-bottom: 2rem;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.back-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.back-link:hover {
  gap: 0.7rem;
}

.blog-article__category {
  background: rgba(31, 55, 61, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-article__header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 1rem 0;
  line-height: 1.3;
}

.blog-article__lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 1rem 0;
}

.blog-article__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0;
}

.blog-article__author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(31, 55, 61, 0.2);
}

.blog-article__author strong {
  display: block;
  margin-bottom: 0.2rem;
}

.blog-article__author p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-article__image {
  margin: 2rem 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-article__image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article__content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-article__content section {
  margin: 2.5rem 0;
}

.blog-article__content h2 {
  margin: 2rem 0 1rem;
  color: var(--text);
  font-size: 1.8rem;
}

.blog-article__content h3 {
  margin: 1.5rem 0 0.8rem;
  color: var(--text);
}

.blog-article__content p {
  margin: 1rem 0;
  color: var(--muted);
}

.blog-article__content ul, .blog-article__content ol {
  margin: 1rem 0;
  padding-right: 1.5rem;
}

.blog-article__content li {
  margin: 0.6rem 0;
  color: var(--muted);
}

.highlight-box {
  background: linear-gradient(135deg, rgba(31, 55, 61, 0.08), rgba(165, 201, 206, 0.08));
  border-right: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.highlight-box h3 {
  margin-top: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tip-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.tip-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.tip-card h4 {
  margin: 0.5rem 0;
  color: var(--text);
}

.tip-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Related Articles */
.related-articles {
  max-width: 1200px;
  margin: 0 auto;
}

.related-articles h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h3 {
  padding: 1rem;
  margin: 0;
  font-size: 1.1rem;
}

.related-card a {
  color: var(--text);
  transition: color 0.3s ease;
}

.related-card a:hover {
  color: var(--primary);
}

/* Contact Page Styles */
.contact-page-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-block {
  background: var(--card);
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-right: 4px solid var(--primary);
}

.contact-info-block h3 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info-block p {
  margin: 0.5rem 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-info-block a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-block a:hover {
  color: var(--primary);
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted) !important;
  margin-top: 0.5rem !important;
}

.contact-social-block {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: #fff;
}

.contact-social-block h3 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-links-block {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  padding: 0.8rem 1rem;
  background: rgba(31, 55, 61, 0.05);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.contact-link i {
  color: var(--primary);
  width: 20px;
}

.contact-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(-5px);
}

.contact-link:hover i {
  color: #fff;
}

.contact-form-area {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-form-area h2 {
  margin-top: 0;
  color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-description {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary);
  width: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  border: 2px solid rgba(31, 55, 61, 0.2);
  border-radius: 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 55, 61, 0.1);
}

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

.checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  font-weight: 400 !important;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  width: 100%;
}


/* FAQ Styles */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(31, 55, 61, 0.12);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-item summary {
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 60px rgba(31, 55, 61, 0.25);
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-box__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cta-box .btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
  background: var(--text);
  color: #fff;
  padding: 2rem 7vw;
  margin-top: 4rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__left {
  flex: 1;
}

.footer__left p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__links a:hover {
  color: var(--primary-light);
}

.footer__links span {
  color: rgba(255, 255, 255, 0.3);
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(31, 55, 61, 0.4);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .navbar__menu {
    position: fixed;
    top: 65px;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .navbar__menu.active {
    transform: translateX(0);
  }

  .navbar__menu li {
    width: 100%;
    text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .navbar__toggle {
    display: flex;
  }

 

  .hero-content-section {
    padding: 3rem 5vw;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__image {
    order: -1;
  }

 
  
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero__image img{
    width:300px;
    height:auto;
  }
  
  .hero__card {
    padding: 0.4rem 2rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-form-area {
    padding: 2rem 1.5rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .cta-box__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-box__actions .btn {
    width: 100%;
  }

  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    width: 100%;
  }
  .btn {
    flex: 1;
    justify-content: center;
  }
  
  .navbar__container {
    padding: 0.8rem 5vw;
  }

  .section {
    padding: 2.5rem 5vw;
  }

  .hero {
    min-height: 30vh;
  }

  .hero-content-section {
    padding: 3rem 5vw;
  }

  .page-header {
    padding: 4rem 5vw 2.5rem;
  }

  .blog-article {
    padding: 2rem 5vw;
  }

  .blog-article__content {
    font-size: 1rem;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer__left {
    width: 100%;
  }

  .footer__links {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }

  .blog-card__image {
    height: 200px;
  }

  .info-card, .service-card {
    padding: 1.2rem;
  }
}
