/* ===================================
   KOLD HVAC - Main Stylesheet
   =================================== */

/* Font Face Definitions */
@font-face {
    font-family: 'BankGothic';
    src: url('../fonts/BankGothicBT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    line-height: 1.5;
    color: #333333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0052a3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.top-bar {
    background-color: #0046A5;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 2rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-weight: 400;
}

.contact-info span:last-child {
    margin-right: 0;
}

.contact-info i {
    font-size: 0.75rem;
    color: #0af10c;
}

.social-links {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
}

.social-links a {
    color: #FFFFFF;
    font-size: 16px;
    background-color: transparent;
    transition: color 0.3s ease;
    padding: 4px;
}

.social-links a:hover {
    color: #0af10c;
    background-color: transparent;
}


/* Expert Widget */
.expert-widget {
    display: flex;
    align-items: center;
    background-color: #0af10c;
    padding: 8px 15px 8px 20px;
    border-left: 1px solid #DDDDDD42;
    text-decoration: none;
}

.expert-icon {
    margin-right: 15px;
}

.expert-icon i {
    font-size: 40px;
    color: #060761;
}

.expert-text h4 {
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #060761;
    margin: 0;
    line-height: 1.1;
}

.expert-text p {
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #060761;
    margin: 0;
    line-height: 1;
}

/* Navigation */
.main-nav {
    background: #fff;
    padding: 2px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin-right: 20px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    transform: translateY(-6px);
}

.nav-menu li {
    position: relative;
    margin: 0 1rem;
}

.nav-menu a {
    color: #060761;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-weight: 400;
    font-size: 17px;
    padding: 12px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FF0038;
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: #666;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #0066cc;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Client Carousel */
.client-carousel-section {
    padding: 4rem 0;
    background: #f8f9fa;
}


.jeg-elementor-kit.jkit-client-logo {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100px;
    background: #f8f9fa;
}

.jeg-elementor-kit.jkit-client-logo .client-list {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.jeg-elementor-kit.jkit-client-logo .client-track {
    display: flex;
    align-items: center;
    animation: infiniteScroll 30s linear infinite;
    will-change: transform;
    width: calc(300%);
    height: 100%;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.jeg-elementor-kit.jkit-client-logo .client-slider {
    flex: 0 0 auto;
    width: calc(100% / 12);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.jeg-elementor-kit.jkit-client-logo .client-slider .image-list {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.jeg-elementor-kit.jkit-client-logo .client-slider .image-list:hover {
    opacity: 1;
}

.jeg-elementor-kit.jkit-client-logo .client-slider .content-image {
    position: relative;
    line-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jeg-elementor-kit.jkit-client-logo .client-slider .content-image .main-image {
    height: auto;
    width: auto;
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(80%);
    transition: filter 0.3s ease;
}

.jeg-elementor-kit.jkit-client-logo .client-slider .image-list:hover .main-image {
    filter: grayscale(0%);
}

/* Pause animation on hover */
.jeg-elementor-kit.jkit-client-logo:hover .client-track {
    animation-play-state: paused;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 38px;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: none;
    border-radius: 0px;
    transition: all 0.3s;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: #0046A5;
    color: #FFFFFF;
    fill: #FFFFFF;
}

.btn-primary:hover {
    background-color: #003a8a;
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #0046A5;
}

.btn-outline {
    background: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #0066cc;
    border-color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #0066cc;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.cta-button {
    margin-left: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    margin-top: 120px; /* Account for fixed header with top bar */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000B1B;
    opacity: 0.6;
    z-index: -1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-content {
    color: #fff;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    opacity: 0.9;
}

.hero-cta {
    margin-bottom: 3rem;
    text-align: center;
}

.hero-cta .btn {
    margin: 0 0.5rem 0.5rem 0;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
}

/* Services Section */
.services-overview {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 10px;
    }
}

.service-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 70, 165, 0.3), rgba(0, 61, 145, 0.2));
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    background: linear-gradient(45deg, rgba(0, 70, 165, 0.8), rgba(0, 61, 145, 0.6));
}

.service-content {
    position: absolute;
    bottom: -70px;
    left: 25px;
    right: 25px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-content {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    padding: 30px 25px;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0046A5;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.service-card:hover p {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 1rem;
}

.service-link {
    color: #0046A5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    display: block;
    text-align: center;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    color: #003d91;
}

/* Individual service backgrounds */
#aerotermia {
    background-image: url('../images/aerotermia.jpeg');
}

#aire-acondicionado {
    background-image: url('../images/workman-servicing-air-conditioning-or-heat-pump-wi-2023-11-27-05-35-43-utc.jpg');
}

#ventilacion {
    background-image: url('../images/air-ventilation-shaft-assembly-in-warehouse-2023-11-27-05-12-07-utc.jpg');
}

#energia-solar {
    background-image: url('../images/solar-energy-panels-2023-11-27-04-49-42-utc.jpg');
}

#energia-eolica {
    background-image: url('../images/wind-power-plant-on-the-mountains-2023-11-27-04-49-41-utc.jpg');
}

#fontaneria {
    background-image: url('../images/hes-a-pro-at-plumbing-shot-of-a-plumber-fixing-a-2023-11-27-05-34-21-utc.jpg');
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.image-main {
    position: relative;
    z-index: 2;
}

.image-main img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 1;
}

