:root {
	--global-palette1: #c52128;
    --global-palette4: #75675b;
    --global-palette9: #ffffff;
}

.single-location h2{
    text-transform: uppercase !important;
}

.single-location .wpb_raw_html {
	margin-bottom: 0 !important;
}

.location, .location .entry-content {
    margin: 0 !important;
}


/* location archive */
.location-archive-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 0;
    margin-bottom: 50px;
}

.location-archive-list .location-item img{
    border-radius: 50%;
    object-fit: cover !important;
    background: #f9f9f9;
    padding: 5px !important;
    border: 1px solid var(--global-palette1);
    width: 100%;
    min-height: 350px;
    max-height: 350px;
    max-width: 350px;
    min-width: 350px;
}
.location-archive-list .location-item{
    text-align: center;
}
/* .location-archive-list .location-item{
    background: var(--global-palette9);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--global-palette1);
} */
.location-archive-list .location-item h3{
    font-size: 24px;
    margin-block: 0;
    text-align: center;
}
.location-archive-list .location-item h3 a{
    color: var(--global-palette1);
}

/* Hero section */
.hero-section {
	background-color: #3f3f3f;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px 60px;
	padding-block: 100px;
}

.hero-section .content-col .small-banner-text{
    background-color: #dc28286b;
    color: var(--global-palette9);
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    backdrop-filter: blur(11px);
}

.hero-section .content-col h1.vc_custom_heading {
    font-size: 35px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600 !important;
}
.hero-section .content-col .wpb_text_column {
	margin-bottom: 0;
}
.hero-section .content-col .wpb_text_column p{
	color: #fff;
    font-size: 20px;
}
.hero-section .review_content p {
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 22px;
    font-weight: 600;
    color: #fff !important;
}
.hero-section .review_content p i {
    color: #f5b031;
}
.hero-section .hero_section_call .call-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    font-size: 50px !important;
    line-height: 40px !important;
    color: white;
    font-weight: 800 !important;
	@media (max-width: 820px) {
        font-size: 35px !important;
    }
	@media (max-width: 420px) {
        font-size: 30px !important;
    }
}
.hero-section .hero_section_call .call-wrapper .svg-wrapper i {
    border-radius: 50%;
    height: 70px !important;
    width: 70px !important;
    font-size: 42px !important;
    display: flex;
    transition: all 0.3s ease-in-out;
    animation: ring 5s ease-in-out infinite;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--global-palette1);

	@media (max-width: 820px) {
        height: 50px !important;
        width: 50px !important;
        font-size: 24px !important;
    }
}

.form-col .vc_column-inner>.wpb_wrapper {
    background: var(--global-palette9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(11px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
	max-width: 500px;
    margin: 0 auto;
}
.form-col h2.vc_custom_heading  {
    color: #000;
    text-align: center !important;
    text-transform: uppercase;
    font-size: 30px;
	border-bottom: 2px solid var(--global-palette1);
}

.about-content .about_us_inner_cta-wrapper{
	justify-content: flex-start;
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-inline: 20px;
    padding-block: 50px;
}

.usp-grid .usp-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--global-palette1);
}

.usp-grid .usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(196, 30, 58, 0.15);
}

.usp-grid .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c41e3a, #e63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.usp-grid .usp-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.usp-grid .icon-wrapper svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.usp-grid .usp-card h3 {
    font-size: 1.5rem;
    color: var(--global-palette1);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}


/* about us buttons */
.about_us_inner_cta-wrapper {
    display: flex;
	justify-content: center;
    gap: 30px;
	@media (max-width: 480px) {
        gap: 15px;
        flex-wrap: wrap;
    }
}
.about_us_inner_cta-wrapper .btn-primary{
	font-weight: 500;
   background: var(--global-palette1);
   text-transform: uppercase;
   fill: white;
   color: white;
   border-style: solid;
   border-width: 2px;
   border-color: var(--global-palette1);
   border-radius: 3px;
   padding: 10px 15px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 10px;
   text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.about_us_inner_cta-wrapper .btn-primary:hover {
   background-color: #fff;
	color: var(--global-palette1);
}

/* Our project  */
.recent-project-section {
	display: block !important;
	margin-block: 50px 30px;
}

.recent-project-section .container {
	max-width: 100% !important;
}


.recent-project-section .project-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: space-between;
	margin-top: 40px;
}


