/*==================================================
SWAADISHT MITHILA CONTACT PAGE
==================================================*/

:root {
  --sm-primary: #7a1f1f;
  --sm-secondary: #d89b2b;
  --sm-dark: #222;
  --sm-light: #ffffff;
  --sm-gray: #666;
  --sm-bg: #fffaf5;

  --sm-radius: 24px;

  --sm-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);

  --sm-transition: 0.35s ease;
}

/*==================================================
RESET
==================================================*/

.sm-contact-wrapper {
  width: min(94%, 1400px);

  margin: auto;
}

.sm-contact-hero *,
.sm-contact-info *,
.sm-contact-form-section *,
.sm-contact-map-section *,
.sm-contact-faq-section *,
.sm-contact-cta * {
  box-sizing: border-box;
}

.sm-contact-hero img,
.sm-contact-info img,
.sm-contact-form-section img,
.sm-contact-map-section img,
.sm-contact-faq-section img,
.sm-contact-cta img {
  width: 100%;

  display: block;
}

/*==================================================
COMMON BUTTONS
==================================================*/

.sm-contact-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 16px 34px;

  border-radius: 50px;

  background: linear-gradient(135deg, #7a1f1f, #a62c2c);

  color: #fff;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(122, 31, 31, 0.25);
}

.sm-contact-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 25px 50px rgba(122, 31, 31, 0.3);
}

.sm-contact-btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 16px 34px;

  border-radius: 50px;

  border: 2px solid var(--sm-primary);

  color: var(--sm-primary);

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s;

  background: #fff;
}

.sm-contact-btn-outline:hover {
  background: var(--sm-primary);

  color: #fff;
}

/*==================================================
HERO
==================================================*/

