
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');


:root{
--primary-blue:#2F8FFF;
--secondary-blue:#4DA3FF;

--dark:#0A0A0A;
--dark-secondary:#121212;

--white:#FFFFFF;
--light:#F8FAFC;

--gray:#64748B;
--border:#E2E8F0;

--shadow-sm:
0 5px 15px rgba(0,0,0,.08);

--shadow-md:
0 10px 30px rgba(0,0,0,.12);

--shadow-lg:
0 25px 60px rgba(0,0,0,.15);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#fff;
color:#111827;
overflow-x:hidden;
line-height:1.8;
}

/* ==========================
TYPOGRAPHY
========================== */

h1,h2,h3,h4,h5,h6{
font-family:'Cormorant Garamond',serif;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

/* ==========================
CONTAINER
========================== */

.container{
width:100%;
max-width:1300px;
margin:auto;
padding:0 25px;
}

/* ==========================
HEADER
========================== */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;

background:rgba(255,255,255,.08);

backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border-bottom:
1px solid rgba(255,255,255,.15);

transition:.4s ease;

}

.header.scrolled{
background:rgba(10,10,10,.85);


box-shadow:
0 15px 40px rgba(0,0,0,.2);


}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;


padding:18px 40px;


}

.logo img{
width:80px;
transition:.4s ease;
}

.logo img:hover{
transform:scale(1.05);
}

/* ==========================
DESKTOP NAVIGATION
========================== */

.desktop-nav{
display:flex;
gap:35px;
}

.nav-link{


color:white;

font-size:.82rem;

font-weight:600;

letter-spacing:1px;

position:relative;

transition:.3s ease;


}

.nav-link:hover,
.nav-link.active{


color:var(--primary-blue);


}

.nav-link::after{


content:'';

position:absolute;

bottom:-8px;
left:0;

width:0;
height:2px;

background:var(--primary-blue);

transition:.3s ease;


}

.nav-link:hover::after,
.nav-link.active::after{


width:100%;


}

/* ==========================
HEADER RIGHT
========================== */

.header-right{


display:flex;
align-items:center;
gap:20px;


}

.blog-btn{


padding:12px 22px;

border:1px solid var(--primary-blue);

border-radius:50px;

color:white;

font-size:.8rem;

font-weight:600;

transition:.4s ease;


}

.blog-btn:hover{


background:var(--primary-blue);

transform:translateY(-2px);


}

/* ==========================
THEME TOGGLE
========================== */

.theme-toggle{


background:none;
border:none;

cursor:pointer;

font-size:1.2rem;

color:white;


}

/* ==========================
MOBILE MENU BUTTON
========================== */

.menu-toggle{


display:none;

flex-direction:column;

gap:5px;

background:none;
border:none;

cursor:pointer;


}

.menu-toggle span{


width:25px;
height:2px;

background:white;


}

/* ==========================
MOBILE NAVIGATION
========================== */

.mobile-menu{


position:fixed;

top:80px;
left:-100%;

width:100%;
height:auto;

background:#0A0A0A;

transition:.4s ease;

z-index:999;


}

.mobile-menu.active{


left:0;


}

.mobile-nav-link{


display:block;

padding:18px 30px;

color:white;

border-bottom:
1px solid rgba(255,255,255,.08);


}

/* ==========================
HERO SECTION
========================== */

.hero{


position:relative;

height:100vh;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

overflow:hidden;


}

.hero-background{


position:absolute;

inset:0;

background-size:cover;
background-position:center;

animation:
heroZoom 18s ease-in-out infinite alternate;


}

.hero-overlay{


position:absolute;

inset:0;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.75)
);


}

.hero-content{


position:relative;

z-index:2;

max-width:900px;

padding:20px;

color:white;

animation:
heroFade 1.4s ease;


}

.hero-title{


font-size:
clamp(3rem,7vw,5.5rem);

font-weight:700;

line-height:1.1;

margin-bottom:15px;


}

.hero-subtitle{

font-size:1.25rem;

color:rgba(255,255,255,.9);

margin-bottom:35px;

letter-spacing:.5px;


}

/* ==========================
CTA BUTTON
========================== */

.cta-button{


display:inline-block;

padding:16px 38px;

background:var(--primary-blue);

color:white;

border-radius:50px;

font-weight:600;

transition:.4s ease;


}

.cta-button:hover{


transform:
translateY(-4px);

box-shadow:
0 15px 35px rgba(47,143,255,.35);


}