.recent-project-section .project-list .col-3 {
	flex: 0 0 calc(25% - 15px);
	background: #e4dfdb;
	padding: 15px;
	text-align: center;
	transition: all 0.3s ease;
}

.recent-project-section .project-list .col-3:hover {
	transform: translateY(-6px);
}

.recent-project-section .project-list .project-image {
	height: 288px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.recent-project-section .project-list .project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recent-project-section .project-list .project-title {
	margin-top: 14px;
}

.recent-project-section .project-list p {
	font-size: 16px;
	color: #444;
	line-height: 1.5;
	text-align: center !important;
}


.recent-project-section .view-all-btn {
	display: flex;
	justify-content: end;
	align-items: center;
	margin-top: 26px;
}

/* CTA Section */
.cta-section{
	background-color: #beb1a8;
	padding-block: 30px;
}
.cta-section h2.vc_custom_heading {
    color: var(--global-palette9);
    font-weight: 600 !important;
	font-size: 36px;
    text-shadow: 0 2px 6px rgb(0 0 0 / 45%);
}
.cta-section .wpb_text_column p {
    font-size: 24px;
    color: var(--global-palette9);
    text-align: center;
    text-shadow: 0 2px 6px rgb(0 0 0 / 45%);
}

/* About premier office */
.about-premier-office{
    padding-block: 100px;
    background-color: var(--global-palette9);
}

.about-premier-office .content-column .feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.about-premier-office .content-column .feature-list ul li {
    position: relative;
    padding-left: 38px;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}

.about-premier-office .content-column .feature-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--global-palette1);
    color: var(--global-palette1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

/* Faqs */
.location-faqs{
    padding-block: 100px;
}

/* Testimonial section */
.testimonial_section{
    background-color: var(--global-palette9);
	padding-block: 100px;
}


/* Responsive */
@media (max-width: 1024px) {
	.recent-project-section .project-list .col-3 {
		flex: 0 0 calc(50% - 15px);
	}
}

@media (max-width:820px) {
	.hero-section, .testimonial_section, .location-faqs, .about-premier-office{
		padding-block: 30px;
	}
    .usp-grid {
        grid-template-columns: 1fr;
    }
    .usp-card {
        padding: 30px 25px;
    }
    .about-premier-office .content-column h2.vc_custom_heading {
        font-size: 30px;
    }
    .about-premier-office .content-column .feature-list ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .location-faqs h2.cfm-section-title{
        font-size: 30px;
    }
    .testimonial_section  h2.vc_custom_heading {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
	.recent-project-section .project-list {
		gap: 15px;
	}

	.recent-project-section .project-list .col-3 {
		flex: 0 0 100%;
		padding: 25px 20px;
	}

	.recent-project-section .project-list h5 {
		font-size: 18px;
	}

	.recent-project-section .project-list p {
		font-size: 15px;
	}
	.recent-project-section .view-all-btn {
		justify-content: center;
	}
	.faq_with_form .cfm-section-title{
		font-size: 24px;
	}
	.cta-section h2.vc_custom_heading{
		font-size: 24px;
	}
}

/* Animation */
@keyframes ring{
	0% {
    transform: rotate(0);
}
1% {
    transform: rotate(30deg);
}
3% {
    transform: rotate(-28deg);
}
5% {
    transform: rotate(34deg);
}
7% {
    transform: rotate(-32deg);
}
9% {
    transform: rotate(30deg);
}
11% {
    transform: rotate(-28deg);
}
13% {
    transform: rotate(26deg);
}
15% {
    transform: rotate(-24deg);
}
17% {
    transform: rotate(22deg);
}
19% {
    transform: rotate(-20deg);
}
21% {
    transform: rotate(18deg);
}
23% {
    transform: rotate(-16deg);
}
25% {
    transform: rotate(14deg);
}
27% {
    transform: rotate(-12deg);
}
29% {
    transform: rotate(10deg);
}
31% {
    transform: rotate(-8deg);
}
33% {
    transform: rotate(6deg);
}
35% {
    transform: rotate(-4deg);
}
37% {
    transform: rotate(2deg);
}
39%, 100% {
    transform: rotate(0);
}
}