* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.ad-services-body {
	font-family: 'GeneralSans-Light', sans-serif!important;
	background: #000000;
	min-height: 100vh;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
    gap: 40px;
}

.ad-services-h2{
    font-size: 36px;
    line-height: 1.2;
    font-weight: normal;
    color: #ffffff;
    text-align: center; 
    font-family: 'alwaysdry-SansRegular';  
     width:100%; 
    letter-spacing: -0.6px;  
 }

 .ad-services-subtitle{
  font-family: 'GeneralSans-Regular', sans-serif!important;
  font-size: 22px;
    line-height: 1.4;
    font-weight: normal;
    color: #62b92c;
    text-align:center; 
    margin-top: 8px;
 }

.ad-services-slider-container {
	width: 100%;
	max-width: 100%;
	height: 80vh;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ad-services-now-showing {
	position: absolute;
	top: 20px;
	left: 20px;
	color: #9fff6b;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
}

.ad-services-now-showing::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #9fff6b;
	border-radius: 50%;
}

.ad-services-accordion-slider {
	display: flex; 
	height: 100%;
	position: relative;
    gap: 40px;    
	padding: 20px 0px!important;
}
 

.ad-services-slide {
	flex: 0.5;
	position: relative;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	filter: grayscale(1);
    border-radius: 20px; 
}

.ad-services-slide:hover {
	filter: grayscale(0);
}

.ad-services-slide.active {
	flex: 2.5;
	filter: grayscale(0);
}

.ad-services-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent -20%, rgb(0, 0, 0) 100%);
}

.ad-services-slide-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	color: white;
	z-index: 2;
}

