@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------
BRAND VARIABLES
--------------------------------------------------- */

:root{

  --brand-primary:#A6FF00;
  --brand-primary-dark:#7FCC00;

  --brand-secondary:#1A1A1A;
  --brand-secondary-dark:#000000;

  --brand-accent:#6B7280;
  --brand-accent-dark:#4B5563;

  --brand-white:#ffffff;
  --brand-text:#1f2937;

}

/* ---------------------------------------------------
GLOBAL
--------------------------------------------------- */

body{
  background: var(--brand-secondary-dark);
  color: var(--brand-white);
}

a{
  text-decoration:none;
  color: var(--brand-primary);
}

a:hover{
  color: var(--brand-primary-dark);
}
.glow{
  text-shadow: 0 0 8px rgba(166,255,0,0.6);
}
/* ---------------------------------------------------
BUTTON EXAMPLES
--------------------------------------------------- */

/*.btn-brand{
  background: var(--brand-primary);
  color:#000;
  font-weight:600;
}

.btn-brand:hover{
  background: var(--brand-primary-dark);
}*/

/* ---------------------------------------------------
MOBILE FIXES
--------------------------------------------------- */

@media (max-width:768px){

  .container{
    overflow:hidden;
  }

}
/* ---------------------------------------------------
SECTION SYSTEM
--------------------------------------------------- */

section{
background:#fff;
padding:90px 0;

}

.section-alt{

background:#f7f9fc;

}

.section-header{

margin-bottom:60px;

}

.section-divider{

width:100%;
height:80px;

background:linear-gradient(
to bottom,
rgba(255,255,255,0),
rgba(0,0,0,.03)
);

margin-top:60px;

}

/* ---------------------------------------------------
BUTTON SYSTEM
--------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  border-radius:10px;
  padding:14px 28px;
  font-weight:600;

  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  will-change: transform;
}

.btn-call{
    background:linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-primary-dark)
	);
  color:#fff;
}

.btn-call:hover{
  background:linear-gradient(
    135deg,
    var(--brand-primary-dark),
    var(--brand-primary)
  );
  transform:translateY(-2px);
  color:#fff;
}

.btn-text{
  background:linear-gradient(
    135deg,
    var(--brand-accent),
    var(--brand-accent-dark)
	);
  color:#fff;
}

.btn-text:hover{
  background:linear-gradient(
    135deg,
    var(--brand-accent-dark),
    var(--brand-accent)
	);
  transform:translateY(-2px);
  color:#fff;
}

.btn-outline-white{
  background:transparent;
  border-color:#fff;
  color:#fff;
  border-radius:10px;
  padding:14px 28px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn-outline-white:hover{
  background:var(--brand-primary);
  border-color:var(--brand-primary);
  transform:translateY(-2px);
}

.btn:hover{
box-shadow:0 16px 35px rgba(0,0,0,.25);
}

.btn:active{
  transform:translateY(0);
  box-shadow:0 6px 15px rgba(0,0,0,.2);
}
.btn i{
  font-size:14px;
}
.btn:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(13,110,253,.25);
}

/* ---------------------------------------------------
SITE NAVBAR
--------------------------------------------------- */
.announcement-bar{
  background:var(--brand-accent); 
  display:block;
  width:100%;
  color:#fff;
  font-size:14px;
  font-weight:600;
  padding:8px 0;
  cursor:pointer;
  text-decoration:none;
}
.announcement-bar,
.announcement-bar:hover,
.announcement-bar:focus{
  text-decoration:none;
  color:#fff;
}
.announcement-bar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1050;

  transition:transform .3s ease, opacity .3s ease;
}

.announcement-bar.hidden{
  transform:translateY(-100%);
  opacity:0;
}
.announcement-text{
  display:flex;
  align-items:center;
  gap:8px;
}

