
* {
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: var(--text-primary);
	line-height: 1.6;
}

.site-main {
	padding-top: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===================================
   Header Styles
   =================================== */

.solar-header {
	background: transparent;
	box-shadow: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.solar-header.scrolled {
	background: rgba(var(--white-rgb), 0.70);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: var(--shadow-medium);
	border-radius: 0 0 20px 20px;
	margin: 0px 20px 0;
	max-width: calc(100% - 40px);
}

@media (max-width: 768px) {
	.solar-header.scrolled {
		margin: 0px 0px 0px !important;
		width: 100% !important;
		max-width: 100%!important;
	}
}

.solar-header.scrolled .header-top {
	padding: 12px 20px;
}

.header-container {
	max-width: 100%;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
	transition: padding 0.3s ease;
}

.header-logo img {
	max-height: 50px;
	width: auto;
	transition: max-height 0.3s ease;
}

.solar-header.scrolled .header-logo img {
	max-height: 45px;
}

.header-logo .site-title {
	font-size: 24px;
	font-weight: bold;
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.solar-header.scrolled .header-logo .site-title {
	color: var(--color-secondary);
}

.desktop-nav {
	display: none;
}

.desktop-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
	align-items: center;
}

.desktop-nav a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
	padding: 5px 0;
}

.solar-header.scrolled .desktop-nav a {
	color: var(--text-primary);
}

.desktop-nav a:hover {
	color: var(--color-primary);
}

.desktop-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
	width: 100%;
}

.header-actions {
	display: none;
	align-items: center;
	gap: 15px;
}

.search-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--white);
	transition: color 0.3s, transform 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solar-header.scrolled .search-toggle {
	color: var(--text-primary);
}

.search-toggle:hover {
	color: var(--color-primary);
	transform: scale(1.1);
}

.whatsapp-cta {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #25D366;
	color: var(--white);
	padding: 10px 18px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
	background: #20BA5A;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta svg {
	flex-shrink: 0;
}

.whatsapp-cta span {
	display: inline-block;
}

/* Search Overlay */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--ptn-black-dark-rgb), 0.95);
	backdrop-filter: blur(10px);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.search-overlay.active {
	opacity: 1;
	visibility: visible;
}

.search-overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 600px;
}

.search-close {
	position: absolute;
	top: -60px;
	right: 0;
	background: transparent;
	border: none;
	color: var(--white);
	cursor: pointer;
	padding: 10px;
	transition: transform 0.3s;
}

.search-close:hover {
	transform: rotate(90deg);
}

.search-form {
	display: flex;
	align-items: center;
	background: var(--white);
	border-radius: 50px;
	padding: 5px;
	box-shadow: var(--shadow-large);
}

.search-form input {
	flex: 1;
	border: none;
	outline: none;
	padding: 15px 25px;
	font-size: 18px;
	border-radius: 50px;
}

.search-form button {
	background: var(--btn-primary-bg);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--white);
	transition: background 0.3s;
}

.search-form button:hover {
	background: var(--btn-primary-hover);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 3px;
	transition: all 0.3s;
}

.solar-header.scrolled .mobile-menu-toggle span {
	background: var(--color-secondary);
}

/* Mobile Sidebar */
.mobile-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.mobile-sidebar.active {
	opacity: 1;
	visibility: visible;
}

.mobile-sidebar-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--ptn-black-dark-rgb), 0.7);
}

.mobile-sidebar-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	/* max-width: 350px; */
	height: 100%;
	background: var(--white);
	box-shadow: var(--shadow-medium);
	transform: translateX(100%);
	transition: transform 0.3s;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.mobile-sidebar.active .mobile-sidebar-content {
	transform: translateX(0);
}

.mobile-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid var(--border-primary);
}

.mobile-sidebar-header img {
	max-height: 40px;
}

.mobile-site-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-secondary);
}

.mobile-sidebar-close {
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	padding: 0;
}

.mobile-sidebar-close span {
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--color-secondary);
	top: 50%;
	left: 0;
}

.mobile-sidebar-close span:first-child {
	transform: rotate(45deg);
}

.mobile-sidebar-close span:last-child {
	transform: rotate(-45deg);
}

.mobile-nav {
	padding: 20px;
	flex: 1;
}

.mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav li {
	margin-bottom: 10px;
}

.mobile-nav a {
	color: var(--text-primary);
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-primary);
}

.mobile-sidebar-footer {
	padding: 20px;
	border-top: 1px solid var(--border-primary);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--bg-secondary);
	color: var(--text-primary);
	padding: 15px;
	border-radius: 5px;
	border: none;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.mobile-search-btn:hover {
	background: var(--gray-light);
}

