/* ================= TINY DISCLOSURE NOTICE ================= */

.disclosure-bar {
    background: #fffdf2;
    border-bottom: 1px solid #eee8c9;
    padding: 3px 0;
}

.disclosure-bar .container {
    width: 96%;
    max-width: 1500px;
}

.disclosure-bar p {
    margin: 0;
    padding: 0;
    color: #77776d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
}

.disclosure-bar strong {
    color: #55554d;
    font-weight: 600;
}

.disclosure-icon {
    font-size: 10px;
    margin-right: 2px;
}

.disclosure-bar a {
    color: #66665d;
    text-decoration: underline;
    font-weight: 400;
}

.disclosure-bar a:hover {
    color: #0084ff;
}

/* ================= GLOBAL STYLES ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #12263a;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}


/* ================= TOP BAR ================= */

.top-bar {
    background: #082b4c;
    color: #ffffff;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .left,
.top-bar .right {
    display: flex;
    gap: 25px;
}

.top-bar a {
    color: #ffffff;
}


/* ================= NAVBAR ================= */

.navbar {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    font-size: 26px;
    font-weight: 700;
    color: #12263a;
}

.logo span {
    color: #0084ff;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    color: #12263a;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #0084ff;
}

/* ================= MOBILE MENU BUTTON ================= */

.menu-toggle {

    display:none;

    background:none;

    border:none;

    font-size:28px;

    cursor:pointer;

    color:#12263a;

}

/* ================= BUTTONS ================= */

.btn-primary,
.btn-secondary {

    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;

}


.btn-primary {

    background: #0084ff;
    color: #ffffff;

}


.btn-primary:hover {

    background: #0066cc;

}


.btn-secondary {

    border: 2px solid #0084ff;
    color: #0084ff;
    margin-left: 15px;

}


.btn-secondary:hover {

    background: #0084ff;
    color: #ffffff;

}


/* ================= HERO SECTION ================= */

.hero {

    padding: 90px 0;

    background: linear-gradient(
        135deg,
        #f4faff,
        #ffffff
    );

}


.hero-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

}


.hero-text h1 {

    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #102a43;

}


.hero-text p {

    font-size: 17px;
    color: #667085;
    line-height: 1.8;
    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;
    align-items: center;

}


.hero-image img {

    width: 100%;
    max-width: 550px;

}

/* ================= HERO IMAGE GRID ================= */

.hero-image-grid {

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;

}


.hero-img {

    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);

}


.hero-img img {

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;

}


.hero-img:hover img {

    transform:scale(1.05);

}


/* Large electricity image */

.electricity-img {

    grid-column:span 2;
    height:260px;

}


/* Bottom images */

.gas-img,
.water-img {

    height:180px;

}

/* ================= STATS SECTION ================= */

.stats {

    padding: 50px 0;
    background: #082b4c;
    color: #ffffff;

}


.stats-grid {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    text-align: center;

}


.stat-box h2 {

    font-size: 38px;
    margin-bottom: 10px;

}


.stat-box p {

    font-size: 15px;
    opacity: 0.9;

}


/* ================= SERVICES SECTION ================= */

.services {
    padding: 90px 0;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #12263a;
    margin-bottom: 15px;
}

.section-title p {
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}


/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Service Card */

.service-card {

    background: #ffffff;

    padding: 35px 30px;

    border-radius: 15px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: all 0.3s ease;

}
.service-card {

    text-decoration: none;
    color: inherit;
    display: block;

}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

}


/* Icon */

.service-card .icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    background: #eaf5ff;

    color: #0066cc;

    border-radius: 50%;

    font-size: 32px;

}


/* Heading */

.service-card h3 {

    font-size: 22px;

    color: #12263a;

    margin-bottom: 15px;

}


/* Description */

.service-card p {

    color: #667085;

    line-height: 1.7;

    font-size: 15px;

}

/* ================= ABOUT SECTION ================= */


.about {

    padding: 90px 0;
    background: #ffffff;

}


.about-grid {

    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    gap:60px;

}


.about-image img {

    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.10);

}


.section-tag {

    display:inline-block;
    color:#0084ff;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;

}


.about-content h2 {

    font-size:38px;
    line-height:1.3;
    color:#102a43;
    margin-bottom:20px;

}


.about-content p {

    color:#667085;
    line-height:1.8;
    margin-bottom:15px;

}


/* About Points */

.about-points {

    margin:30px 0;

}


.point {

    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;

}


.point span {

    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0084ff;
    color:#ffffff;
    border-radius:50%;
    font-weight:bold;

}


.point p {

    margin:0;
    color:#12263a;
    font-weight:500;

}