.sm-contact-hero {
  position: relative;

  padding: 120px 0;

  background: linear-gradient(135deg, #fff8ef, #ffffff);

  overflow: hidden;
}

.sm-contact-overlay {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at top right,

      rgba(216, 155, 43, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,

      rgba(122, 31, 31, 0.08),
      transparent 40%
    );

  pointer-events: none;
}

.sm-contact-grid {
  display: grid;

  grid-template-columns: 1fr 560px;

  gap: 70px;

  align-items: center;

  position: relative;

  z-index: 2;
}

/*==================================================
LEFT
==================================================*/

.sm-contact-tag {
  display: inline-block;

  padding: 10px 24px;

  background: #fff;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  color: var(--sm-secondary);

  box-shadow: var(--sm-shadow);

  margin-bottom: 28px;
}

.sm-contact-left h1 {
  font-size: 64px;

  line-height: 1.1;

  font-weight: 800;

  margin-bottom: 25px;

  color: #222;
}

.sm-contact-left h1 span {
  color: var(--sm-primary);
}

.sm-contact-left p {
  font-size: 18px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 35px;

  max-width: 600px;
}

.sm-contact-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

/*==================================================
RIGHT
==================================================*/

.sm-contact-image {
  position: relative;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.sm-contact-image img {
  height: 650px;

  object-fit: cover;

  transition: 0.5s;
}

.sm-contact-image:hover img {
  transform: scale(1.08);
}

/*==================================================
FLOATING CARD
==================================================*/

.sm-contact-floating {
  position: absolute;

  bottom: 35px;

  left: 35px;

  background: #fff;

  padding: 22px 26px;

  border-radius: 20px;

  box-shadow: var(--sm-shadow);
}

.sm-contact-floating h3 {
  font-size: 30px;

  margin-bottom: 5px;

  color: var(--sm-primary);
}

.sm-contact-floating span {
  font-size: 15px;

  color: #777;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .sm-contact-grid {
    grid-template-columns: 1fr;
  }

  .sm-contact-left {
    text-align: center;
  }

  .sm-contact-left p {
    margin: auto;

    margin-bottom: 35px;
  }

  .sm-contact-buttons {
    justify-content: center;
  }

  .sm-contact-image {
    max-width: 700px;

    margin: auto;
  }
}

@media (max-width: 768px) {
  .sm-contact-hero {
    padding: 80px 0;
  }

  .sm-contact-left h1 {
    font-size: 40px;
  }

  .sm-contact-left p {
    font-size: 16px;
  }

  .sm-contact-buttons {
    flex-direction: column;
  }

  .sm-contact-buttons a {
    width: 100%;
  }

  .sm-contact-image img {
    height: 380px;
  }

  .sm-contact-floating {
    left: 20px;

    bottom: 20px;

    padding: 18px;
  }

  .sm-contact-floating h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sm-contact-left h1 {
    font-size: 32px;
  }

  .sm-contact-tag {
    font-size: 12px;
  }

  .sm-contact-image img {
    height: 300px;
  }

  .sm-contact-floating {
    position: relative;

    left: auto;

    bottom: auto;

    margin: 20px;
  }
}
/*==================================================
CONTACT INFO SECTION
==================================================*/

.sm-contact-info {
  padding: 110px 0;

  background: #fff;

  position: relative;
}

.sm-contact-heading {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.sm-contact-heading span {
  display: inline-block;

  padding: 10px 24px;

  background: #fff4e6;

  color: var(--sm-secondary);

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.sm-contact-heading h2 {
  font-size: 50px;

  font-weight: 800;

  color: var(--sm-dark);

  margin-bottom: 20px;

  line-height: 1.2;
}

.sm-contact-heading p {
  font-size: 17px;

  color: #777;

  line-height: 1.8;
}

/*==================================================
GRID
==================================================*/

.sm-contact-card-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/*==================================================
CARD
==================================================*/

.sm-contact-card {
  background: #fff;

  border-radius: 28px;

  padding: 35px 30px;

  text-align: center;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;

  position: relative;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sm-contact-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, var(--sm-primary), var(--sm-secondary));

  transform: scaleX(0);

  transition: 0.35s;
}

.sm-contact-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.sm-contact-card:hover::before {
  transform: scaleX(1);
}

/*==================================================
ICON
==================================================*/

.sm-contact-icon {
  width: 90px;

  height: 90px;

  margin: 0 auto 25px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, var(--sm-primary), var(--sm-secondary));

  color: #fff;

  font-size: 34px;

  transition: 0.35s;
}

.sm-contact-card:hover .sm-contact-icon {
  transform: rotate(10deg) scale(1.08);
}

/*==================================================
TEXT
==================================================*/

.sm-contact-details span {
  display: block;

  font-size: 13px;

  font-weight: 700;

  color: var(--sm-secondary);

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.sm-contact-details h3 {
  font-size: 24px;

  font-weight: 700;

  color: #222;

  margin-bottom: 12px;
}

.sm-contact-details p {
  color: #666;

  line-height: 1.7;

  font-size: 15px;
}

.sm-contact-details a {
  display: inline-block;

  margin-top: 10px;

  color: var(--sm-primary);

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s;
}

.sm-contact-details a:hover {
  color: var(--sm-secondary);
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 1200px) {
  .sm-contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sm-contact-info {
    padding: 80px 0;
  }

  .sm-contact-heading h2 {
    font-size: 36px;
  }

  .sm-contact-card-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .sm-contact-card {
    padding: 30px 22px;
  }

  .sm-contact-icon {
    width: 75px;

    height: 75px;

    font-size: 28px;
  }

  .sm-contact-details h3 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .sm-contact-heading h2 {
    font-size: 30px;
  }

  .sm-contact-heading p {
    font-size: 15px;
  }

  .sm-contact-card {
    border-radius: 22px;
  }
}

/*==================================================
CONTACT FORM SECTION
==================================================*/

.sm-contact-form-section{
    padding:120px 0;
    background:linear-gradient(180deg,#fff,#fffaf5);
    position:relative;
    overflow:hidden;
}

.sm-contact-form-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(216,155,43,.08);
    top:-220px;
    right:-220px;
}

.sm-contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

/*=============================
LEFT IMAGE
=============================*/

.sm-contact-form-image{
    position:relative;
}

.sm-contact-form-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.sm-contact-image-card{
    position:absolute;
    left:30px;
    bottom:30px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:20px;
    max-width:320px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.sm-contact-image-card h3{
    color:var(--sm-primary);
    font-size:26px;
    margin-bottom:10px;
    font-weight:700;
}

.sm-contact-image-card p{
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/*=============================
FORM BOX
=============================*/

.sm-contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.sm-contact-small-title{
    display:inline-block;
    padding:10px 20px;
    background:#fff4e6;
    color:var(--sm-secondary);
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.sm-contact-form-box h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
    font-weight:800;
}

.sm-contact-form-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

/*=============================
FORM
=============================*/

.sm-contact-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.sm-contact-group{
    margin-bottom:22px;
}

.sm-contact-group label{
    display:block;
    margin-bottom:10px;
    color:#333;
    font-weight:600;
    font-size:15px;
}

.sm-contact-group input,
.sm-contact-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:15px;
    outline:none;
    font-size:15px;
    font-family:inherit;
    transition:.3s;
    background:#fafafa;
}

.sm-contact-group textarea{
    resize:vertical;
    min-height:160px;
}

.sm-contact-group input:focus,
.sm-contact-group textarea:focus{
    border-color:var(--sm-secondary);
    background:#fff;
    box-shadow:0 0 0 4px rgba(216,155,43,.15);
}

/*=============================
BUTTON
=============================*/

.sm-contact-submit{
    width:100%;
    border:none;
    cursor:pointer;
    padding:18px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--sm-primary),#a52d2d);
    color:#fff;
    font-size:17px;
    font-weight:700;
    transition:.35s;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    box-shadow:0 15px 35px rgba(122,31,31,.25);
}

.sm-contact-submit:hover{
    transform:translateY(-4px);
    box-shadow:0 25px 50px rgba(122,31,31,.35);
}

.sm-contact-submit i{
    font-size:18px;
}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:1200px){

.sm-contact-form-grid{
    grid-template-columns:1fr;
}

.sm-contact-form-image{
    max-width:700px;
    margin:auto;
}

}

@media(max-width:768px){

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

.sm-contact-form-box{
    padding:35px 25px;
}

.sm-contact-form-box h2{
    font-size:32px;
}

.sm-contact-row{
    grid-template-columns:1fr;
}

.sm-contact-form-image img{
    height:400px;
}

.sm-contact-image-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin:20px;
    max-width:calc(100% - 40px);
}

}

