

/*-----------------------------------------------------------------------------------*/
/*	HEADER
/*-----------------------------------------------------------------------------------*/
header {
	position: relative;
	height:80px;
	background-color:#fff;
}


/* __________ Logo __________ */
.logo {float:left;}
.logo img {
	width: 200px;
}
.logo {
	margin-top: 15px;
}


.pull-right {
  float: right;
}


        .marquee {
            background: #c93c00;
            color: #ffffff;
            padding: 10px 0;
            overflow: hidden;
            font-family: 'Titillium Web', Arial;;
            font-weight: bold;
            font-size: 20px;
        }
        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: scroll 15s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }


/* __________ Menu __________ */
.menu_block {
	position:fixed;
	z-index:9999;
	left:0;
	top:0;
	right:0;
	height:80px;
	width:100%;
  padding-left: 183px;
  padding-right: 183px;
	background-color:#fff;
	box-shadow:0 2px 3px rgba(0,0,0,0.1);
  font-family:  'Titillium Web', Arial;
}


.navmenu ul li {
	position:relative;
	display:inline-block;
}
.navmenu ul li a {
	display:block;
  text-decoration: none;
	margin:0 0 0 -3px;
	padding:30px 20px;
	text-transform:uppercase;
	font-weight:900;
	line-height:20px;
	font-size:13px;
	color:#666;
	transition: all 0.3s ease-in-out; 
	-webkit-transition: all 0.3s ease-in-out;
}
.navmenu li:hover a,
.navmenu li.active a {
	color:#333;
}

/* Sub menu */
.sub-menu ul {
	display: none;
	position: absolute;
	z-index: 9990;
	width: 180px;
	left: 50%;
	top: 100%;
	padding: 0;
	margin: 0 0 0 -90px;
}
.sub-menu.last ul {right:0; left:auto;}
.sub-menu ul:before {
	content:'';
	position:absolute;
	left:50%;
	top:-6px;
	margin-left:-5px;
	width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 6px solid #1c1c1c;
}

.sub-menu ul li  {
	margin:0;
	padding:0;
	width:100%;
	border-top: 0;
}
.sub-menu ul li a {
	position:relative;
	margin:0;
	padding: 15px 5px 14px 21px;
	font-weight:400;
	text-align:left;
	font-size:12px;
	color:#999 !important;
	background:#1c1c1c;
	border-bottom:1px solid #282828;
}
.sub-menu ul li:last-child a {border-bottom:0;}