.announcement-cta{
  margin-left:15px;
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

.announcement-cta:hover{
  opacity:.85;
}

/* ---------------------------------------------------
LOGO
--------------------------------------------------- */

.site-logo{

max-height:60px;
width:auto;
transition:transform .25s ease;

}

.site-logo:hover{

transform:scale(1.05);

}

.brand-text{

font-weight:700;
font-size:22px;
color:white;

}

.site-navbar.scrolled .site-logo{

max-height:48px;

}

/* ---------------------------------------------------
NAV LINKS
--------------------------------------------------- */

.navbar-nav .nav-link{

color:#e5e7eb;
margin-left:24px;
font-weight:500;
font-size:15px;

transition:color .2s ease;

}

.navbar-nav .nav-link:hover{

color:white;

}

/* ---------------------------------------------------
DROPDOWN SUBMENU
--------------------------------------------------- */

.dropdown-submenu{
position:relative;
}

.dropdown-submenu .dropdown-menu{
top:0;
left:100%;
margin-left:0;
border-radius:8px;
margin-top:-1px;
}


/* Remove Bootstrap default arrow */
.dropdown-submenu > .dropdown-toggle::after{
display:none !important;
}

/* Add right arrow */
.submenu-toggle::after{
content:"›"; /* simple right arrow */
font-size:18px;
font-weight:600;
margin-left:auto;
display:inline-block;
transition:.2s ease;
}

.dropdown-submenu:hover .submenu-toggle::after{
transform:translateX(4px);
}

/* Align arrow properly */
.dropdown-item{

display:flex;
align-items:center;
justify-content:space-between;

padding:10px 18px;

font-size:15px;

color:var(--brand-text);

border-radius:6px;

margin:2px 8px;

transition:.2s;

}

.dropdown-item:hover{
background:rgba(20,99,163,.08); /* your brand primary tint */
color:var(--brand-primary);
}

@media (min-width:992px){

/* ONLY open first level dropdown */
.navbar .nav-item.dropdown:hover > .dropdown-menu{
display:block;
margin-top:0;
}
	
.dropdown-submenu:hover > .dropdown-menu{
display:block;
}

}



/* ---------------------------------------------------
PREMIUM DROPDOWN
--------------------------------------------------- */

.dropdown-menu{
border:1px solid rgba(0,0,0,.05);
border-radius:12px;
padding:12px 0;
min-width:240px;
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
box-shadow:0 20px 50px rgba(0,0,0,.18);
animation:dropdownFade .2s ease;
transition:all .2s ease;
margin-top:10px;
}


.dropdown-submenu .dropdown-menu{
border-radius:12px;
box-shadow:0 20px 50px rgba(0,0,0,.18);
}

@keyframes dropdownFade{

from{
opacity:0;
transform:translateY(10px) scale(.98);
}

to{
opacity:1;
transform:translateY(0) scale(1);
}

}

@media (max-width: 991px){

  .dropdown-submenu .dropdown-menu {
    position: static;
    transform: none;
    margin-left: 0;
    padding-left: 15px;
    box-shadow: none;
    border: none;
  }
	
.submenu-toggle::after {
  transition: transform .2s ease;
}

.dropdown-submenu.open .submenu-toggle::after {
  transform: rotate(90deg);
}
}


/* ---------------------------------------------------
NAV CTA BUTTON
--------------------------------------------------- */

nav .btn-call{

background:var(--brand-primary);
color:white;

padding:10px 18px;
border-radius:8px;

font-weight:600;
font-size:14px;
letter-spacing:.3px;
gap:6px;
transition:all .2s ease;

}

nav .btn-call:hover{
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,.25);
color:white;
}


/* ---------------------------------------------------
STICKY NAVBAR
--------------------------------------------------- */

.site-navbar{

position:fixed;
top:0;
left:0;
width:100%;

z-index:1000;

background:rgba(15,23,42,.65);
backdrop-filter:blur(10px);

border-bottom:1px solid rgba(255,255,255,.08);

padding:18px 0;

transition:all .35s ease;

}

/* Navbar after scroll */

.site-navbar.scrolled{
/*background:rgba(15,23,42,.95);*/
background:rgba(255,255,255,.85);
padding:10px 0;
box-shadow:0 10px 30px rgba(0,0,0,.25);
top:0;
}



.site-navbar{

  position:fixed;
  top:37px;
  left:0;
  width:100%;
  z-index:1000;

  /* FROSTED WHITE */
  background:rgba(255,255,255,1);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(0,0,0,.08);

  padding:18px 0;
  transition:all .35s ease;

}
.site-navbar .nav-link{
  color:#1f2937;
}

.site-navbar .nav-link:hover{
  color:#000;
}

.brand-text{
  color:#111;
}
.site-navbar.scrolled .nav-link{
  color:#000;
}

.site-navbar.scrolled .nav-link:hover{
  color:var(--brand-primary);
}

.site-navbar.scrolled .brand-text{
  color:var(--brand-primary);
}

.site-navbar{
  transition:background .35s ease, padding .35s ease, color .2s ease;
}


.announcement-bar{
  position:relative;
  z-index:1030;
}


body.has-announcement .site-navbar{
  top:40px;
}






/* ---------------------------------------------------
HERO PREMIUM LAYOUT
--------------------------------------------------- */

.hero{

position:relative;
background:url('/assets/img/hero2.webp') center/cover no-repeat;
/*background:url('https://dkialpha.com/alpha_img/junk/1920/junk-042.webp') center/cover no-repeat;*/

min-height:700px;

display:flex;
align-items:center;

color:white;
padding-top:140px;
}

.hero{
animation:heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom{
from{
background-size:100%;
}
to{
background-size:110%;
}
}

.hero-overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(
to right,
rgba(0,0,0,.75) 0%,
rgba(0,0,0,.55) 35%,
rgba(0,0,0,.35) 60%,
rgba(0,0,0,.2) 100%
);
}

.hero-container{

position:relative;
z-index:2;


}

