:root {
  --primary: #F7AA04;
  --light: #f8f9fa;
  --secondary: #1B519E;
  --dark: #001120;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  scroll-margin-top: 30px;
}


/*************** Generals ***************/

.section-margin {
  margin: 100px 0;
}
.section-padding {
  padding: 100px 0;
}

.bg-light { background: var(--light) !important; }
.bg-dark { background: var(--dark) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }

.text-light { color: var(--light) !important; }
.text-dark { color: var(--dark) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-center { text-align: center !important; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--secondary);
}

h1, .h1 { font-size: 64px; }
h2, .h2 { font-size: 48px; }
h3, .h3 { font-size: 32px; }

h4, .h4,
h5, .h5, 
h6, .h6 {
    font-weight: 600 !important;
}

a {
  color: var(--dark);
}

.bg-primary { background-color: var(--primary) !important; }
.bg-gray { background-color: var(--gray) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/favicon.png") no-repeat center center;
  background-size: contain; 
}

b, strong {
  font-weight: bold;
}

a {
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: all 200ms ease-in-out;
}

.no-border {
  border: none !important;
}

sup  small {
  font-size: .5em;
}

.text-underline {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.lead {
    font-weight: 400;
}

.btn {
  padding: 18px 48px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-size: 18px;
}

.btn:hover {
  transition: all 0.4s ease;
  transform: translateY(-5px);
}

.btn-white,
.btn-white:hover, 
.btn-white:focus  {
  background: #fff;
  border-color: #fff;
  color: var(--secondary);
  box-shadow: 0 15px 35px rgba(247, 170, 4,0.4);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 25px rgba(247, 170, 4,0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 8px 30px rgba(247, 170, 4,0.6);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/************ NAVBAR *****************/

.navbar {
    --bs-navbar-nav-link-padding-x: 1rem;
    transition: all 200ms ease-in-out;
    background: transparent;
}

.navbar.scrolled {
    background: var(--secondary);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 200ms ease-in-out;
}

.nav-link {
    font-weight: 500;
    color: var(--primary);
    opacity: 1;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-dark {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar .logo {
    transition: all 200ms ease-in-out;
    margin: 10px 0;
}

@media screen and (max-width: 767px) {
     .navbar .logo {
        width: 100px;
    }
    .navbar.scrolled .logo {
        margin: 0;
    }
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        min-height: 380px;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        gap: 24px;
    }

    .nav-link {
        font-family: "Bricolage Grotesque", sans-serif;
    }

}

@media screen and (max-width: 767px) {

    .navbar > .container {
        gap: 8px;
    }

    .navbar .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/***************** Hero *****************/

.hero {
  background: url('../img/hero-background.jpg') bottom left no-repeat;
  background-size: cover;
  height: calc(100vh - 50px);
  min-height: 400px;
  display: flex;
  padding-top: 18%;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}
.hero-img {
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 0;
}
.hero .icon {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    height: auto;
    box-shadow: none;
}
.hero-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--dark);
  background: #fff;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: rgba(217,225,0,0.1);
  border: 2px solid var(--primary);
  padding: 24px;
  border-radius: 20px 6px;
  transition: all 0.3s;
}
.card-dark {
  color: #fff;
}



/*********************** FORM ***********************/

.form-control,
.input.form-control {
  border: 1px solid rgba(217,225,0, .5) !important;
  border-radius: 12px;
  background: #fff;
}

.form-control:focus,
.input.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(217,225,0, .25);
  border-color: rgba(217,225,0, 1);
}

.form-check-label {
  font-size: 14px;
}

.form-check-input {
  border-color: rgba(217,225,0, .5);;
}

.sib-sms-select__number-input,
.sib-sms-select__title  {
  border: 1px solid rgba(217,225,0, .5);
  border-radius: 12px;
}

.sib-sms-select__phone-number {
  border-radius: 0 12px 12px 0;
}

.sib-sms-select__calling-code {
  border-right-color:  rgba(217,225,0, .5);
  border-radius: 12px 0 0 12px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: rgba(217,225,0, 1);
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(217,225,0, 0.25);
    border-color: rgba(217,225,0, 1);
}

.sib-form {
  padding: 0;
  font-family: "Metropolis", sans-serif;
}

.sib-form * {
  font-family: "Metropolis", sans-serif !important;
}

.sib-form-block {
  padding: 0;
}

#sib-container {
  padding: 0;
  background: transparent;
}

.sib-form .entry__field {
  border: none;
  background: transparent;
}

.sib-form .entry__label {
  font-weight: 400;
}

.entry__label::after {
  color: var(--dark);
}

.entry__error  {
  font-size: 13px !important;
  padding: 2px 6px !important;
}










@media screen and (max-width: 991px) {

  .section-margin {
    margin: 75px 0;
  } 

  .section-padding {
    padding: 50px 0;
  }

  h1 { 
    font-size: 42px; 
  }

  h2 { 
    font-size: 32px; 
  }

  
  h3, .h3 { font-size: 24px; }

}








/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1647 0%, var(--secondary) 50%, #0d47a1 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    padding: 15px 35px;
    border-radius: 15px;
    font-size: 64px;
    font-weight: 900;
    margin: 30px 0;
    box-shadow: 0 15px 40px rgba(247, 170, 4,0.5), 0 0 80px rgba(247, 170, 4,0.3);
    animation: pulse 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero .highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.hero .subtitle {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.95;
  line-height: 1.6;
}


.guarantee-badge-container {
    margin-top: -140px;
    position: relative;
    z-index: 10;
}


.guarantee-badge {
    background: white;
    color: var(--secondary);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: 50px auto 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}


.guarantee-badge::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -40px;
    opacity: 0.15;
		width: 250px;
		height: 250px;
		background: url('../img/alarm.svg') center center no-repeat;
		background-size: contain;
		transform: rotate(8deg);
}