@media(max-width:480px){

.sm-contact-form-box{
    padding:25px 18px;
}

.sm-contact-form-box h2{
    font-size:28px;
}

.sm-contact-form-box p{
    font-size:15px;
}

.sm-contact-group input,
.sm-contact-group textarea{
    padding:14px 16px;
}

.sm-contact-submit{
    font-size:16px;
}

.sm-contact-form-image img{
    height:300px;
}

}
/*==================================================
GOOGLE MAP SECTION
==================================================*/

.sm-contact-map-section{

    padding:120px 0;

    background:#fff;

    position:relative;

    overflow:hidden;

}

.sm-contact-map-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    align-items:start;

}

/*==============================
GOOGLE MAP
==============================*/

.sm-contact-map{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    height:100%;

    min-height:650px;

}

.sm-contact-map iframe{

    width:100%;

    height:100%;

    border:none;

    display:block;

}

/*==============================
SUPPORT PANEL
==============================*/

.sm-contact-support{

    background:#fffaf6;

    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.sm-contact-support h2{

    font-size:40px;

    font-weight:800;

    margin:18px 0;

    color:#222;

}

.sm-contact-support p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

/*==============================
SUPPORT CARD
==============================*/

.sm-support-card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

    text-decoration:none;

    background:#fff;

    border-radius:20px;

    padding:20px;

    margin-bottom:20px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border:1px solid rgba(0,0,0,.05);

}

.sm-support-card:last-child{

    margin-bottom:0;

}