.hero-left{

max-width:540px;

}

.hero-title{

font-size:64px;
font-weight:800;

line-height:1.1;

margin-bottom:20px;

text-shadow:0 10px 30px rgba(0,0,0,.5);

}

.hero-subtitle{

font-size:22px;

opacity:.95;

margin-bottom:30px;

}

.hero-buttons{

margin-bottom:20px;

}

.hero-right{

text-align:center;

}

.hero-image{
max-width:520px;
width:100%;
filter:drop-shadow(0 25px 40px rgba(0,0,0,.4));
}

.hero-trust{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-top:15px;
font-size:16px;
}

.hero-trust i{
color:#FFD700;
}


/* ---------------------------------------------------
HERO WAVE DIVIDER
--------------------------------------------------- */

.hero-wave{
position:absolute;
bottom:0;
left:0;
width:100%;
line-height:0;
z-index:2;
}

.hero-wave svg{
display:block;
width:100%;
height:90px;
}

.hero-wave path{
fill:var(--brand-primary);
}

@media (max-width:992px){
.hero{
text-align:center;
}

.hero-left{
margin:auto;
}

.hero-right{
margin-top:40px;
}

.hero-title{
font-size:42px;
}

}

@media (max-width:768px){

.hero{
  display: none;
  min-height:auto;
  padding-top:110px;   /* navbar + spacing */
  padding-bottom:0px;
}

.hero-overlay{
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.6) 50%,
    rgba(0,0,0,.4) 100%
  );
}
	
.hero-container{
  margin-top:10px;
  padding-bottom:40px;
}

.hero-title{
  font-size:34px;
  line-height:1.2;
  margin-bottom:15px;
}

.hero-subtitle{
  font-size:16px;
  margin-bottom:20px;
}

.hero-trust{
  justify-content:center;
  gap:12px;
  font-size:14px;
  margin-top:10px;
}

.hero-trust span{
  white-space:nowrap;
}
	
.hero-wave svg{
  height:60px;
}

.hero{
  animation: none !important;
  transform: none !important;
}

.hero-bg,
.hero img{
  animation: none !important;
  transform: none !important;
}
	
	
}


/* ---------------------------------------------------
INNER HERO (REFINED)
--------------------------------------------------- */

.inner-hero {
  position: relative;
  background-size: cover;
  background-position: center;

  min-height: 550px; /* 👈 KEY */

  padding: 140px 0 120px;
  color: #fff;
  overflow: hidden;
  /*z-index: 100;*/
}
.inner-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(248,249,250,0), #f8f9fa);
}

/* DARK OVERLAY (gradient instead of flat) */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45)
  );
}

/* CONTENT */
.inner-hero-content {
  position: relative;
  margin-top: 20px;
  max-width: 700px;
  z-index: 2;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 12px;
}

/* TITLE */
.inner-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* TEXT */
.inner-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* CTA */
.inner-hero-actions .btn {
  padding: 10px 20px;
  font-weight: 600;
}

/* CURVE (MUCH cleaner) */
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f8f9fa;
  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
}

/* MOBILE */

@media (max-width: 768px){

  .inner-hero {
    padding: 80px 0 90px;
  }

  .inner-hero h1 {
    font-size: 30px;
  }

  .inner-hero p {
    font-size: 15px;
  }

  .hero-curve {
    height: 60px;
  }

}

/* HERO OVERLAP */
.inner-hero + section {
  position: relative;
  background: #f8f9fa;
  z-index: 3;
}
.inner-hero + section .container {
  margin-top: -70px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.10);
}
.inner-hero + section img {
  transform: translateY(-10px);
}
/* ---------------------------------------------------
QUICK CALL BAR
--------------------------------------------------- */

.quick-call-bar{

background:linear-gradient(
135deg,
var(--brand-primary),
var(--brand-primary-dark)
);
	color:white;

padding:20px 0;

}

.quick-call-text{

font-size:28px;
font-weight:700;
margin-top:4px;

}

.quick-call-text span{

display:block;
font-size:18px;
font-weight:400;
margin-top:2px;

}

.quick-call-bar .btn{
	
padding:16px 30px;
font-size:17px;
margin:5px;

}

.quick-offer{

  display:inline-flex;
  align-items:center;
  gap:6px;

  font-size:16px;
  font-weight:700;
  text-transform:uppercase;

  color:#fbbf24;

  letter-spacing:.5px;
  margin-bottom:6px;
	
  padding:6px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 6px 16px rgba(0,0,0,.15);
}


.quick-offer i{
  font-size:20px;
  position: relative;
  top: -1px;
}
/* ---------------------------------------------------
QUICK CALL TRUST ICONS
--------------------------------------------------- */

.quick-trust{
margin-top:10px;
font-size:14px;
opacity:.9;
display:flex;
justify-content:center;
gap:16px;
flex-wrap:wrap;
}

.quick-trust span{
display:flex;
align-items:center;
gap:6px;
}