.mobile-search-btn svg {
	flex-shrink: 0;
}

.btn-mobile-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #25D366;
	color: var(--white);
	padding: 15px;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-mobile-whatsapp:hover {
	background: #20BA5A;
}

.btn-mobile-whatsapp svg {
	flex-shrink: 0;
}



@media (min-width: 768px) {
	.desktop-nav {
		display: block;
	}
	
	.header-actions {
		display: flex;
	}
	
	.mobile-menu-toggle {
		display: none;
	}
	
	.hero-title {
		font-size: 56px;
	}
	
	.hero-subtitle {
		font-size: 24px;
	}
	
	.about-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.whatsapp-cta span {
		display: inline-block;
	}
}


.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block-end: 1rem;
    padding-block-start: 1rem;
    position: relative
}

.site-header .site-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2
}

.site-header .site-branding {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: center
}

.site-header .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.site-header .header-inner .custom-logo-link {
    display: block
}

.site-header .header-inner .site-branding .site-description,
.site-header .header-inner .site-branding .site-title {
    margin: 0
}

.site-header .header-inner .site-branding .site-logo img {
    display: block
}

.site-header .header-inner .site-branding.show-logo .site-title,
.site-header .header-inner .site-branding.show-title .site-logo {
    display: none !important
}

.site-header.header-inverted .header-inner {
    flex-direction: row-reverse
}

.site-header.header-inverted .header-inner .site-branding {
    text-align: end
}

.site-header.header-stacked .header-inner {
    align-items: center;
    flex-direction: column;
    text-align: center
}

.site-footer {
    padding-block-end: 1rem;
    padding-block-start: 1rem;
    position: relative
}

.site-footer .site-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2
}

.site-footer .site-branding {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: center
}

.site-footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.site-footer .footer-inner .custom-logo-link {
    display: block
}

.site-footer .footer-inner .site-branding .site-description,
.site-footer .footer-inner .site-branding .site-title {
    margin: 0
}

.site-footer .footer-inner .site-branding .site-logo img {
    display: block
}

.site-footer .footer-inner .site-branding.show-logo .site-title,
.site-footer .footer-inner .site-branding.show-title .site-logo {
    display: none !important
}