.sub-menu ul li.active a, .sub-menu ul li a:hover {color:#fff !important; background:#161616;}


/* ==================== Десктопная версия ==================== */
.menu_block {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo a {
    font-family: 'Titillium Web', Arial;
    font-size: 26px;
    font-weight: 900;
    color: #333;
    line-height: 80px;
    text-decoration: none;
}

.logo .b3 {
    font-weight: 400;
}

.navmenu ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navmenu ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.3s;
    padding: 30px 15px;
}

.navmenu ul li a:hover,
.navmenu ul li.active a {
    color: #333;
}

.mobile-menu-toggle {
    display: none;
}

/* ==================== Планшетная версия (993px-1200px) ==================== */
@media (max-width: 1200px) {
    .menu_block {
        padding: 0 30px;
    }
    
    .navmenu ul li a {
        padding: 30px 10px;
        font-size: 12px;
    }
}

/* ==================== Мобильная версия (до 992px) ==================== */
@media (max-width: 992px) {
    .menu_block {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s;
    }

    .navmenu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navmenu.active {
        left: 0;
    }

    .navmenu ul {
        flex-direction: column;
        gap: 0;
    }

    .navmenu ul li {
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .navmenu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }

    /* Анимация бургера */
    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ==================== Маленькие экраны (до 576px) ==================== */
@media (max-width: 576px) {
    .logo a {
        font-size: 22px;
        line-height: 80px;
    }
    
    .navmenu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}






/* Стили для левой текстовой колонки (десктоп) */
.col-text {
  padding: 0px 40px 30px 0;
}

.script-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #C93C00;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
}

.script-title .serif {
  text-transform: uppercase;
  font-family: 'Titillium Web' !important;
}

.contact-text {
  margin-bottom: 30px;
}

.contact-text .bigger {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.contact-text a {
  color: #C93C00;
  text-decoration: underline;
  transition: all 0.3s;
}

.contact-text a:hover {
  color: #a03000;
}

.contact-info {
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.highlight {
  color: #C93C00;
  font-weight: 600;
}

.email-first {
  color: #C93C00;
  text-decoration: none;
  border-bottom: 1px dashed #C93C00;
  transition: all 0.3s;
}

.email-first:hover {
  color: #a03000;
  border-bottom-color: #a03000;
}

/* Адаптация для меньших экранов */
@media (max-width: 1200px) {
  .col-text {
    padding-right: 20px;
  }
  
  .script-title {
    font-size: 28px;
  }
  
  .contact-text .bigger {
    font-size: 16px;
  }
  
  .contact-text p,
  .contact-info p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .col-text {
    padding: 0 15px 30px;
  }
}













/* Остальные стили остаются как в предыдущем варианте */

/* Стили для вертикальной формы */
.form-vertical {
  display: flex;
  flex-direction: column;
}

.form-vertical input[type="text"],
.form-vertical input[type="email"],
.form-vertical input[type="tel"],
.form-vertical textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-vertical textarea {
  min-height: 120px;
  resize: vertical;
}

.form-vertical input[type="submit"] {
  margin-top: 10px;
}

/* Убираем grid для формы */
.form-grid {
  display: block;
}

.contact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.container {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}

.grid-60-40 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 30px;
}

/* Стили для текстовой колонки */
.col-text {
  padding-right: 30px;
}

.script-title {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.script-title .serif {
  font-family: 'Playfair Display', serif;
  display: block;
  font-size: 42px;
  color: #C93C00;
  line-height: 1.0em;
}

.contact-text {
  margin-bottom: 30px;
}

.contact-text .bigger {
  font-size: 18px;
  line-height: 1.6;
}

.contact-text a {
  color: #C93C00;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-info {
  background: #f5f5f5;
  padding: 20px;
  border-left: 3px solid #C93C00;
}

.contact-info .highlight a {
  color: #C93C00;
  text-decoration: none;
}

.email-first {
  text-decoration: none;
  color: #C93C00;
}

/* Стили для формы */
.col-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-wrapper h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C93C00;
  box-shadow: 0 0 0 2px rgba(201,60,0,0.2);
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-full {
  margin-top: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input[type="submit"] {
  background: #C93C00;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form input[type="submit"]:hover {
  background: #f85508;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201,60,0,0.3);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .grid-60-40 {
    grid-template-columns: 1fr;
  }
  
  .col-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    display: none !important;
  }
}







* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Titillium Web', Arial;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background: #f2f4f6;
}
.footer_get_touch_outer {
  margin-top: 80px;
  margin-bottom: 80px;
  display: none !important;
}
.container {
  width: 95%;
  max-width: 1140px;
  margin: auto;
}
.grid-70-30 {
  display: grid;
  grid-template-columns: 70% 30%;
}
.get_form_inner {
  display: block;
  padding: 50px 40px;
  background: #fff;
  box-shadow: -4px -2px 20px -7px #cfd5df;
}
input[type="text"], input[type="text"], input[type="email"], input[type="tel"] {
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  color: #333;
  height: 42px;
  padding: 0 0 0 20px;
  width: 100%;
  outline: 0;
  font-family: 'Inter';
}
.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.grid-full {
  margin: 20px 0;
}
textarea {
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  color: #333;
  padding: 12px 0 0 20px;
  width: 100%;
  outline: 0;
  margin-bottom: 20px;
  font-family: 'Inter';
}
.get_form_inner_text h3 {
  color: #333;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}
input[type="submit"] {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid;
  font-weight: 500;
  padding: 10px 20px;
  outline: 0;
  cursor: pointer;
  color: #C93C00;
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -ms-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
input[type="submit"]:hover {
  background-color: #f85508;
  border-color: #f85508;
  color: #fff;
}
.get_say_form {
  display: inline-block;
  padding: 45px 0 25px 30px;
  background: #C93C00;
  position: relative;
}
.get_say_form h5 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 40px;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.get_say_social-icn {
  display: flex;
  position: absolute;
  bottom: 40px;
}
.get_say_social-icn a {
  font-size: 22px;
  color: #fff;
  padding: 0 20px 0 0;
}
.get_say_info_sec i {
  color: #fff;
  font-size: 32px;
}
.get_say_info_sec > li {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  margin-bottom: 40px;
}
.get_say_info_sec > li a {
  width: 100%;
  display: block;
  padding: 15px 25px;
  color: #fff;
  font-size: 18px;
  text-decoration: unset;
  font-weight: 500;
  background: #a33100;
  border-radius: 5px 0 0 5px;
}
.get_say_info_sec > li a:hover {
  background-color: #f85508;
}

.email img {
  width: 30px;
}
.whatsapp img {
  width: 30px;
}
.instagram img {
  width: 30px;
}

/* АНИМАЦИЯ ДЛЯ ПОЛЕЙ ВВОДА */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea {
  transition: all 0.3s ease !important;
}

input:focus, 
textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 60, 0, 0.15) !important;
  border-color: #C93C00 !important;
}

/* АНИМАЦИЯ КНОПКИ */
input[type="submit"] {
  transition: all 0.3s ease !important;
}

input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(201, 60, 0, 0.3) !important;
}