.quick-trust i{
color:#FFD700;
font-size:16px;
}

.quick-trust .divider{
color:rgba(255,255,255,.5);
}

@media (max-width:768px){
	.quick-call-bar .container{
		padding-top:140px;
		padding-bottom: 20px;
	}
}
/* ---------------------------------------------------
SERVICE TOGGLE
--------------------------------------------------- */

.service-toggle-section{
padding:80px 0;
}

.mobile-hero-image {
  display: none;
}

.toggle-title{
font-size:36px;
font-weight:700;
margin-bottom:40px;
}

.service-toggle-section h3{
	padding-top: 20px;
}

.toggle-buttons{
margin-bottom:40px;
}

.toggle-btn{
padding:14px 26px;
margin:5px;
border:none;
background:#e5e5e5;
font-weight:600;
cursor:pointer;
border-radius:8px;
}

.toggle-btn.active{
background:#1E90FF;
color:white;
}

.toggle-content{
max-width:1000px;
margin:auto;
}

.toggle-panel{
display:none;
}

.toggle-panel.active{
display:block;
}

@media (max-width: 768px) {
  .mobile-hero-image {
    display: block;
	}
	.service-toggle-section{
		padding:40px 0;
	}
	.toggle-title{
		font-size:30px;
		font-weight:700;
		margin-top:20px;
		margin-bottom:20px;
	}
}

/* ---------------------------------------------------
SERVICES
--------------------------------------------------- */

.services-section{
padding:80px 0;

}

.section-header h2{

font-size:40px;
font-weight:700;
margin-bottom:10px;

}

.section-header p{

font-size:18px;
max-width:600px;
margin:auto;
margin-bottom:50px;

}

.service-card{

background:white;
padding:35px;

border-radius:12px;

text-align:center;

box-shadow:0 6px 18px rgba(0,0,0,.08);

transition:.25s;

height:100%;

}

.service-card{

background:white;
padding:35px;
border:1px solid rgba(0,0,0,.05);
border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:all .3s ease;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.service-card i{

font-size:26px;

background:var(--brand-primary);
color:white;

width:60px;
height:60px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

margin:auto;
margin-bottom:15px;

}

.service-card h4{

font-weight:700;
margin-bottom:10px;

}

.service-card p{

font-size:15px;
opacity:.8;

}

.services-cta{

margin-top:40px;

}
/* SERVICES FULL VERSION */

.service-card-full{
  padding:32px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:.25s;
}

.service-card-full:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.service-link{
  display:inline-block;
  margin-top:12px;
  font-weight:600;
  color:var(--brand-primary);
  text-decoration:none;
}


/* ---------------------------------------------------
STEPS SECTION
--------------------------------------------------- */

.process-card{
  position:relative;
  background:#fff;
  padding:40px 25px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.25s;
}

.process-card:hover{
  transform:translateY(-5px);
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.process-card i{
  font-size:32px;
  color:var(--brand-primary);
  margin-bottom:15px;
}

.step-number{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  background:var(--brand-primary);
  color:#fff;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}
/* ---------------------------------------------------
REVIEWS (JUNKULA STYLE)
--------------------------------------------------- */

.reviews-section{
  background:linear-gradient(to bottom,#EFF1F4,#eef2f7);
}

/* LEFT IMAGE */

.reviews-image-wrap{
  position:relative;
  transition:transform 6s ease;
}

.reviews-image-wrap img{
  border-radius:20px;
  transform:scale(1.05);
}

/* Badge */

.reviews-badge{
  position:absolute;
  top:20px;
  right:20px;

  background:#ef4444;
  color:white;

  padding:10px 14px;
  border-radius:10px;

  font-weight:600;
  font-size:14px;

  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* TEXT */

.reviews-overline{
  font-size:12px;
  letter-spacing:2px;
  color:#6b7280;
  margin-bottom:10px;
}

.reviews-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:25px;
}

/* CARD */

.review-card{
  height:100%;
  display:flex;
  flex-direction:column;
  background:white;
  backdrop-filter:blur(6px);

  padding:22px;
  border-radius:14px;

  box-shadow:0 10px 30px rgba(0,0,0,.08);

  margin-bottom:15px;

  transition:.25s;
}

.review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* HEADER */

.review-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.review-avatar{
  width:42px;
  height:42px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--brand-primary);
  color:white;

  font-weight:700;
  font-size:16px;
  line-height:1;

  flex-shrink:0;
}

.review-avatar{
  position:relative;
}

.review-avatar::after{
  content:"";
  position:absolute;
  bottom:-3px;
  right:-3px;

  width:16px;
  height:16px;

  background:white;
  border-radius:50%;

  background-image:url('/assets/img/google-g.svg');
  background-size:10px;
  background-repeat:no-repeat;
  background-position:center;

  box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.review-time{
  font-size:12px;
  color:#6b7280;
}

.review-name-row{
  display:flex;
  align-items:center;
  gap:6px;
}

.verified-badge{
  color:#3b82f6;
  font-size:14px;
  margin-left:4px;
}

/* STARS */

.review-stars{
  color:#fbbf24;
  letter-spacing:1px;
  font-size:16px;
  margin-bottom:10px;
}

/* TEXT */

.review-text{
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:14px;
  color:#374151;
  line-height:1.6;
}

.reviews-section .btn{
  margin-top:20px;
}

/* ---------------------------------------------------
REVIEWS SLIDER
--------------------------------------------------- */

.reviews-slider{
  position:relative;
}

.reviews-slider::before,
.reviews-slider::after{
  content:"";
  position:absolute;
  top:0;
  width:60px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.reviews-slider::before{
  left:0;
  background:linear-gradient(to right,#f8fafc,transparent);
}

.reviews-slider::after{
  right:0;
  background:linear-gradient(to left,#f8fafc,transparent);
}


#reviews-slider .splide__slide{
  padding:10px;
}

#reviews-slider .splide__slide{
  opacity:.8;
  transform:scale(.98);
  transition:.3s ease;
}

#reviews-slider .splide__slide.is-active{
  opacity:1;
  transform:scale(1);
}

/* spacing between cards */
#reviews-slider .review-card{
  margin:0 5px;
}

/* dots */
#reviews-slider .splide{
  padding-bottom:30px;
}

#reviews-slider .splide__pagination{
  position:absolute;
  bottom:-20px;
  left:50%;
  transform:translateX(-50%);
}
.splide__pagination__page{
  background:#d1d5db;
  opacity:1;
}

.splide__pagination__page.is-active{
  background:var(--brand-primary);
}

/* arrows */

.splide__arrow{
  background:white;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.splide__arrow svg{
  fill:#111;
}

/* ---------------------------------------------------
REVIEWS ARROWS OUTSIDE
--------------------------------------------------- */

#reviews-slider{
  position:relative;
  padding:0 40px; /* creates space for arrows */
}

#reviews-slider .splide__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
}