/* ==========================
SOCIAL ICONS
========================== */

.social-icons{


margin-top:40px;

display:flex;
justify-content:center;
gap:20px;

}

.social-link{


width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:
rgba(255,255,255,.12);

backdrop-filter:blur(10px);

color:white;

font-size:1.3rem;

transition:.4s ease;


}

.social-link:hover{


background:var(--primary-blue);

transform:
translateY(-8px)
scale(1.08);


}

/* ==========================
SCROLL INDICATOR
========================== */

.scroll-indicator{


position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

z-index:2;

color:white;

font-size:2rem;

animation:
floating 2s ease infinite;


}

/* ==========================
ANIMATIONS
========================== */

@keyframes heroZoom{


from{
    transform:scale(1);
}

to{
    transform:scale(1.08);
}


}

@keyframes heroFade{


from{
    opacity:0;
    transform:translateY(50px);
}

to{
    opacity:1;
    transform:translateY(0);
}


}

@keyframes floating{


0%{
    transform:translateY(0);
}

50%{
    transform:translateY(-10px);
}

100%{
    transform:translateY(0);
}


}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

.desktop-nav,
.blog-btn{

display:none;
}

.menu-toggle{

display:flex;
}
}

@media(max-width:768px){

.hero-title{
font-size:3rem;
}

.hero-subtitle{
font-size:1rem;
}

.header-container{
padding:15px 20px;
}

}
/* ====================================
   RESEARCH & PUBLICATIONS SECTION
==================================== */

.research-section{
    padding:120px 8%;
    background:var(--white);
}

.research-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.research-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.research-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--gold);
}

.research-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.research-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
    color:var(--navy);
}

.research-card p{
    color:var(--text-light);
    line-height:1.8;
}

/* ====================================
   ABOUT PREVIEW
==================================== */

.about-preview{
    padding:120px 8%;
    background:#f9fafc;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-content h2{
    font-size:3rem;
    margin-bottom:25px;
    color:var(--navy);
}

.about-content p{
    font-size:1.05rem;
    line-height:2;
    color:var(--text-light);
    margin-bottom:20px;
}