/* Мобильная адаптация */
@media only screen and (max-width: 768px) {
  .grid-70-30 {
    grid-template-columns: 100%;
  }
  
  .get_form_inner {
    padding: 10px 20px;
    padding-bottom: 18px !important;
  }
  
  .get_form_inner_text h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .grid-50-50 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  
  .get_say_form {
    padding: 30px 20px;
    margin-top: 30px;
  }
  
  .get_say_form h5 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .get_say_info_sec > li {
    margin-bottom: 25px;
  }
  
  .get_say_info_sec > li a {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .get_say_social-icn {
    position: relative;
    bottom: auto;
    margin-top: 30px;
  }
  
  textarea {
    margin-bottom: 15px;
  }
  .get_form_inner_text h3 {
    font-size: 26px !important;
    margin-bottom: 10px;
  }
}

/* Для очень маленьких экранов */
@media only screen and (max-width: 480px) {
  .get_form_inner_text h3 {
    font-size: 28px;
  }
  
  .get_say_form h5 {
    font-size: 22px;
  margin-bottom: 25px;
  }
  
  .get_say_info_sec > li a {
    font-size: 14px;
  }
  
  input[type="submit"] {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.honeypot {
  display: none;
}












.footer {
  font-family: acumin-pro, system-ui, sans-serif;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  background-color: #353535;
  align-items: start;
  max-height: max-content;
  z-index: 1;
  overflow: hidden;
  background: url(../images/background-image.svg) no-repeat right -40px top -40px/500px auto, #353535;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 90px 20px 90px;
  color: #fff;
  background-color: #353535;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
	font-family:  'Titillium Web', Arial;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.nav__title {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.footer address {
  font-style: normal;
  font-size: 16px;
  color: #cacaca;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgba(255, 255, 255, 0.774);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 20px;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2.5em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
	flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
  z-index: 1;
}

.footer__nav {
  z-index: 1;
}

.nav__ul a {
  color: #ffffff;
  font-size: 16px;
}


.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}
  
.legal__links {
  display: flex;
  align-items: center;
}

.background-image {
  position: absolute;
  bottom: -400px;
  right: -50px;
  opacity: 0.7;
  z-index: 200;
}

.background-image img {
  width: 500px;
  z-index: 2;
}

.heart {
  color: #ffffff;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 15px 20px !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /* ИЗМЕНЕНИЕ 3: Увеличен базовый шрифт */
    font-size: 14px;
    /* ИЗМЕНЕНИЕ 1: Добавлен фон */
    background: url(../images/background-image.svg) no-repeat right -90px top -60px/300px auto, #353535;
    position: relative;
    z-index: 1;
  }

  .footer__addr {
    grid-column: 1 / -1;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .footer__logo {
    /* ИЗМЕНЕНИЕ 3: Увеличен размер + ИЗМЕНЕНИЕ 2: Убран отступ */
    font-size: 18px;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .footer__addr h2 {
    display: none;
  }

  .footer address {
    display: flex;
    align-items: center;
    gap: 8px;
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    margin: 0;
  }

  .footer__btn {
    height: 30px;
    padding: 0 14px;
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    margin: 0;
  }

  .footer__nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
  }

  .nav__item {
    flex: 1 1 auto;
    margin: 0;
  }

  .nav__title {
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    margin: 0 0 4px 0;
  }

  .nav__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
  }

  .nav__ul li {
    line-height: 1.2;
  }

  .nav__ul a {
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 14px;
    white-space: nowrap;
  }

  .background-image {
    display: none;
  }

  .legal {
    grid-column: 1 / -1;
    /* ИЗМЕНЕНИЕ 3: Увеличен размер */
    font-size: 12px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .footer_get_touch_outer {
      margin-top: 20px !important;
      margin-bottom: 20px !important;
      display: revert !important;
  }

  .get_say_form {
    padding: 30px 20px;
    margin-top: 0 !important;
  }
  .container {
    margin: 0 !important;
    width: 100%;
  }
  .grid-full {
    margin-bottom: 0px !important;
  }
}



@media only screen and (max-width: 768px) {
  /* ... предыдущие мобильные стили ... */

  .get_say_form {
    padding: 20px 15px !important; /* Уменьшаем отступы */
    margin-top: 20px;
  }

  .get_say_form h5 {
    margin-bottom: 20px !important; /* Уменьшаем отступ под заголовком */
    font-size: 22px !important;
  }

  .get_say_info_sec > li {
    margin-bottom: 15px !important; /* Уменьшаем отступы между элементами */
  }

  .get_say_info_sec > li a {
    padding: 8px 15px !important; /* Уменьшаем отступы внутри элементов */
    font-size: 14px !important;
  }

  .get_say_social-icn {
    margin-top: 20px !important;
    position: relative !important;
    bottom: auto !important;
  }

  .get_say_social-icn a {
    padding: 0 15px 0 0 !important; /* Уменьшаем отступы между иконками */
    font-size: 18px !important;
  }

  .email img, 
  .whatsapp img, 
  .instagram img {
    width: 20px !important; /* Уменьшаем размер иконок */
  }

  .footer_get_touch_outer {
    padding: 30px 40px;
    margin: 0 !important;
  }
  input[type="text"], input[type="text"], input[type="email"], input[type="tel"] {
    height: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .get_say_form {
    padding: 15px 10px !important;
  }

  .get_say_form h5 {
    margin-bottom: 15px !important;
    font-size: 20px !important;
    display: none;
  }

  .get_say_info_sec > li {
    margin-bottom: 0px !important;
    grid-template-columns: 30px auto !important; /* Уменьшаем место под иконку */
  }

  .get_say_info_sec > li a {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  .get_say_social-icn a {
    font-size: 16px !important;
  }
}




.success-message {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  animation: fadeIn 0.6s ease-out;
}

.success-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.success-content h3 {
  font-size: 40px;
  color: #C93C00;
  margin-bottom: 20px;
  line-height: 1.2em;
}

.success-content p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 30px;
}

.success-button {
  background: #C93C00;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.success-button:hover {
  background: #f85508;
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}