/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
	
	color: #ffffff;
	font-family: 'Arial', sans-serif;
}

/* Main Footer Container */
.footer-main {
	background-color: #131414;
    width: 100%
}

.footer-main-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 20px;
	border-bottom: 1px solid #333;
}

/* Footer Navigation Wrapper */
.footer-nav-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 50px;

	border-bottom: 1px solid #FFFFFF66;
    padding-bottom: 70px;
}

.footer-column {
	display: flex;
	flex-direction: column;
}

.footer-title {
font-size: 26px;
font-family: Akrobat;
color: #f8f9fa;
font-weight: 700;
letter-spacing: 0%;
	margin: 0 0 20px 0;
	text-transform: none;
	padding-bottom: 15px;
	border-bottom: 1px solid #333;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu a {
	text-decoration: none;
font-size: 16px;
font-family: Open Sans;
color: #ffffff;
font-weight: 400;
line-height: 34px;
letter-spacing: 0%;
	transition: color 0.3s ease;
}

.footer-menu a:hover {
	color: inherit;
	text-decoration: none;
}

/* Contact Info */
.contact-info {
	margin-bottom: 20px;
}

.contact-info p {
	margin: 8px 0;
font-size: 16px;
font-family: Open Sans;
color: #ffffff;
font-weight: 400;
line-height: 34px;
letter-spacing: 0%;
}

.contact-info strong {
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

/* Social Icons */
.social-icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 18px;
}

.social-icon:hover {
	background-color: #ffffff;
	color: #1a1a1a;
}

/* Branding Section */
.footer-branding {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.footer-logo {
	flex: 0 0 auto;
}

.footer-logo img {
	height: 90px;
	width: auto;
	display: block;
}

/* Certifications */
.footer-certifications {
	display: flex;
	align-items: end;
	gap: 20px;
	flex-wrap: wrap;
	flex: 1 1 auto;
	justify-content: center;
    flex-direction: column;
}

.footer-certifications img {
	width: auto;
	display: block;
	transition: transform 0.3s ease;
}

.footer-certifications img:hover {
	transform: scale(1.05);
}

/* Trustpilot Widget */
.trustpilot-widget {
	flex: 0 0 auto;
	display: flex;
    gap: 20px;
}

.trustpilot-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background-color: #ffffff;
	color: #1a1a1a;
	text-decoration: none;
	border-radius: 10px;
	font-size: 14px;
font-family: Open Sans;
color: #39315e;
font-weight: 600;
line-height: 150%;
letter-spacing: 2%;
text-transform: capitalize;
	transition: all 0.3s ease;
}

.trustpilot-link:hover {
	background-color: #f0f0f0;
}

.trustpilot-link img {
	width: 100px!important;
    height: auto;
}

/* Footer Bottom */
.footer-bottom {
	background-color: #34b2aa36;
	padding: 20px 40px;
}

.footer-bottom-content {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-copyright {
	color: #333;
	font-size: 13px;
}

.footer-copyright p {
	margin: 0;
    font-size: 14px;
font-family: Open Sans;
color: #000000;
font-weight: 400;
line-height: 34px;
letter-spacing: 0%;
}

.footer-bottom-nav {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-bottom-nav a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
font-family: Open Sans;
color: #000000;
font-weight: 400;
line-height: 34px;
letter-spacing: 0%;
	transition: color 0.3s ease;
}

.footer-bottom-nav a:hover {
	color: #666;
}

/* ========================================
   MOBILE NAVIGATION (ACCORDION)
   ======================================== */

.site-footer .mobile-nav {
	display: none;
}

.footer-accordion {
	margin-bottom: 0;
	border-bottom: 1px solid #333;
}

.footer-desktop-logo{
    display: block;
}

.accordion-trigger {
	width: 100%;
	padding: 20px 0;
	background: transparent;
	border: none;
	color: #ffffff;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s ease;
    font-size: 22px;
    font-family: Akrobat;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0%;
}

.accordion-icon {
	font-size: 12px;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accordion-trigger.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding-left: 0;
}

.accordion-content.active {
	max-height: 500px;
	padding-bottom: 15px;
}

.accordion-content .footer-menu {
	padding: 0px 0px 0px 20px;
}

.accordion-content .footer-menu li {
	padding: 8px 0;
	border-bottom: none;
}

.accordion-content .footer-menu li a{
	font-size: 18px;
    font-family: Akrobat;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0%;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
	.footer-main-container {
		padding: 50px 30px;
	}

	.footer-nav-wrapper.desktop-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.footer-branding {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-certifications {
		justify-content: flex-start;
	}

	.trustpilot-widget {
		flex: 1 1 100%;
	}
}

/* Mobile View (max 767px) */
@media (max-width: 767px) {
	.desktop-nav {
		display: none;
	}

	.site-footer .mobile-nav {
		display: block;
	}

	.footer-main-container {
		padding: 40px 20px;
		border-bottom: 1px solid #333;
	}

	.footer-logo {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}

	.footer-logo img {
		height: 60px;
	}

	.footer-branding {
		flex-direction: column;
		align-items: center;
		margin-bottom: 0;
		gap: 30px;
	}

	.footer-certifications img {
		width: 100%
	}

	.footer-certifications {
		width: 100%;
		justify-content: center;
		gap: 15px;
	}

	.footer-certifications img {
		height: 100px!important;
	}
	
	.trustpilot-link{
		flex-direction: column;
	}
	
	.trustpilot-link img{height: auto!important}

	.trustpilot-widget {
		width: 100%;
		text-align: center;
	}

	.trustpilot-link {
		justify-content: center;
	}

	.accordion-trigger {
		padding: 18px 0;
		font-size: 22px;
	}

	.footer-bottom-content {
		flex-direction: column-reverse;
		text-align: center;
        gap: 0px;
	}

	.footer-bottom-nav {
		justify-content: center;
		width: 100%;
	}

	.footer-bottom-nav a {
		font-size: 12px;
	}

	.footer-copyright {
		width: 100%;
	}
    .footer-desktop-logo{
        display: none!important;
    }
    .footer-menu li {
        margin-bottom: 0px;
    }
    .footer-menu a{
        line-height: 1.15;
    }
    .footer-certifications{
        text-align: center;
        align-items: center;
    }
    .trustpilot-link img{
        height: auto;
    }
	.mobile-logo-ht{
		width: 210px;
	}
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
	.footer-main-container {
		padding: 30px 15px;
	}

	.accordion-trigger {
		font-size: 18px;
		padding: 16px 0;
	}

	.footer-certifications {
		gap: 10px;
	}

	.footer-certifications img {
		width: 100%;
		height: auto;
	}

	.trustpilot-link {
		font-size: 12px;
		padding: 10px 15px;
	}

	.footer-bottom {
		padding: 15px;
	}

	.footer-bottom-nav {
		gap: 15px;
	}
}