.sm-support-card:hover{

    transform:translateX(10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

/*==============================
ICON
==============================*/

.sm-support-icon{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#7A1F1F,#D89B2B);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.sm-support-card h3{

    font-size:20px;

    color:#222;

    margin-bottom:6px;

}

.sm-support-card span{

    color:#777;

    font-size:14px;

}

.sm-support-card .fa-arrow-right{

    font-size:18px;

    color:#7A1F1F;

    transition:.3s;

}

.sm-support-card:hover .fa-arrow-right{

    transform:translateX(6px);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1100px){

.sm-contact-map-grid{

grid-template-columns:1fr;

}

.sm-contact-map{

min-height:500px;

}

}

@media(max-width:768px){

.sm-contact-map-section{

padding:80px 0;

}

.sm-contact-support{

padding:30px 22px;

}

.sm-contact-support h2{

font-size:32px;

}

.sm-support-card{

padding:18px;

}

.sm-support-icon{

width:60px;

height:60px;

min-width:60px;

font-size:24px;

}

}

@media(max-width:480px){

.sm-contact-map{

min-height:320px;

}

.sm-support-card{

flex-wrap:wrap;

justify-content:flex-start;

}

.sm-support-card .fa-arrow-right{

display:none;

}

.sm-support-card h3{

font-size:18px;

}

.sm-support-card span{

font-size:13px;

}

}
/*==================================================
FAQ SECTION
==================================================*/

.sm-contact-faq-section{

    padding:120px 0;

    background:linear-gradient(180deg,#fffaf5,#ffffff);

    position:relative;

    overflow:hidden;

}

.sm-contact-faq-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(216,155,43,.08);

    left:-220px;

    bottom:-220px;

}

/*==============================
HEADING
==============================*/

.sm-contact-faq-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.sm-contact-faq-heading span{

    display:inline-block;

    padding:10px 24px;

    background:#fff3e5;

    color:#D89B2B;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.sm-contact-faq-heading h2{

    font-size:50px;

    font-weight:800;

    color:#222;

    margin-bottom:20px;

}

.sm-contact-faq-heading p{

    color:#777;

    font-size:17px;

    line-height:1.8;

}

/*==============================
GRID
==============================*/

.sm-contact-faq-grid{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:60px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*==============================
IMAGE
==============================*/

.sm-contact-faq-image{

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.10);

}

.sm-contact-faq-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    transition:.5s;

}

.sm-contact-faq-image:hover img{

    transform:scale(1.08);

}

/*==============================
FAQ
==============================*/

.sm-contact-faq-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.sm-faq-item{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.sm-faq-item:hover{

    transform:translateY(-5px);

}

.sm-faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    cursor:pointer;

}

.sm-faq-question h3{

    font-size:20px;

    font-weight:700;

    color:#222;

    padding-right:20px;

}

.sm-faq-question i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#7A1F1F;

    color:#fff;

    transition:.35s;

}

/*==============================
ANSWER
==============================*/

.sm-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.sm-faq-answer p{

    padding:0 25px 25px;

    color:#666;

    line-height:1.8;

}

/*==============================
ACTIVE
==============================*/

.sm-faq-item.active .sm-faq-answer{

    max-height:250px;

}

.sm-faq-item.active .sm-faq-question i{

    transform:rotate(45deg);

    background:#D89B2B;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1100px){

.sm-contact-faq-grid{

grid-template-columns:1fr;

}

.sm-contact-faq-image{

max-width:700px;

margin:auto;

}

}

@media(max-width:768px){

.sm-contact-faq-section{

padding:80px 0;

}

.sm-contact-faq-heading h2{

font-size:34px;

}

.sm-contact-faq-image img{

height:420px;

}

.sm-faq-question{

padding:20px;

}

.sm-faq-question h3{

font-size:18px;

}

}

@media(max-width:480px){

.sm-contact-faq-image img{

height:300px;

}

.sm-contact-faq-heading h2{

font-size:28px;

}

.sm-contact-faq-heading p{

font-size:15px;

}

.sm-faq-question{

padding:18px;

}

.sm-faq-question h3{

font-size:16px;

}

.sm-faq-answer p{

padding:0 18px 18px;

font-size:15px;

}

}