.image-secondary img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: #0066cc;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
    z-index: 3;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-features .feature {
    text-align: center;
}

.about-features i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1rem;
    display: block;
}

.about-features h4 {
    margin-bottom: 0.5rem;
}

.about-features p {
    font-size: 0.875rem;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit {
    text-align: center;
}

.benefit-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit h3 {
    margin-bottom: 1rem;
}

.benefit p {
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: #666;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066cc;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-card h3 {
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
}

.price .period {
    color: #666;
    font-size: 1.125rem;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-card .features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

.pricing-card .features i {
    color: #28a745;
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.brand-item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #0066cc;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label input {
    width: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer - Elementor Styles */
#colophon {
    background: #0a0a0a;
    color: #fff;
}

.footer-width-fixer {
    width: 100%;
}

/* Elementor Main Section with Background */
.elementor-element-5bbc0835 {
    background-color: #00367E;
    position: relative;
    padding: 40px 10px 20px 10px;
}

.elementor-element-5bbc0835 .elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/air-conditioner-fans.jpg');
    background-position: center 30%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    pointer-events: none;
}

.elementor-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.elementor-column-gap-no > .elementor-column > .elementor-element-populated {
    padding: 0;
}

.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

/* Elementor Icon Box Widget */
.elementor-widget-icon-box .elementor-icon-box-wrapper {
    display: flex;
    align-items: flex-start;
}

.elementor-position-left .elementor-icon-box-icon {
    margin-right: 20px;
}

.elementor-vertical-align-middle .elementor-icon-box-wrapper {
    align-items: center;
}

.elementor-widget-icon-box .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 30px;
    color: #EA0A3B;
    flex-shrink: 0;
}

.elementor-widget__width-auto {
    width: auto;
}