/* ================= WHY CHOOSE US ================= */


.why-us {

    padding:90px 0;
    background:#f7f9fc;

}


.features-grid {

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}


.feature-card {

    background:#ffffff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.3s ease;

}


.feature-card:hover {

    transform:translateY(-8px);

}


.feature-icon {

    width:70px;
    height:70px;
    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eaf5ff;
    border-radius:50%;

    font-size:32px;

}


.feature-card h3 {

    color:#102a43;
    font-size:21px;
    margin-bottom:15px;

}


.feature-card p {

    color:#667085;
    font-size:15px;
    line-height:1.7;

}

/* ================= CONTACT SECTION ================= */


.contact {

    padding:90px 0;
    background:#ffffff;

}


.contact-wrapper {

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}


.contact-info h2 {

    font-size:38px;
    line-height:1.3;
    margin-bottom:20px;
    color:#102a43;

}


.contact-info > p {

    color:#667085;
    line-height:1.8;
    margin-bottom:35px;

}


/* Contact Details */

.contact-item {

    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;

}


.contact-item span {

    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eaf5ff;
    border-radius:50%;

    font-size:22px;

}


.contact-item h4 {

    margin-bottom:5px;
    color:#102a43;

}


.contact-item p {

    color:#667085;
}


/* Contact Form */

.contact-form {

    background:#f7f9fc;
    padding:40px;
    border-radius:20px;

}


.form-group {

    margin-bottom:20px;

}


.form-group input,
.form-group textarea {

    width:100%;
    padding:15px 18px;

    border:1px solid #d0d5dd;
    border-radius:8px;

    font-family:inherit;
    font-size:15px;

    outline:none;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color:#0084ff;

}


.contact-form textarea {

    resize:none;

}

/* ================= FOOTER ================= */


.footer {

    background:#082b4c;
    color:#ffffff;
    padding-top:70px;

}


.footer-grid {

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:40px;
    padding-bottom:50px;

}


.footer-logo {

    font-size:28px;
    font-weight:700;
    color:#ffffff;
    display:inline-block;
    margin-bottom:20px;

}


.footer-logo span {

    color:#43b0ff;

}


.footer-about p {

    color:rgba(255,255,255,0.75);
    line-height:1.8;
    max-width:350px;

}


.footer h3 {

    font-size:20px;
    margin-bottom:20px;

}


.footer-links ul {

    list-style:none;

}


.footer-links li {

    margin-bottom:12px;

}


.footer-links a {

    color:rgba(255,255,255,0.75);
    transition:0.3s;

}


.footer-links a:hover {

    color:#ffffff;

}


.footer-contact p {

    color:rgba(255,255,255,0.75);
    margin-bottom:15px;
    line-height:1.6;

}


/* Bottom Footer */

.footer-bottom {

    border-top:1px solid rgba(255,255,255,0.15);
    padding:20px 0;
    text-align:center;

}


.footer-bottom p {

    color:rgba(255,255,255,0.7);
    font-size:14px;

}

/* ================= FOOTER SPACING ================= */

.footer {

    margin-top:50px;

}

/* ================= FAQ SECTION ================= */


.faq {

    padding:90px 0;
    background:#f7f9fc;

}



.faq-wrapper {

    max-width:900px;
    margin:auto;

}



.faq-item {

    background:#ffffff;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);

}



.faq-question {

    width:100%;
    border:none;
    background:#ffffff;

    padding:20px 25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:17px;
    font-weight:600;
    color:#102a43;

    cursor:pointer;

    text-align:left;

}



.faq-question span {

    font-size:26px;
    color:#0084ff;

}



.faq-answer {

    max-height:0;
    overflow:hidden;

    transition:max-height 0.35s ease;

}



.faq-answer p {

    padding:0 25px 20px;

    color:#667085;
    line-height:1.8;

}

/* ================= CTA SECTION ================= */

.cta-section {

    padding:90px 0;
    background:#082b4c;
    color:#ffffff;
    text-align:center;

}


.cta-section h2 {

    font-size:38px;
    margin-bottom:20px;

}


.cta-section p {

    max-width:700px;
    margin:0 auto 30px;

    color:rgba(255,255,255,0.8);
    line-height:1.8;

}

/* ================= SUPPORT IMAGE GALLERY ================= */


.support-gallery {

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:15px;

}



.support-gallery img {

    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;

}



.support-gallery img:first-child {

    grid-column:span 2;
    height:260px;

}

/* ================= PHONE NUMBER CLICK TO CALL ================= */

.top-phone,
.footer-contact a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.top-phone:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ================= ACTIVE EMAIL ================= */

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

p a {
    color: inherit;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