.ad-services-slide.active .ad-services-slide-content {
	bottom: 30px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.ad-services-slide-number {
    font-family: 'dmc5', sans-serif!important;
	font-size: 64px;
	font-weight: 100;
	color: rgb(255, 255, 255);
	line-height: 1;
	position: absolute;
	bottom: 30px;
	left: 30px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-services-slide.active .ad-services-slide-number {
	bottom: auto;
	top: -50px;
	font-size: 48px;
	left: 0;
}

.ad-services-car-brand {
    font-family: 'CadillacGothic-Regular', Arial, NanumGothic, sans-serif!important;
	font-size: 16px;
	font-weight: 100;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 5px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	position: absolute;
	bottom: 100px;
	left: 30px;
	white-space: nowrap;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
}

.ad-services-slide.active .ad-services-car-brand {
	transform: rotate(0deg);
	position: static;
	transform-origin: unset;    
    color: #ffffff; 
    font-family: 'alwaysdry-SansRegular', sans-serif !important;
    font-size: 30px;
    font-weight: 700; 
    text-decoration:underline;
}

.ad-services-car-name {
    font-family: 'alwaysdry-SansRegular', sans-serif!important;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.ad-services-slide.active .ad-services-car-name {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.ad-services-car-subtitle {
    font-size: 18px;
    letter-spacing: 0.6px;
	color: rgb(255, 255, 255);
	margin-bottom: 25px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.ad-services-slide.active .ad-services-car-subtitle {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.ad-services-car-specs {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.ad-services-slide.active .ad-services-car-specs {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.ad-services-spec-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4px;
	font-size: 14px;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-services-slide.active .ad-services-spec-row {
	opacity: 1;
	transform: translateX(0);
}

.ad-services-slide.active .ad-services-spec-row:nth-child(1) {
	transition-delay: 0.6s;
}
.ad-services-slide.active .ad-services-spec-row:nth-child(2) {
	transition-delay: 0.65s;
}
.ad-services-slide.active .ad-services-spec-row:nth-child(3) {
	transition-delay: 0.7s;
}
.ad-services-slide.active .ad-services-spec-row:nth-child(4) {
	transition-delay: 0.75s;
}

.ad-services-spec-label {
    font-family: 'CadillacGothic-NarrowRegular', Arial, NanumGothic, sans-serif!important;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1px;
}

.ad-services-spec-value {
    font-family: 'CadillacGothic-Regular', Arial, NanumGothic, sans-serif!important;
	color: white;
    font-size: 18px;
    font-weight: 100;
    letter-spacing:  px;
}

.ad-services-performance-badges {
	display: flex;
	gap: 12px;
	margin-top: 60px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.ad-services-slide.active .ad-services-performance-badges {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

.ad-services-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px) brightness(3.5);
}

.ad-services-badge span {
    font-family: 'GeneralSans-Regular', sans-serif!important;
    font-size: 14px;
    letter-spacing: 0.6px;
    color: #ffffff;
}

.ad-services-slide.active .ad-services-badge {
	opacity: 1;
	transform: scale(1);
}

.ad-services-slide.active .ad-services-badge:nth-child(1) {
	transition-delay: 0.85s;
}
.ad-services-slide.active .ad-services-badge:nth-child(2) {
	transition-delay: 0.9s;
}
.ad-services-slide.active .ad-services-badge:nth-child(3) {
	transition-delay: 0.95s;
}

.ad-services-badge-icon {
	width: 8px;
	height: 8px;
	background: #73e600;
	border-radius: 50%;
}

.ad-services-add-button {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 2px solid #73e600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease;
	z-index: 3;
}

.ad-services-add-button::before,
.ad-services-add-button::after {
	content: "";
	position: absolute;
	background: #73e600;
	transition: all 0.4s ease;
}

.ad-services-add-button::before {
	width: 12px;
	height: 2px;
}

.ad-services-add-button::after {
	width: 2px;
	height: 12px;
	transform: rotate(0deg);
}

.ad-services-slide.active .ad-services-add-button::before {
	transform: rotate(0deg);
}

.ad-services-slide.active .ad-services-add-button::after {
	opacity: 0;
	transform: scale(0);
}

.ad-services-navigation-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 4;
	backdrop-filter: blur(10px);
}

.ad-services-nav-prev {
	left: 20px;
}

.ad-services-nav-next {
	right: 20px;
}

.ad-services-navigation-arrows:hover {
	background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
	.ad-services-body {
		padding: 20px 12px !important;
		gap: 20px;
	}

	.ad-services-h2 {
		font-size: 24px;
		padding: 0 15px;
	}

	.ad-services-subtitle {
		font-size: 16px;
		padding: 0 15px;
	}

	.ad-services-slider-container {
		height: auto;
		min-height: 400px;
		margin-bottom: 20px;
		overflow: visible;
	}

	.ad-services-accordion-slider {
		flex-direction: column;
		gap: 15px;
		padding: 15px 0px !important;
		height: auto;
		overflow: visible;
	}

	.ad-services-slide {
		flex: 1 !important;
		min-height: 120px;
		width: 100%;
		border-radius: 15px;
	}

	.ad-services-slide.active {
		flex: 1 !important;
		min-height: auto;
		height: auto;
		padding-bottom: 20px;
		overflow: visible;
	}

	.ad-services-slide-content {
		position: relative;
		bottom: auto;
		left: 15px;
		right: 15px;
		padding: 15px 0;
		display: flex;
		flex-direction: column;
		overflow: visible;
		width: calc(100% - 30px);
	}

	.ad-services-slide.active .ad-services-slide-content {
		bottom: auto;
		position: relative;
		padding: 20px 15px;
	}

	.ad-services-slide-number {
		font-size: 36px;
		position: relative;
		bottom: auto;
		left: auto;
		margin-bottom: 10px;
		display: inline-block;
	}

	.ad-services-slide.active .ad-services-slide-number {
		position: relative;
		top: auto;
		left: auto;
		font-size: 32px;
		margin-bottom: 10px;
	}

	.ad-services-car-brand {
		transform: none !important;
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		font-size: 18px !important;
		margin-bottom: 8px;
		white-space: normal;
		letter-spacing: 0.4px;
		word-wrap: break-word;
		overflow-wrap: break-word;
		width: 100%;
		line-height: 1.3;
	}

	.ad-services-slide.active .ad-services-car-brand {
		font-size: 22px !important;
		margin-bottom: 10px;
		text-decoration: underline;
		line-height: 1.3;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.ad-services-car-subtitle {
		font-size: 14px;
		margin-bottom: 15px;
		line-height: 1.4;
		word-wrap: break-word;
		overflow-wrap: break-word;
		width: 100%;
	}

	.ad-services-car-specs {
		margin-bottom: 15px;
	}

	.ad-services-spec-row {
		flex-direction: column;
		margin-bottom: 12px;
		font-size: 13px;
		gap: 4px;
		width: 100%;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.ad-services-spec-label {
		font-size: 13px;
		margin-bottom: 4px;
		color: rgba(255, 255, 255, 0.8);
	}

	.ad-services-spec-value {
		font-size: 14px;
		color: #ffffff;
		line-height: 1.4;
		word-wrap: break-word;
		overflow-wrap: break-word;
		width: 100%;
	}

	.ad-services-performance-badges {
		flex-direction: column;
		gap: 8px;
		margin-top: 20px;
		width: 100%;
		flex-wrap: wrap;
	}

	.ad-services-badge {
		width: 100%;
		padding: 10px 12px;
		font-size: 13px;
		justify-content: flex-start;
		box-sizing: border-box;
		min-width: 0;
	}

	.ad-services-badge span {
		font-size: 13px;
		word-break: break-word;
	}

	.ad-services-badge a {
		color: #ffffff;
		text-decoration: none;
		display: block;
		width: 100%;
	}

	.ad-services-badge a:hover {
		text-decoration: underline;
	}

	.ad-services-add-button {
		display: none;
	}

	.ad-services-slide::before {
		background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgb(0, 0, 0) 100%);
	}
}



/* tab css */
.ar-serv-tab-wrapper {
  max-width: 100%;
    margin: auto;
    width: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


/* ----------------------------- */
/* DESKTOP TABS */
/* ----------------------------- */
.ar-serv-tab-nav {
  display: flex;
  background: #ffffff10;
    border-radius: 100px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  width: 50%;
}

.ar-serv-tab-btn {
    font-family: 'alwaysdry-SansRegular', sans-serif!important;
    flex: 1;
    padding: 18px 14px;
    border: none;
    cursor: pointer;
    background: #f4f4f400;
    color: #ffffff;
    font-size: 16px;
    border-radius: 100px;
    letter-spacing: 0.4px;
    font-style: italic;
}

.ar-serv-tab-btn.active {
    font-family: 'alwaysdry-SansRegular', sans-serif!important;
    color: #73e600;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #000000;
    font-weight: 100;
    transition: all 0.3s ease; 
    border-radius: 100px; 
    box-shadow: 0px 10px 40px black;
}


/* Tab Panels */
.ar-serv-tab-panel {
    display: none; 
    width: 100%;
    background: #10101070;
    margin-top: 60px;
    padding: 0px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ar-serv-tab-panel.active {
  display: block;
}

.ar-serv-tab-content {
  padding: 15px 10px;
}

.ar-serv-tab-acc-title {
    display: none;
  }

/* ----------------------------- */
/* MOBILE ACCORDION */
/* ----------------------------- */
@media (max-width: 600px) {

  /* Hide desktop tabs */
  .ar-serv-tab-nav {
    display: none;
  }

  /* Panels always visible for accordion */
  .ar-serv-tab-panel {
        display: block;
        padding: 0px;
        border-radius: 0px;
        background: #10101000;
        border: none;
        margin-top: 30px;
  }

  /* Accordion title */
  .ar-serv-tab-acc-title {
        font-family: 'alwaysdry-SansRegular', sans-serif !important;
        flex: 1;
        padding: 12px 16px; 
        cursor: pointer;
        background: #f4f4f410;
        color: #73e600;
        font-size: 16px;
        border-radius: 100px;
        letter-spacing: 0.4px;
        font-style: italic;
        display: block;
        text-align: center;
        margin-bottom: 15px;
  }

  /* Accordion collapsed content */
  .ar-serv-tab-panel .ar-serv-tab-content {
    display: none;
    padding: 0;
  }

  /* Accordion open */
  .ar-serv-tab-panel.open .ar-serv-tab-content {
    display: block;
    padding: 0;
  }

  /* Additional mobile fixes for very small screens */
  .ad-services-slider-container {
    min-height: 350px;
  }

  .ad-services-slide {
    min-height: 100px;
  }

  .ad-services-car-brand {
    font-size: 16px !important;
  }

  .ad-services-slide.active .ad-services-car-brand {
    font-size: 20px !important;
  }

  .ad-services-car-subtitle {
    font-size: 13px;
  }

  .ad-services-spec-label,
  .ad-services-spec-value {
    font-size: 12px;
  }

  .ad-services-badge {
    padding: 8px 10px;
  }

  .ad-services-badge span {
    font-size: 12px;
  }

  .ad-services-badge a {
    font-size: 12px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .ad-services-body {
    padding: 15px 8px;
    gap: 15px;
  }

  .ad-services-h2 {
    font-size: 20px;
  }

  .ad-services-subtitle {
    font-size: 14px;
  }

  .ad-services-slider-container {
    min-height: 300px;
  }

  .ad-services-slide-content {
    left: 10px;
    right: 10px;
    padding: 10px 0;
  }

  .ad-services-slide.active .ad-services-slide-content {
    padding: 15px 10px;
  }

  .ad-services-slide-number {
    font-size: 28px;
  }

  .ad-services-slide.active .ad-services-slide-number {
    font-size: 28px;
  }

  .ad-services-car-brand {
    font-size: 15px !important;
  }

  .ad-services-slide.active .ad-services-car-brand {
    font-size: 18px !important;
  }

  .ad-services-car-subtitle {
    font-size: 12px;
  }

  .ad-services-spec-label {
    font-size: 11px;
  }

  .ad-services-spec-value {
    font-size: 12px;
  }

  .ad-services-badge {
    padding: 8px;
  }

  .ad-services-badge span {
    font-size: 11px;
  }
}

/* tab css */