.elementor-icon-box-content .elementor-icon-box-title {
    color: #000000;
    margin: 0 0 2px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.elementor-icon-box-content .elementor-icon-box-description {
    color: #EA0A3B;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section Grid */
.elementor-element-3fe756fe .elementor-container {
    display: flex;
    padding: 0;
    gap: 0;
}

.elementor-element-3fe756fe .elementor-column {
    flex: 1;
}

.elementor-element-238b61fe,
.elementor-element-217e1a29,
.elementor-element-2c652968 {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 0;
    margin-right: 20px;
    text-align: center;
}

.elementor-element-2c652968 {
    margin-right: 0;
}

/* Main Footer Section */
.elementor-element-4d4199be {
    padding: 0;
    background: transparent;
    margin-top: 1.5rem;
}

.elementor-element-4d4199be .elementor-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
}

/* Footer Columns */
.elementor-col-25 {
    width: 25%;
}

.elementor-col-33 {
    width: 33.333%;
}

.elementor-col-50 {
    width: 50%;
}

.elementor-col-100 {
    width: 100%;
}

/* Footer Headings */
.elementor-heading-title {
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    font-family: 'Heebo', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

/* Footer Logo */
.elementor-widget-image img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

/* Footer Text */
.elementor-widget-text-editor p {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Elementor Social Icons */
.elementor-social-icons-wrapper {
    display: flex;
    gap: 0.5rem;
}

.elementor-shape-square .elementor-social-icon,
.elementor-social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.elementor-screen-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.elementor-social-icon:hover {
    background: #EA0A3B;
    color: #FFFFFF;
    transform: scale(0.9);
}

.elementor-animation-shrink:hover {
    transform: scale(0.9);
}

/* Elementor Icon List */
.elementor-icon-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elementor-icon-list-item {
    margin-bottom: 10px;
}

.elementor-icon-list-item:last-child {
    margin-bottom: 0;
}

.elementor-icon-list-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.elementor-icon-list-item a:hover {
    color: #EA0A3B;
}

.elementor-icon-list-icon {
    color: #FC685B;
    margin-right: 8px;
    font-size: 14px;
}

.elementor-icon-list-text {
    font-size: 0.95rem;
}

/* JKit Mailchimp Form */
.jkit-mailchimp.style-inline .jkit-form-wrapper {
    display: flex;
    gap: 0;
    margin-top: 1rem;
}

.jkit-mailchimp .jkit-email {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    font-family: 'Padauk', sans-serif;
    font-weight: 300;
}

.jkit-mailchimp .jkit-email::placeholder {
    color: #7A7A7A;
}

.jkit-mailchimp .jkit-email:focus {
    outline: none;
    border-color: #EA0A3B;
}

.jkit-mailchimp-submit {
    padding: 0.75rem 1.5rem;
    background: #EA0A3B;
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jkit-mailchimp-submit:hover {
    background: #d60935;
}

/* Footer Bottom Section */
.elementor-element-22c2ffbf {
    background: transparent;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.elementor-element-22c2ffbf .elementor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.elementor-element-22c2ffbf .elementor-widget-text-editor {
    margin: 0;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.elementor-element-3e4391b8 .elementor-widget-container {
    font-size: 0.85rem;
}

/* Ensure proper z-index for content */
.elementor-widget-wrap.elementor-element-populated {
    position: relative;
    z-index: 2;
}

/* Privacy Policy Page Styles */
.page-header {
    background: #00367E;
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.content-section {
    padding: 4rem 0;
    background: #fff;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-content h2 {
    color: #00367E;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #EA0A3B;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
}

.privacy-content h3 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #EA0A3B;
    margin-bottom: 2rem;
}

.info-box, .contact-info-privacy, .authority-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #00367E;
}

.info-box p, .contact-info-privacy p, .authority-info p {
    margin: 0.5rem 0;
}

.info-box h4, .contact-info-privacy h4, .authority-info h4 {
    font-family: 'BankGothic', 'Arial Black', sans-serif;
    color: #00367E;
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: #EA0A3B;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Footer Centered Layout */
.elementor-element-4d4199be {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.elementor-element-4d4199be .elementor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.elementor-element-footer-center {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.elementor-element-footer-center .elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.elementor-element-footer-center .elementor-widget-container {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.elementor-element-footer-center .elementor-widget-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.elementor-element-footer-center .elementor-widget-image img {
    margin: 0 auto;
    display: block;
    max-width: 120px;
    height: auto;
}

.elementor-element-footer-center .elementor-social-icons-wrapper {
    justify-content: center;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
}

.elementor-element-footer-center .jkit-mailchimp-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elementor-element-footer-center .jkit-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.elementor-element-footer-center .jkit-mailchimp-email {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.elementor-element-footer-center .jkit-submit-input-holder {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Footer Privacy Policy Link Hover */
.elementor-element-privacy-link a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.elementor-element-privacy-link a:hover {
    color: #EA0A3B;
    text-decoration: underline;
}

/* Heat Recovery Banner */
.heat-recovery-banner {
    background: linear-gradient(135deg, #00367E 0%, #0046A5 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.heat-recovery-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.banner-icon i {
    font-size: 60px;
    color: #FFFFFF;
}

.banner-text {
    flex: 1;
    color: #FFFFFF;
}

.banner-text h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'BankGothic', 'Arial Black', sans-serif;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.feature-item span {
    color: #FFFFFF;
    font-size: 0.95rem;
}

.banner-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.banner-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-cta .btn-primary {
    background: #EA0A3B;
    color: #FFFFFF;
    border: 2px solid #EA0A3B;
}

.banner-cta .btn-primary:hover {
    background: #FFFFFF;
    color: #EA0A3B;
}

.banner-cta .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.banner-cta .btn-secondary:hover {
    background: #FFFFFF;
    color: #00367E;
}

/* Responsive Design for Banner */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-icon {
        width: 100px;
        height: 100px;
    }
    
    .banner-icon i {
        font-size: 48px;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .banner-cta {
        justify-content: center;
    }
}

/* Icons (placeholder styles) */
[class^="icon-"], [class*=" icon-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.icon-phone::before { content: "📞"; }
.icon-email::before { content: "✉️"; }
.icon-facebook::before { content: "f"; }
.icon-twitter::before { content: "t"; }
.icon-instagram::before { content: "i"; }
.icon-linkedin::before { content: "in"; }
.icon-check::before { content: "✓"; }
.icon-location::before { content: "📍"; }
.icon-clock::before { content: "🕐"; }
.icon-whatsapp::before { content: "w"; }
.icon-shield::before { content: "🛡️"; }
.icon-award::before { content: "🏆"; }