#reviews-slider .splide__arrow--prev{
  left:-10px;
}

#reviews-slider .splide__arrow--next{
  right:-10px;
}

.splide__arrow{
  width:38px;
  height:38px;
  border-radius:50%;
  background:white;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}


.featured-review{
  font-size:17px;
  color:#4b5563;
  max-width:650px;
  padding-top:20px;
}

.featured-review .review-stars{
  font-size:24px;
  margin-bottom:8px;
}

.featured-review p{
  font-style:italic;
  margin-bottom:6px;
}

.featured-review span{
  font-size:12px;
  color:#6b7280;
}
.review-author{
  font-weight:600;
}
.featured-review .review-text{
  position:relative;
  font-size:17px;
  line-height:1.6;
  color:#333;
  margin-bottom:15px;
  max-width:600px;
  padding-left:20px;
}


/* --------------------------------------------------- Locations Section --------------------------------------------------- */

.dki-locations{
  background:#f8f9fa;
}

.dki-heading{
  font-weight:700;
  margin-bottom:10px;
}

.dki-subheading{
  font-weight:600;
  color:#0d6efd;
  margin-bottom:10px;
}

.dki-text{
  color:#555;
  max-width:650px;
}

.service-area-label{
  font-weight:600;
  margin-bottom:10px;
}

/* Grid */
.location-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.location-grid a{
  text-decoration:none;
  color:#333;
  padding:6px 0;
  transition:all .2s ease;
  position:relative;
}

.location-grid a::before{
  content:"›";
  margin-right:8px;
  color:#0d6efd;
}

.location-grid a:hover{
  color:#0d6efd;
  transform:translateX(4px);
}

/* CTA */
.dki-location-cta .btn{
  border-radius:8px;
  padding:10px 18px;
}

/* Map */
.map-wrap{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.map-wrap iframe{
  width:100%;
  height:400px;
  border:0;
}
.no-link{
  color:#666;
  padding:6px 0;
  display:block;
  cursor:default;
}

.no-link::before{
  content:"›";
  margin-right:8px;
  color:#ccc;
}

/* Compact variant tweaks */
.dki-locations.variant-compact .location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-area-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  width: 100%;
}

