/* =========================================================
   Mala Akbari — Party Dining & Celebrations
   style.css
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --berry: #C2185B;          /* festive primary */
  --berry-dark: #8E0E40;
  --berry-soft: #fbe2ec;
  --saffron: #FF9E1B;        /* warm food amber */
  --saffron-dark: #e8830a;
  --gold: #E8B04B;
  --plum: #2A0E1E;           /* deep text / dark bg */
  --plum-soft: #5a3a48;
  --cream: #FFF7F0;
  --cream-2: #FBEDE2;
  --white: #ffffff;
  --line: #efd9cb;

  --shadow-sm: 0 4px 14px rgba(42, 14, 30, .08);
  --shadow-md: 0 14px 34px rgba(42, 14, 30, .12);
  --shadow-lg: 0 24px 56px rgba(42, 14, 30, .18);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  --ease: cubic-bezier(.2, .7, .2, 1);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--plum);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -.01em;
}

a { text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }

p { margin-bottom: 1rem; }

.section { padding: 92px 0; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--berry);
  background: var(--berry-soft);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--white); background: rgba(255, 255, 255, .18); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-sub { color: var(--plum-soft); font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 50px; padding: 12px 26px; transition: all .3s var(--ease); }
.btn i { margin-right: 6px; }

.btn-brand {
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 8px 20px rgba(194, 24, 91, .28);
}
.btn-brand:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(194, 24, 91, .4); }

.btn-call {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--plum);
  border: none;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 158, 27, .3);
}
.btn-call:hover { color: var(--plum); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(255, 158, 27, .45); }

.btn-whatsapp { background: #25D366; color: #fff; border: none; }
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-3px); }

.btn-xl { padding: 16px 38px; font-size: 1.15rem; }
.btn-outline-light:hover { color: var(--berry); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--plum);
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  padding: 9px 0;
}
.topbar-info { display: flex; gap: 26px; }
.topbar-info li i { color: var(--saffron); margin-right: 6px; }
.topbar-social a {
  color: rgba(255, 255, 255, .8);
  margin-left: 14px;
  font-size: 1rem;
}
.topbar-social a:hover { color: var(--saffron); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.navbar { padding: 14px 0; }

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--berry), var(--saffron));
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--plum);
}
.brand-text small {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--berry);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--plum);
  padding: 8px 16px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; bottom: 2px;
  width: 0; height: 2px;
  background: var(--berry);
  transition: width .3s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--berry); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }

.navbar-toggler { border: none; font-size: 1.7rem; color: var(--berry); padding: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero .hero-img {
  height: 88vh;
  min-height: 520px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(42, 14, 30, .82) 0%, rgba(42, 14, 30, .55) 45%, rgba(42, 14, 30, .15) 100%);
}
.hero-content { max-width: 660px; color: var(--white); }
.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.carousel-indicators [data-bs-target] {
  width: 38px; height: 5px; border-radius: 50px;
  border: none; background: rgba(255, 255, 255, .5);
}
.carousel-indicators .active { background: var(--saffron); }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: .8; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-section { background: var(--cream); }
.about-image { position: relative; }
.about-image img {
  border-radius: 200px 200px var(--r-lg) var(--r-lg); /* arched top — signature motif */
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  right: -10px; bottom: 30px;
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num { display: block; font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: .82rem; line-height: 1.3; display: block; margin-top: 6px; }

.lead-text { font-size: 1.18rem; color: var(--plum); font-weight: 500; }
.about-list { margin: 22px 0 28px; }
.about-list li { margin-bottom: 12px; font-weight: 500; }
.about-list li i { color: var(--berry); margin-right: 10px; font-size: 1.15rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-section { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img { overflow: hidden;  }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 24px 24px 28px; }
.service-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service-body p { color: var(--plum-soft); font-size: .96rem; margin-bottom: 18px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: var(--cream); }
.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 20px;
  font-size: 1.9rem;
  color: var(--berry);
  background: var(--berry-soft);
  transition: all .35s var(--ease);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--berry), var(--saffron));
  color: var(--white);
  transform: rotate(-6deg);
}
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.why-card p { color: var(--plum-soft); font-size: .95rem; margin-bottom: 0; }

/* =========================================================
   COUNTER
   ========================================================= */
.counter-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--plum), #4a1730);
  color: var(--white);
  position: relative;
  overflow-x: hidden;
}
.counter-box { padding: 10px; }
.counter-box .counter,
.counter-box .counter-plus {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.counter-box p { margin: 12px 0 0; color: rgba(255, 255, 255, .85); font-weight: 500; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-section { background: var(--cream); }
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 44px 28px 32px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--berry-soft);
}
.step-icon {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--saffron));
  box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step-card p { color: var(--plum-soft); font-size: .96rem; margin-bottom: 0; }

/* =========================================================
   BOOK A TABLE BAND (CALL ONLY)
   ========================================================= */