.site-footer .footer-inner .copyright {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.site-footer .footer-inner .copyright p {
    margin: 0
}

.site-footer.footer-inverted .footer-inner {
    flex-direction: row-reverse
}

.site-footer.footer-inverted .footer-inner .site-branding {
    text-align: end
}

.site-footer.footer-stacked .footer-inner {
    align-items: center;
    flex-direction: column;
    text-align: center
}

.site-footer.footer-stacked .footer-inner .site-branding .site-title {
    text-align: center
}

.site-footer.footer-stacked .footer-inner .site-navigation .menu {
    padding: 0
}

@media(max-width:576px) {

    .site-footer:not(.footer-stacked) .footer-inner .copyright,
    .site-footer:not(.footer-stacked) .footer-inner .site-branding,
    .site-footer:not(.footer-stacked) .footer-inner .site-navigation {
        display: block;
        max-width: none;
        text-align: center;
        width: 100%
    }

    .site-footer .footer-inner .site-navigation ul.menu {
        justify-content: center
    }

    .site-footer .footer-inner .site-navigation ul.menu li {
        display: inline-block
    }
}

.site-header.header-stacked .site-navigation-toggle-holder {
    justify-content: center;
    max-width: 100%
}

.site-header.menu-layout-dropdown .site-navigation {
    display: none
}

.site-navigation-toggle-holder {
    align-items: center;
    display: flex;
    padding: 8px 15px
}

.site-navigation-toggle-holder .site-navigation-toggle {
    align-items: center;
    background-color: rgba(0, 0, 0, .05);
    border: 0 solid;
    border-radius: 3px;
    color: #494c4f;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: .5rem
}

.site-navigation-toggle-holder .site-navigation-toggle-icon {
    display: block;
    width: 1.25rem
}

.site-navigation-toggle-holder .site-navigation-toggle-icon:after,
.site-navigation-toggle-holder .site-navigation-toggle-icon:before {
    background-color: currentColor;
    border-radius: 3px;
    content: "";
    display: block;
    height: 3px;
    transition: all .2s ease-in-out
}

.site-navigation-toggle-holder .site-navigation-toggle-icon:before {
    box-shadow: 0 .35rem 0 currentColor;
    margin-block-end: .5rem
}

.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:before {
    box-shadow: none;
    transform: translateY(.35rem) rotate(45deg)
}

.site-navigation-toggle-holder .site-navigation-toggle[aria-expanded=true] .site-navigation-toggle-icon:after {
    transform: translateY(-.35rem) rotate(-45deg)
}

.site-navigation {
    align-items: center;
    display: flex
}

.site-navigation ul.menu,
.site-navigation ul.menu ul {
    list-style-type: none;
    padding: 0
}

.site-navigation ul.menu {
    display: flex;
    flex-wrap: wrap
}

.site-navigation ul.menu li {
    display: flex;
    position: relative
}

.site-navigation ul.menu li a {
    display: block;
    padding: 8px 15px
}

.site-navigation ul.menu li.menu-item-has-children {
    padding-inline-end: 15px
}

.site-navigation ul.menu li.menu-item-has-children:after {
    align-items: center;
    color: #666;
    content: "▾";
    display: flex;
    font-size: 1.5em;
    justify-content: center;
    text-decoration: none
}

.site-navigation ul.menu li.menu-item-has-children:focus-within>ul {
    display: block
}

.site-navigation ul.menu li ul {
    background: #fff;
    display: none;
    left: 0;
    min-width: 150px;
    position: absolute;
    top: 100%;
    z-index: 2
}

.site-navigation ul.menu li ul li {
    border-block-end: 1px solid #eee
}

.site-navigation ul.menu li ul li:last-child {
    border-block-end: none
}

.site-navigation ul.menu li ul li.menu-item-has-children a {
    flex-grow: 1
}

.site-navigation ul.menu li ul li.menu-item-has-children:after {
    transform: translateY(-50%) rotate(-90deg)
}

.site-navigation ul.menu li ul ul {
    left: 100%;
    top: 0
}

.site-navigation ul.menu li:hover>ul {
    display: block
}

footer .site-navigation ul.menu li ul {
    bottom: 100%;
    top: auto
}

footer .site-navigation ul.menu li ul ul {
    bottom: 0
}

footer .site-navigation ul.menu a {
    padding: 5px 15px
}

.site-navigation-dropdown {
    bottom: 0;
    left: 0;
    margin-block-start: 10px;
    position: absolute;
    transform-origin: top;
    transition: max-height .3s, transform .3s;
    width: 100%;
    z-index: 10000
}

.site-navigation-toggle-holder:not(.elementor-active)+.site-navigation-dropdown {
    max-height: 0;
    transform: scaleY(0)
}

.site-navigation-toggle-holder.elementor-active+.site-navigation-dropdown {
    max-height: 100vh;
    transform: scaleY(1)
}

.site-navigation-dropdown ul {
    padding: 0
}

.site-navigation-dropdown ul.menu {
    background: #fff;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%
}

.site-navigation-dropdown ul.menu li {
    display: block;
    position: relative;
    width: 100%
}

.site-navigation-dropdown ul.menu li a {
    background: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .102);
    color: #55595c;
    display: block;
    padding: 20px
}

.site-navigation-dropdown ul.menu li.current-menu-item a {
    background: #55595c;
    color: #fff
}

.site-navigation-dropdown ul.menu>li li {
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: max-height .3s, transform .3s
}

.site-navigation-dropdown ul.menu li.elementor-active>ul>li {
    max-height: 100vh;
    transform: scaleY(1)
}
/* ===== Footer Styles ===== */
.solar-footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)), url("../assets/jpg/solar-hero.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    width: 100%;
}

.footer-main {
    padding: 60px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e63946;
}

.footer-widget p {
    color: #adb5bd;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-widget ul li a:hover {
    color: #e63946;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e63946;
}

/* Contact Info */
.footer-contact li {
    color: #adb5bd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact .emoji {
    font-size: 1.2rem;
    min-width: 20px;
}

/* CTA Button */
.btn-footer {
    display: inline-block;
    background: #e63946;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-footer:hover {
    background: transparent;
    border-color: #e63946;
    color: #e63946;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 20px 0;
}

.footer-bottom-content {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Responsive ===== */

/* Large Desktop (min 1200px) */
@media (min-width: 1200px) {
    .footer-main {
        padding: 70px 20px 0;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-widget h3::after {
        left: 0;
        transform: none;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .btn-footer {
        display: block;
        text-align: center;
    }
}

/* Small Mobile (max 575px) */
@media (max-width: 575px) {
    .footer-main {
        padding: 40px 15px 0;
    }
    
    .footer-widget h3 {
        font-size: 1.1rem;
    }
    
    .footer-widget p,
    .footer-widget ul li a,
    .footer-contact li,
    .btn-footer {
        font-size: 0.9rem;
    }
    
    .footer-bottom-content {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .solar-footer {
        background: none;
        color: black;
    }
    
    .btn-footer {
        display: none;
    }
}