.dki-locations.variant-compact .location-grid a,
.dki-locations.variant-compact .location-grid span {
  background: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* ---------------------------------------------------
LOCATIONS POLISH
--------------------------------------------------- */

/* SECTION BACKGROUND */

.dki-locations.variant-split {
  background: linear-gradient(to right, #f8f9fa 55%, #ffffff 45%);
}

/* CARD */

.locations-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* GRID STYLE UPGRADE */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 10px;
}

.location-grid a,
.location-grid span {
  font-size: 15px;
  display: inline-block;
  transition: all 0.2s ease;
}

/* LINK STYLE */

.location-grid a {
  color: #0d6efd;
  text-decoration: none;
}

.location-grid a:hover {
  transform: translateX(4px);
}

/* NON-LINK */

.location-grid .no-link {
  opacity: 0.6;
}

/* IMAGE UPGRADE */

.about-area-image {
  position: relative;
}

.about-area-image img {
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  width: 100%;
}

/* FLOAT EFFECT */

@media (min-width: 992px){
  .about-area-image {
    transform: translateY(20px);
  }
}

/* Mobile */
@media (max-width:768px){
  .location-grid{
    grid-template-columns:1fr;
  }

  .map-wrap iframe{
    height:300px;
  }
}



/* ---------------------------------------------------
LOCATION PAGE CARDS (ALL LOCATIONS PAGE)
--------------------------------------------------- */

.location-card{
  display:block;
  padding:25px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.05);
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.25s;
  text-decoration:none;
  color:#222;
  height:100%;
}

.location-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.location-card h4{
  font-size:20px;
  margin-bottom:8px;
  font-weight:600;
}

.location-card p{
  font-size:14px;
  color:#6c757d;
  margin-bottom:0;
}

.location-link{
  display:block;
  margin-top:10px;
  font-weight:600;
  color:#0d6efd;
}
/* ---------------------------------------------------
LOCATION CARD IMAGE
--------------------------------------------------- */

.location-card-img{
  width:100%;
  height:160px;
  overflow:hidden;
  border-radius:12px;
  margin-bottom:15px;
}

.location-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s;
}

.location-card:hover .location-card-img img{
  transform:scale(1.05);
}

.location-card-body{
  padding-top:5px;
}

/* --------------------------------------------------- Choose Section --------------------------------------------------- */

.dki-choose{
  position:relative;
  padding:100px 0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  overflow:hidden;
}

.dki-choose-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.90) 0%,
      rgba(0,0,0,.85) 35%,
      rgba(0,0,0,.75) 65%,
      rgba(0,0,0,.85) 100%
    );
  z-index:1;
}

.dki-choose .container{
  position:relative;
  z-index:2;
}

/* image */

.choose-img-wrap{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
  transform:translateY(0);
  transition:transform .35s ease, box-shadow .35s ease;
}

.choose-img-wrap:hover{
  transform:translateY(-6px);
  box-shadow:0 35px 80px rgba(0,0,0,.45);
}

.choose-img-wrap img{
  width:100%;
  display:block;
}

/* content card */

.choose-content-card{
  color:#fff;
  padding:34px 36px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
}

.choose-overline{
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
  margin-bottom:12px;
}

.choose-heading{
  font-size:42px;
  line-height:1.05;
  font-weight:800;
  margin-bottom:12px;
  color:#fff;
}

.choose-subheading{
  font-size:26px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:24px;
  color:#fff;
}

/* list */

.choose-list{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}

.choose-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:14px;
  font-size:18px;
  line-height:1.5;
  color:#f3f4f6;
}