.book-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--berry), var(--saffron));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.book-band::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.book-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 12px; }
.book-band p { color: rgba(255, 255, 255, .92); margin-bottom: 0; max-width: 560px; }
.book-band .btn-light { color: var(--berry); font-weight: 700; }
.book-band .btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.gallery-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 2.6rem;
  font-weight: 300;
  color: #fff;
  background: rgba(194, 24, 91, .55);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-section { background: var(--cream); }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 44px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.quote-mark { font-size: 3rem; color: var(--berry-soft); line-height: 1; }
.testimonial-card p {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  margin: 14px 0 26px;
}
.testimonial-author { margin-bottom: 10px; }
.t-name { display: block; font-weight: 700; font-size: 1.1rem; color: var(--berry); }
.t-role { font-size: .9rem; color: var(--plum-soft); }
.t-stars { color: var(--gold); font-size: 1rem; }
.testimonial-section .carousel-control-prev,
.testimonial-section .carousel-control-next { width: 5%; filter: invert(1); opacity: .55; }
.testimonial-section .carousel-control-prev { left: -10px; }
.testimonial-section .carousel-control-next { right: -10px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--r-sm) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--plum);
  padding: 20px 22px;
  background: var(--white);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--berry);
  background: var(--berry-soft);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body { color: var(--plum-soft); padding: 4px 22px 22px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: var(--cream); }
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.contact-line { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-ic {
  flex: 0 0 50px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--saffron));
}
.contact-line h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-line p { color: var(--plum-soft); margin-bottom: 0; }
.contact-line a { color: var(--plum-soft); }
.contact-line a:hover { color: var(--berry); }
.contact-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-map {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--plum); color: rgba(255, 255, 255, .72); padding: 70px 0 0; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-text { color: var(--white); }
.footer-about { font-size: .95rem; margin-bottom: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .85);
  margin-right: 8px;
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--berry); color: #fff; transform: translateY(-3px); }
.site-footer h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 18px;background: linear-gradient(135deg, var(--berry), var(--berry-dark));
    border-top-right-radius: 20px;
    padding: 4px; }
.footer-links li, .footer-contact li { margin-bottom: 11px;border-bottom: 1px dashed; }
.footer-links a { color: rgba(255, 255, 255, .72); }
.footer-links a:hover { color: var(--saffron); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; font-size: .92rem; }
.footer-contact li i { color: var(--saffron); margin-top: 5px; }
.footer-contact a { color: rgba(255, 255, 255, .72); }
.footer-contact a:hover { color: var(--saffron); }
.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   FLOATING ICONS + SCROLL TOP
   ========================================================= */
.floating-icons {
  position: fixed;
  right: 18px; bottom: 118px;
  z-index: 1040;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease);
}
.float-btn:hover { color: #fff; transform: scale(1.1); }
.float-whatsapp { background: #25D366; animation: pulse 2.2s infinite; }
.float-call { background: var(--berry); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top {
  position: fixed;
  right: 18px; bottom: 10px;
  width: 46px; height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: 1.1rem;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s var(--ease);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--berry); }

/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section { padding: 70px 0; }
  .navbar-collapse {
    background: var(--white);
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-md);
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar .btn-brand { margin-top: 10px; display: inline-block; }
  .about-image img { height: 440px; }
  .about-badge { right: 10px; }
  .hero .hero-img { height: 70vh; }
  .testimonial-section .carousel-control-prev,
  .testimonial-section .carousel-control-next { display: none; }
}

@media (max-width: 767.98px) {
	.cu-dsd-nn{
		display:none!important;
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
  .section { padding: 56px 0;overflow-x: hidden; }
  .section-head { margin-bottom: 40px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(42, 14, 30, .9) 0%, rgba(42, 14, 30, .5) 100%); }
  .hero-content { text-align: center; margin: 0 auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero .hero-img { height: 78vh; min-height: 460px; }
  .about-image img { height: 360px; border-radius: 140px 140px var(--r-md) var(--r-md); }
  .gallery-item img { height: 160px; }
  .testimonial-card { padding: 36px 24px 30px; }
  .testimonial-card p { font-size: 1.1rem; }
  .contact-info { padding: 28px; }
  .book-band { text-align: center; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 575.98px) {
  .brand-text { font-size: 1.2rem; }
  .service-img { }
  .hero-content h1 { font-size: 2rem; }
}

@media(max-width:424px)
{
	.cu-lg-wdth{
		width:290px;
	}
}
@media(max-width:374px)
{
	.cu-lg-wdth{
		width:240px;
	}
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 40px 32px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info-card p.desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent2);
}

.ci-text .label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.ci-text .val {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(13, 71, 161, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #f9fbff;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 182, 246, 0.12);
  background: var(--white);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.25);
}


/* Success message */
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
}
