/* Same Energy – Website Styles (Logo-centred design) */
:root {
    --orange: #F15A29;
    --orange-dark: #D94A1A;
    --orange-light: #FF7A45;
    --blue: #1E88E5;
    --blue-dark: #0D47A1;
    --blue-mid: #1976D2;
    --dark: #1A237E;
    --text: #212121;
    --grey: #546E7A;
    --light-grey: #F5F7FA;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow: 0 8px 30px rgba(13, 71, 161, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--grey);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--orange);
}

.btn-nav {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white) !important;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(241, 90, 41, 0.3);
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--orange-dark), #C03E12);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 6px 18px rgba(241, 90, 41, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark), #C03E12);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(241, 90, 41, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.85);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 45%, #1E88E5 100%);
    color: var(--white);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(241,90,41,0.22) 0%, transparent 65%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30,136,229,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    max-width: 580px;
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.trust-badges {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.92;
    font-weight: 500;
}

.trust-badges span::before {
    content: '✓ ';
    font-weight: 700;
    color: #FFB74D;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 340px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-header p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 95px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--light-grey);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(30, 136, 229, 0.15);
    background: var(--white);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.55;
}

.service-link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.service-link:hover {
    text-decoration: underline;
}

/* Why Us */
.why-us {
    padding: 95px 0;
    background: linear-gradient(180deg, var(--light-grey) 0%, #E8F0FE 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.why-item {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.06);
}

.why-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.why-item p {
    color: var(--grey);
    font-size: 0.95rem;
}

/* Areas */
.areas {
    padding: 80px 0;
    background: var(--white);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.areas-list span {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: var(--blue-dark);
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 95px 0;
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info > p {
    opacity: 0.95;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form {
    background: var(--white);
    color: var(--text);
    padding: 40px 36px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.contact-form h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #E0E0E0;
    border-radius: 9px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 90, 41, 0.15);
}

.form-note {
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 16px;
    text-align: center;
}

/* Footer */
.footer {
    background: #0A1929;
    color: #90A4AE;
    padding: 50px 0 36px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.footer-links a {
    color: #90A4AE;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange-light);
}

.footer-legal {
    text-align: right;
    font-size: 0.88rem;
    padding-top: 8px;
}

.footer-legal p {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-logo-img {
        max-width: 260px;
        margin-top: 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .services, .why-us, .contact {
        padding: 65px 0;
    }

    .logo-img {
        height: 46px;
    }
}