.check-icon{
  width:34px;
  height:34px;
  min-width:34px;
  border-radius:50%;
  background:var(--brand-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(0,0,0,.22);
  margin-top:1px;
}

.check-icon i{
  font-size:18px;
}

/* cta */

.choose-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.choose-cta .btn{
  min-width:170px;
  justify-content:center;
}

/* --------------------------------------------------- Choose Section Video --------------------------------------------------- */

.choose-media {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.choose-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

/* Optional: keep height consistent */
.choose-media {
  max-height: 550px;
  transition: transform .3s ease;
}

.choose-media:hover {
  transform: translateY(-6px);
}

.choose-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.video-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #53AA1B;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* responsive */

@media (max-width: 991.98px){

  .dki-choose{
    padding:80px 0;
  }

  .choose-content-card{
    padding:28px 24px;
  }

  .choose-heading{
    font-size:34px;
  }

  .choose-subheading{
    font-size:22px;
  }
}

@media (max-width: 767.98px){

  .choose-heading{
    font-size:30px;
  }

  .choose-subheading{
    font-size:20px;
  }

  .choose-list li{
    font-size:16px;
  }

  .choose-cta{
    flex-direction:column;
  }

  .choose-cta .btn{
    width:100%;
    min-width:0;
  }
}


/* ---------------------------------------------------<ABOUT INTRO>--------------------------------------------------- */

.about-intro {
  background: #fff;
}

.about-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-text {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-actions .btn {
  padding: 12px 20px;
  font-weight: 600;
}

.about-image-wrap img {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* MOBILE */

@media (max-width: 768px){

  .about-title {
    font-size: 26px;
    text-align: center;
  }

  .about-text {
    font-size: 15px;
    text-align: center;
  }

  .about-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-actions .btn {
    width: 100%;
  }

}

/* ---------------------------------------------------</ABOUT INTRO>--------------------------------------------------- */

/* ---------------------------------------------------<ABOUT ECO SECTION>---------------------------------------------- */

.about-eco {
  background: linear-gradient(135deg, #28a745, #1f8a38);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-eco-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 10px;
}

.about-eco-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-eco-text {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 12px;
}

.about-eco-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* BUTTONS */

/*.about-eco .btn-call {
  background: #fff;
  color: #1f8a38;
}*/

.about-eco .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

/* MOBILE */

@media (max-width: 768px){

  .about-eco {
    text-align: center;
  }

  .about-eco-title {
    font-size: 26px;
  }

  .about-eco-text {
    font-size: 15px;
  }

  .about-eco-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-eco-actions .btn {
    width: 100%;
  }

}

/* ---------------------------------------------------</ABOUT ECO SECTION>---------------------------------------------- */

/* ---------------------------------------------------<ABOUT CHOOSE>---------------------------------------------------- */

.about-choose {
  background: #f8f9fa;
}

.section-badge {
  display: inline-block;
  background: #e9ecef;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
}

.choose-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.choose-card i {
  font-size: 32px;
  color: #28a745;
  margin-bottom: 15px;
}

.choose-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 15px;
  opacity: 0.7;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ---------------------------------------------------</ABOUT CHOOSE>---------------------------------------------------- */

/* ---------------------------------------------------<ABOUT SERVICES>--------------------------------------------------- */

.about-services {
  background: #111;
  color: #fff;
}

.about-services .section-badge {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.about-services .section-title {
  color: #fff;
}

.about-services .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* LIST STYLE */

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
}

/* CTA BUTTONS */

/*.about-services .btn-call {
  background: #28a745;
  border: none;
}

.about-services .btn-outline-dark {
  border: 2px solid #fff;
  color: #fff;
}*/

/* ---------------------------------------------------</ABOUT SERVICES>--------------------------------------------------- */

/* ---------------------------------------------------<SERVICE DETAILS>--------------------------------------------------- */
.service-details{
  padding:80px 0;
}

.service-details .service-list{
  list-style:none;
  padding:0;
  margin-top:20px;

  display:flex;
  flex-wrap:wrap;
  gap:12px 20px; /* row gap / column gap */
}

.service-details .service-list li::before{
  content:none !important;
}

.service-details .service-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;

  width:calc(50% - 10px); /* 2 columns */
  font-size:15px;
  color:#555;
}

.service-details .service-list i{
  color:var(--brand-primary);
  font-size:16px;
  margin-top:2px;
}

.service-image img{
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width:768px){
  .service-details .service-list li{
    width:100%;
  }
}
/* ---------------------------------------------------</SERVICE DETAILS>--------------------------------------------------- */

/* ---------------------------------------------------<WHY CHOOSE SIMPLE>--------------------------------------------------- */

.why-choose-simple{
  background:#f8f9fb;
  padding:80px 0;
}

.why-choose-simple .col-lg-8{
  max-width:540px;
}

.why-list{
  list-style:none;
  padding:0;
}

.why-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
  font-size:16px;
}
.why-list li{
  background:#fff;
  padding:14px 16px;
  border-radius:8px;
  box-shadow:0 6px 16px rgba(0,0,0,0.06);
}
.why-list li:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
  transition:all .2s ease;
}

.why-list i{
  color:var(--brand-primary);
  margin-top:3px;
}

.why-image{
  background:#fff;
  padding:12px;
  border-radius:20px;
  max-width:420px;
}

.why-image img{
  border-radius:16px;
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

.owner-caption{
  font-size:14px;
  color:#666;
  margin-top:8px;
}

/* ---------------------------------------------------</WHY CHOOSE SIMPLE>--------------------------------------------------- */

/* --------------------------------------------------- Contact Section --------------------------------------------------- */

.dki-contact {
  padding: 100px 0;
  color:var(--brand-text);
}

.contact-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
 color:var(--brand-text);
}

/* CTA */
.contact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FORM */

.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.contact-form-wrap .form-control {
  background: #f9fafb;
  border: 1px solid #d1d5db;
  color: #111827;
}

.contact-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border: 1px solid #e5e7eb;
}

.contact-card .form-control {
  height: 52px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.contact-card textarea.form-control {
  height: auto;
  min-height: 120px;
}

.contact-card .form-control:focus {
  border-color: #1d4ed8; /* blue */
  box-shadow: 0 0 0 3px rgba(29,78,216,0.15);
}

.contact-form-header h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-form-header p {
  font-size: 20px;
  font-weight: 800;
  color: #6b7280;
}

.contact-card .mb-3 {
  margin-bottom: 16px;
}

.form-trust-text {
  text-align: left;
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}

.contact-card button {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
}


.recaptcha-disclaimer {
  font-size: 11px;
  color: #6b7280;
  margin-top: 10px;
  line-height: 1.4;
  opacity: 0.85;
}

.recaptcha-disclaimer a {
  color: #6b7280;
  text-decoration: underline;
}

.recaptcha-disclaimer a:hover {
  color: #111827;
}

.contact-urgency{
  background:#fff3cd;
  padding:10px 15px;
  border-radius:8px;
  font-weight:600;
  margin-bottom:15px;
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-heading {
    font-size: 32px;
  }

  .contact-cta {
    flex-direction: column;
  }

  .contact-cta .btn {
    width: 100%;
  }

}



/* ---------------------------------------------------
MOBILE CALL BAR
--------------------------------------------------- */

.mobile-call-bar{

position:fixed;
bottom:0;
left:0;
width:100%;

display:flex;

box-shadow:0 -4px 12px rgba(0,0,0,.25);

z-index:9999;

}

.mobile-call-bar a{

flex:1;
text-align:center;
padding:16px;

font-size:18px;
font-weight:700;

text-decoration:none;
color:white;

transition:.2s;

}

.mobile-call-bar a:active{

transform:scale(.96);

}

.mobile-call-btn{

background:#1E90FF;

}

.mobile-text-btn{

background:#28c76f;

}

/* ---------------------------------------------------
FOOTER
--------------------------------------------------- */
.cta-section{
  background:linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-primary-dark)
  );
  margin-bottom:0;
  padding-bottom:60px;
  color:#fff;
  position:relative;
  z-index:2;
}