.read-more{
    display:inline-block;
    padding:14px 32px;
    background:var(--gold);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.read-more:hover{
    transform:translateY(-4px);
}

/* ====================================
   LATEST INSIGHTS
==================================== */

.news-section{
    padding:120px 8%;
    background:white;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.news-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
}

.news-card:hover{
    transform:translateY(-10px);
}

.news-date{
    color:var(--gold);
    font-weight:600;
    margin-bottom:15px;
}

.news-card h3{
    color:var(--navy);
    margin-bottom:15px;
}

.news-card p{
    color:var(--text-light);
    line-height:1.8;
}

.news-link{
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
}

/* ====================================
   SPEAKING & ENGAGEMENTS
==================================== */

.events-section{
    padding:120px 8%;
    background:#f7f9fc;
}

.events-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.event-card{
    display:flex;
    gap:30px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.event-card:hover{
    transform:translateX(10px);
}

.event-date{
    min-width:90px;
    text-align:center;
    background:var(--gold);
    color:white;
    border-radius:15px;
    padding:15px;
}

.date-day{
    display:block;
    font-size:2rem;
    font-weight:700;
}

.date-month{
    font-size:.9rem;
    letter-spacing:1px;
}

.event-info h3{
    color:var(--navy);
    margin-bottom:10px;
}

.event-location{
    color:var(--gold);
    margin-bottom:10px;
}

.event-desc{
    color:var(--text-light);
    line-height:1.8;
}

.event-link{
    display:inline-block;
    margin-top:15px;
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
}

/* ====================================
   FOOTER
==================================== */

.footer{
    background:var(--navy);
    color:white;
    padding:80px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:50px;
    margin-bottom:50px;
}

.footer-section h4{
    margin-bottom:20px;
    color:white;
}

.footer-section ul{
    list-style:none;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.footer-section a:hover{
    color:var(--gold);
    padding-left:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding-top:25px;
    color:rgba(255,255,255,.6);
}

/* ====================================
   PREMIUM HOVER EFFECTS
==================================== */

.book-card,
.news-card,
.research-card,
.event-card{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.book-card:hover,
.news-card:hover,
.research-card:hover,
.event-card:hover{
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.social-link{
    transition:.4s ease;
}

.social-link:hover{
    transform:translateY(-8px) scale(1.15);
}

/* ====================================
   SCROLL REVEAL
==================================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ====================================
   DARK MODE
==================================== */

html.dark{
    --white:#111827;
    --text-light:#d1d5db;
}

html.dark body{
    background:#0f172a;
    color:#f8fafc;
}

html.dark .research-card,
html.dark .news-card,
html.dark .event-card{
    background:#1e293b;
}

html.dark .about-preview,
html.dark .events-section{
    background:#111827;
}

html.dark .footer{
    background:#020617;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:992px){

.about-grid{
    grid-template-columns:1fr;
}

.about-content{
    text-align:center;
}

}

@media(max-width:768px){

.research-section,
.about-preview,
.news-section,
.events-section{
    padding:80px 6%;
}

.event-card{
    flex-direction:column;
}

.about-content h2{
    font-size:2.3rem;
}

}
.image-placeholder{
    width: 350px;
    margin-left: 60px;
}
.section-title{
    color: #4DA3FF;
    text-align: center;
    font-size: 50px;
}
.container-abt {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.about-hero-grid {
  display: flex;
  flex-direction: row; /* image + text side by side */
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

/* Image section */
.about-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-hero-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  object-fit: cover;
}

/* Text section */
.about-hero-text {
  flex: 2;
}

.about-hero-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-hero-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #fff;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-hero-grid {
    flex-direction: column; /* stack on mobile */
    text-align: center;
  }

  .about-hero-text {
    text-align: center;
  }
}

.stats-section {
  padding: 80px 20px;
  background: #0f172a; /* dark elegant background */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.stats-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Transparent glass cards */
.stat-card {
  flex: 1;
  min-width: 220px;
  padding: 30px 20px;
  text-align: center;

  background: rgba(255, 255, 255, 0.08); /* transparent effect */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
}

/* Numbers */
.stat-card h3 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Text */
.stat-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.section.impact {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}

.section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title styling */
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ffffff55;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* Glass content block */
.impact-text {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 25px;
  border-radius: 14px;
  margin-bottom: 18px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover effect */
.impact-text:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.section.books-category {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}

/* Container */
.section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

/* GRID */
.books-detailed-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* BOOK CARD */
.book-detailed {
  display: flex;
  gap: 25px;
  padding: 25px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  transition: transform 0.3s ease, background 0.3s ease;
}

.book-detailed:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
}

/* BOOK IMAGE */
.book-image-large {
  width: 180px;
  height: 240px;
  border-radius: 12px;
  flex-shrink: 0;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* DETAILS */
.book-details h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.book-details .meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.book-details .description {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

/* BOOK STATS */
.book-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.book-stats span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* BUTTON */
.buy-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;

  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.buy-btn:hover {
  background: #cbd5e1;
  transform: scale(1.05);
}

/* AWARDS GRID */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.award-item {
  padding: 20px;
  text-align: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;

  backdrop-filter: blur(10px);
}

.award-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.award-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .book-detailed {
    flex-direction: column;
    text-align: center;
  }

  .book-image-large {
    width: 100%;
    height: 260px;
  }

  .book-stats {
    justify-content: center;
  }
}
.blog-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}

.blog-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* BLOG CARD */
.blog-post {
  padding: 25px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  transition: transform 0.3s ease, background 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
}

/* DATE */
.post-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

/* TITLE */
.post-title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* EXCERPT */
.post-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  line-height: 1.6;
}

/* META */
.post-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.post-meta span {
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* READ MORE BUTTON */
.read-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  transition: 0.3s ease;
}

.read-more:hover {
  color: #cbd5e1;
  transform: translateX(5px);
}
.main-content {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}

/* SECTION BASE */
.section {
  padding: 90px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form-wrapper,
.contact-info-wrapper {
  padding: 30px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #fff;
  outline: none;

  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

/* BUTTON */
.submit-button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;

  border: none;
  cursor: pointer;

  background: #fff;
  color: #0f172a;

  font-weight: 600;
  transition: 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  background: #cbd5e1;
}

/* CONTACT INFO */
.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  padding: 6px 10px;
  font-size: 13px;
  text-decoration: none;

  color: #fff;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;

  transition: 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =========================
   FAQ SECTION
========================= */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 20px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(10px);
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* =========================
   NEWSLETTER
========================= */
.newsletter-section {
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;

  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.newsletter-form button {
  padding: 12px 18px;
  border-radius: 10px;
  border: none;

  background: #fff;
  color: #0f172a;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #cbd5e1;
}

.privacy-note {
  font-size: 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}