.guarantee-badge h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Benefits Section */
.benefits {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title.no-after:after {
    display: none;
}

.benefit-card {
    background: white;
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(26,35,126,0.15);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 70px;
    margin-bottom: 25px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

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

.benefit-card:nth-child(even) .benefit-icon {
    animation-delay: 0.3s;
}

.benefit-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Image Section */
.image-showcase {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d47a1 100%);
    position: relative;
    overflow: hidden;
}

.image-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') repeat-x;
    opacity: 0.5;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.showcase-content {
    color: white;
}

.showcase-image img, 
.about-section img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.2);
}


/* How It Works */
.testimonials {
    padding: 120px 20px;
    background: white;
    position: relative;
}

.step {
    position: relative;
    z-index: 1;
		text-align: center;
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), #e55a2b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 900;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(247, 170, 4,0.4);
    border: 5px solid white;
    position: relative;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 50px rgba(247, 170, 4,0.6);
}

.step h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.step p {
    color: var(--dark);
    font-size: 17px;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, var(--primary) 0%, #e5852b 100%);
    color: white;
    padding: 120px 20px 170px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-section::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -20px;
    width: 50%;
		height: 60%;
		background: url('../img/shield.svg') top right no-repeat;
		background-size: contain;
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.emergency-list {
    margin: 50px auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.emergency-item {
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    height: 100%;
}

.emergency-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-10px);
    border-color: white;
}

.emergency-item::before {
    content: '✓';
    display: block;
    margin-right: 15px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
    background: white;
    color: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
}

/* Trust Section */
.trust-section {
    text-align: center;
    position: relative;
    margin-top: -50px;
}

.trust-image {
    max-width: 1000px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.trust-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.trust-image:hover img {
    transform: scale(1.05);
}

.stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}


.cta-section > p {
    font-size: 22px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-select {
  padding: 16px;
  border: 2px solid #e0e0e0 !important;
  border-radius: 12px;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus  {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(247, 170, 4,0.1) !important;
}

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

/* Footer */
footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 50px 20px;
}

footer p {
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-info {
    line-height: 2;
}


.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
 
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 16px;
    color: var(--primary) !important;
}

.section-thank-you {
	min-height: calc(100vh - 252px);
}





/* Responsive */
@media (max-width: 989px) {
    .hero-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 100px 20px;
        min-height: auto;
        height: auto;
    }


    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .highlight {
        font-size: 44px;
        padding: 12px 25px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero .icon {
        right: -10px;
        width: 150px;
    }

    .guarantee-badge-container {
        margin-top: -100px;
    }

    .benefits,
    .testimonials,
    .trust-section,
    .cta-section,
    .emergency-section,
    .image-showcase {
        padding: 60px 20px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .guarantee-badge {
        padding: 32px;
    }

    .benefit-card {
        padding-bottom: 10px;
    }

    .benefit-icon {
        font-size: 50px;
        margin-bottom: 16px;
    }

    .emergency-section {
        padding-left: 0;
        padding-right: 0;
    }

    .emergency-list {
        margin-bottom: 24px;
    }

    .stat-number {
        font-size: 56px;    
        margin-bottom: 0;
    }


    .contact-form {
        padding: 35px 25px;
        margin: 15px -15px 0;
    }


    .btn-primary {
        box-shadow: 0 5px 35px rgba(247, 170, 4,0.4);
    }


		.section-thank-you {
			min-height: calc(100vh - 344px);
		}

}