footer{
  margin-top:-40px;
  padding-top:60px;
}

footer a{
  color:#ccc;
  text-decoration:none;
  transition:.2s;
}
footer a:hover{
  color:white;
}

.site-footer{
  background: linear-gradient(180deg, #0b1f3a, #000);
  color:white;
  padding:0 0 30px;
}

.site-footer .row > div {
  margin-bottom: 20px;
}

/* CTA STRIP */
.footer-cta{
  padding:60px 20px;
  background:rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.footer-cta h3{
  font-size:32px;
  font-weight:800;
  margin-bottom:10px;
}

.footer-cta p{
  color:rgba(255,255,255,0.75);
  margin-bottom:20px;
}

/* LINKS */

.site-footer h5{
  margin-bottom:20px;
  font-weight:700;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#ccc;
  text-decoration:none;
  transition:.2s;
}

.footer-links a:hover{
  color:white;
}

/* EXTRA INFO */

.footer-service-area{
  font-size:14px;
  color:#9ca3af;
  margin-top:15px;
}

.footer-trust{
  font-size:14px;
  margin-top:10px;
  color:#facc15;
}



/* BOTTOM */

.footer-bottom{
  text-align:center;
  font-size:14px;
  opacity:.7;
}

.footer-trust i{
  color:#facc15;
  margin-right:6px;
}

.footer-trust{
  font-size:14px;
  margin-top:10px;
  color:#facc15;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.footer-trust .dot{
  width:4px;
  height:4px;
  background:#6b7280;
  border-radius:50%;
  display:inline-block;
}

.site-footer a i{
  margin-right:6px;
  transition:.2s;
}

.site-footer a:hover i{
  transform:translateX(2px);
}

.footer-hours{
  margin-top:10px;
  font-size:14px;
  color:#9ca3af;
}

.footer-hours i{
  margin-right:6px;
}



/* MOBILE BAR */

.mobile-call-bar{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  display:flex;
  z-index:999;
}

.mobile-call-btn,
.mobile-text-btn{
  flex:1;
  text-align:center;
  padding:14px;
  color:#fff;
  font-weight:600;
  text-decoration:none;
}

.mobile-call-btn{
  background:#2563eb;
}

.mobile-text-btn{
  background:#16a34a;
}

/* prevent content being hidden behind bar */

@media (max-width:768px){
  body{
    padding-bottom:70px;
  }

  .footer-cta h3{
    font-size:26px;
  }
}

/* --------------------------------------------------- CONTACT WIDGET --------------------------------------------------- */

.DKI-contact-fab-wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

.DKI-contact-fab-label {
  background: #111;
  color: #fff;
  padding: 6px 10px;
  margin-right: -5px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.DKI-contact-fab-wrap:hover .DKI-contact-fab-label {
  transform: translateX(-2px);
}

.DKI-contact-fab-label {
  transform: translateX(10px);
  opacity: 0;
  animation: dkiFadeIn 0.4s ease forwards;
  animation-delay: 1.5s;
}

@keyframes dkiFadeIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.DKI-contact-fab {
  
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #53AA1B; /* your green */
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;

  transition: all 0.3s ease;
}

.DKI-contact-fab:hover {
  transform: scale(1.1);
}

/* Pulse animation */
.DKI-contact-fab::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(83,170,27,0.4);
  animation: DKI-pulse 2s infinite;
  z-index: -1;
}

@keyframes DKI-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* Modal */
.DKI-contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 10000;
}

.DKI-contact-modal.active {
  display: flex;
}

.DKI-contact-modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.DKI-contact-close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.DKI-contact-actions .btn {
  font-weight: 600;
}

.grecaptcha-badge { visibility: hidden; }