:root {
    --blue:    #1a5fa8;
    --blue2:   #154d8c;
    --blue3:   #0e3660;
    --green:   #2db551;
    --green2:  #239e43;
    --green3:  #1a7a32;
    --bg:      #f5f7fa;
    --bg2:     #edf1f7;
    --card:    #ffffff;
    --card2:   #f0f4f9;
    --border:  #d4dde8;
    --dark:    #0f1f33;
    --heading: #0d1a2a;
    --muted:   #6b7f99;
    --text:    #3a4a5c;
    --hero-overlay: 220 45% 12%;
    --primary-font: 'Montserrat', sans-serif;
}

@keyframes gridMove { 
    0% { 
        background-position: 0 0; 
    } 
    100% { 
        background-position: 64px 64px; 
    } 
}

@keyframes fadeUp { 
    from { 
        opacity: 0; 
        transform: translateY(22px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}


html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    font-size: 17px;
    font-weight: 300;
    font-style: normal;
    color: var(--text);
    background: var(--bg);
    line-height: 1.3;
}


*,::after,::before {
    box-sizing: border-box
}

* {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: #1E272E;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a:hover {
    text-decoration: none !important;
    list-style-type: none;
    transition: 0.3s ease-out;
    color: var(--primary-color);
}

a:active {
    text-decoration: none;
    list-style-type: none;
}

button {
    outline: none;
    cursor: pointer;
    color: inherit;
    background: transparent;
    transition: 0.3s ease-out;
}

button:hover {
    transition: 0.3s ease-out;
}

button[disabled] {
    cursor: not-allowed;
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */
    border: none;
}

ul {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

input,
textarea {
    font-weight: 400;
    font-size: 17px;
    font-family: var(--primary-font);
}

input:focus {
    outline: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

::-webkit-input-placeholder {
    color: #535353 !important;
}

::-moz-placeholder {
    color: #535353 !important;
}

:-ms-input-placeholder {
    color: #535353 !important;
}

:-moz-placeholder {
    color: #535353 !important;
}

input[type="search" i]:enabled:read-write:-webkit-any(:focus, :hover)::-webkit-search-cancel-button {
    display: none;
}

[hidden] {
    display: none!important;
}


h1, h2, h3, h4 {
    margin-top: 0;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

p {
    margin-top: 0;
}

strong {
    font-weight: 600;
}

.primary-font {
    font-family: var(--primary-font);
    font-optical-sizing: auto;
    font-style: normal;
}

.secondary-font {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-style: normal;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-13 {
    font-size: 13px;
}

.font-15 {
    font-size: 15px;
}

.font-17 {
    font-size: 17px;
}

.font-20 {
    font-size: 20px;
}

.font-22 {
    font-size: 22px;
}

.font-24 {
    font-size: 24px;
}

.font-28 {
    font-size: 28px;
}

.font-32 {
    font-size: 32px;
}

.font-40 {
    font-size: 40px;
}

.font-42 {
    font-size: 42px;
}

.font-90 {
    font-size: 90px;
}

.uppercase {
    text-transform: uppercase;
}

.accent-blue {
    color: var(--blue);
}

.accent-green {
    color: var(--green);
}

.text-white {
    color: #FDFDFD;
}

.text-white-opacity-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-opacity-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-muted {
    color: var(--text-muted);
}

.text-green {
    color: var(--primary-color);
}

.text-light-gold {
    color: var(--gold-light);
}

.text-gray {
    color: #535353;
}

.text-black {
    color: #000000;
}

.flex-1 {
    flex: 1
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.d-grid {
    display: grid;
    gap: 24px;
}

.gap-0 {
    gap: 0;
}

.gap-2 {
    gap: 2px;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-24 {
    gap: 24px;
}

.d-flex-gap-24 {
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
}

.mb-30 {
    margin-bottom: 30px;
}

.white-card {
    background: var(--card);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(26, 95, 168, 0.05);
}

.white-card:hover {
    box-shadow: 0 14px 40px rgba(26, 95, 168, 0.12);
}

.white-card-left-border-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.white-card-left-border-hover:hover::before {
    transform: scaleX(1);
}

.white-card-bottom-border-hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.white-card-bottom-border-hover:hover::before {
    transform: scaleX(1);
}

.wf-animate { 
    opacity: 0; 
    transform: translateY(24px); 
    transition: opacity .6s ease, transform .6s ease; 
}

.wf-animate.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.btn {
    padding: 14px 34px;
    border: none;
    font-family: 'Montserrat', sans-serif; 
    font-size: 11px; 
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase; 
    cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: opacity .2s, transform .15s; 
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;
}

.btn:hover {
    opacity: .88; 
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff; 
}

.btn-primary:hover { 
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--blue);   
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    clip-path: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color .2s, background .2s;
}

.btn-outline-white:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.page-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.page-section-bg-dark {
    background: var(--dark); 
}

.page-section-bg-dark .section-title { 
    color: #fff; 
}

.page-section-bg-dark .section-sub  { 
    color: rgba(255,255,255,0.4); 
}

.section-label {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--heading);
    line-height: 1;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 560px;
    margin-top: 16px;
}

.item-title,
.item-title-secondary {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--heading);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.item-title-secondary {
    font-size: 16px;
}

.item-description {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}

/*-----HEADER-----*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 20px rgba(26, 95, 168, 0.06);
}

header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}

header .header-row  > div {
    padding-left: 15px;
    padding-right: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo .logo-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo .logo-text .brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 2px;
    color: var(--heading);
}

.logo .logo-text .sub {
    font-size: 8.5px;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-top: 3px;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

header .menu li a {
    font-size: 12px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s;
}

header .menu li a:hover {
    color: var(--green);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta .nav-phone {
    font-size: 12px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: .5px;
    transition: color .2s;
    font-weight: 500;
}

.nav-cta .nav-phone:hover {
    color: var(--blue); 
}
/*-----END HEADER-----*/


/*-----FOOTER-----*/
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 36px;
}


.footer-top .footer-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer .logo .logo-text .brand {
    color: #fff;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    max-width: 260px;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}
/*-----END FOOTER-----*/

/*-----HERO------*/
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: hsl(var(--hero-overlay) / .75);
    animation: gridMove 24s linear infinite;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero .hero-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeUp .8s ease both;
}


.hero .hero-content-left.hero-content {
    text-align: left;
    margin: 0;
    padding-bottom: 56px;
}

.hero .hero-content-left.hero-content .hero-label {
    justify-content: flex-start;
}

.hero .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 86px);
    line-height: .92;
    color: #fff;
    letter-spacing: -.5px;
    animation: fadeUp .8s .1s ease both;
    margin-bottom: 15px;
}

.hero .hero-desc {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    max-width: 560px;
    margin: 0 auto;
    animation: fadeUp .8s .2s ease both;
}

.hero .hero-content-left.hero-content .hero-desc {
    margin: 0;
}

.hero-lead {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.60);
    max-width: 560px;
    margin-top: 24px;
    animation: fadeUp .7s .16s ease both;
}

.hero .hero-actions {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeUp .8s .3s ease both;
}

.hero-year {
    position: absolute;
    right: 5vw;
    bottom: 80px;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 18vw, 260px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    letter-spacing: 4px;
    pointer-events: none;
    animation: fadeUp .9s .5s ease both;
}

.hero .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
   
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeUp .8s .45s ease both;
    background: rgba(8, 16, 28, 0.7);
    backdrop-filter: blur(8px);
}

.hero .hero-stats .hero-stats-row {
    display: flex;
}

.hero .hero-stat-item {
    flex: 1;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero .hero-stat-item:last-child {
    border-right: none;
}

.hero .hero-stat-item .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.hero .hero-stat-item .stat-num .unit {
    color: var(--green);
    font-size: 32px;
}

.hero .hero-stat-item .stat-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}
/*-----END HERO-----*/


/*-----HOME PAGE-----*/
.page-section-advantages {
    background: var(--bg2);
}

.service-card .service-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 68px;
    color: rgba(26, 95, 168, 0.05);
    line-height: 1;
}

.service-card .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
}

.adv-item .adv-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 60px;
}

.project-card {
    background: var(--card);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(26, 95, 168, 0.05);
    transition: box-shadow .3s;
}

.project-card:hover {
    box-shadow: 0 10px 36px rgba(26, 95, 168, 0.11);
}

.project-card.featured {
    grid-row: span 2;
    background: linear-gradient(140deg, #eef4ff 0%, #eaf6ef 100%);
    border: 1px solid rgba(26, 95, 168, 0.14);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue), var(--green));
    opacity: 0;
    transition: opacity .3s;
}

.project-card:hover::after {
    opacity: 1;
}

.project-tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(45, 181, 81, 0.4);
    padding: 4px 10px;
    margin-bottom: 20px;
}

.project-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--heading);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

.project-card.featured .project-title {
    font-size: 40px;
}

.project-meta {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .5px;
}

.proj-meta { 
    margin-top: 20px; 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
}

.project-power {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(26, 95, 168, 0.07);
    line-height: 1;
    position: absolute;
    bottom: -8px;
    right: 16px;
}

.cta-band {
    background: linear-gradient(110deg, var(--blue3) 0%, var(--blue) 50%, var(--green3) 100%);
    padding: 64px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-band-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 50px);
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.cta-band-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 10px;
    max-width: 480px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.c-icon {
    width: 40px;
    height: 40px;
    background: var(--bg2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

.c-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.c-value {
    font-size: 14px;
    color: var(--heading);
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.c-value:hover {
    color: var(--blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--heading);
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.08);
}

/*-----END HOME PAGE-----*/


/*-----SOLAR POWER PAGE-----*/
.type-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 14px rgba(26, 95, 168, 0.06);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    display: block;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 95, 168, 0.13);
}

.type-card-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-card-thumb.osbb {
    background: linear-gradient(135deg, #0e3660, #1a5fa8);
}

.type-card-thumb.biz {
    background: linear-gradient(135deg, #1a5fa8, #239e43);
}

.type-card-thumb.priv {
    background: linear-gradient(135deg, #1a7a32, #2db551);
}

.type-card-thumb-icon {
    font-size: 64px;
    opacity: .85;
}

.type-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    backdrop-filter: blur(8px);
}

.type-card-body {
    padding: 32px 28px 28px;
}

.type-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--heading);
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.type-card-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.type-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.type-card-list li {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.type-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 5px;
}

.type-card-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap .2s;
}

.type-card:hover .type-card-link {
    gap: 10px;
}

.how {
    background: var(--dark);
}

.how .section-label::before {
    background: var(--green);
}

.how .section-title {
    color: #fff;
}

.how .section-sub {
    color: rgba(255, 255, 255, 0.5);
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 16px);
    right: calc(10% + 16px);
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    transition: border-color .3s, background .3s;
}

.step:hover .step-num {
    border-color: var(--green);
    background: rgba(45, 181, 81, 0.08);
}

.step-num .step-icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.step-desc {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

.equip-card {
    display: flex;
    gap: 24px;
    padding: 32px 28px;
}

.equip-card:hover {
    box-shadow: 0 10px 32px rgba(26, 95, 168, 0.1);
    transform: translateY(-2px);
}

.equip-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(26, 95, 168, 0.08), rgba(45, 181, 81, 0.08));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--heading);
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.equip-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.equip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.equip-tag {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(26, 95, 168, 0.07);
    padding: 3px 9px;
}

.calc-section {
    background: var(--bg2);
}

.calc-inner {
    align-items: start;
}

.calc-form {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 2px 14px rgba(26, 95, 168, 0.06);
}

.calc-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--heading);
    letter-spacing: .5px;
    margin-bottom: 28px;
}

.calc-form .form-group {
    margin-bottom: 20px;
}

.calc-form .form-group input,
.calc-form .form-group select,

.contact-form-bg-fields .form-group input,
.contact-form-bg-fields .form-group select,
.contact-form-bg-fields .form-group textarea {
    background: var(--bg);
}

.calc-result {
    background: linear-gradient(135deg, #eef4ff, #eaf6ef);
    border: 1px solid rgba(26, 95, 168, 0.12);
    padding: 32px;
    display: none;
}

.calc-result.show {
    display: block;
    animation: fadeUp .4s ease both;
}

.calc-result-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--heading);
    margin-bottom: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.result-row:last-child {
    border: none;
}

.result-key {
    color: var(--muted);
}

.result-val {
    font-weight: 700;
    color: var(--heading);
}

.result-val.green {
    color: var(--green);
}

.result-val.blue {
    color: var(--blue);
}

.calc-info {
    padding-top: 8px;
}

.calc-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.calc-info-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    flex-shrink: 0;
}

.calc-info-num.blue {
    color: var(--blue);
}

.calc-info-num.green {
    color: var(--green);
}

.calc-info-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
}

.calc-info-desc {
    font-size: 12px;
    line-height: 1.75;
    color: var(--muted);
}

.faq-section {
    background: var(--bg2);
}


.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.45;
    transition: background .2s;
}

.faq-q:hover {
    background: var(--bg2);
}

.faq-q .faq-ico {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s;
}

.faq-item.open .faq-q {
    background: var(--bg2);
}

.faq-item.open .faq-ico {
    background: var(--blue);
    border-color: var(--blue);
    transform: rotate(45deg);
}

.faq-item.open .faq-ico svg {
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a-inner {
    padding: 0 24px 22px;
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}

.faq-item.open .faq-a {
    max-height: 400px;
}
/*-----END SOLAR POWER PAGE-----*/

/*-----ELECTRICAL INSTALLATION PAGE-----*/
.services-grid {
    gap: 0.5px;
    background: var(--border);
}

.srv-card {
    background: var(--card);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    cursor: default;
}

.srv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.srv-card:hover::after {
    transform: scaleX(1);
}

.srv-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(26, 95, 168, 0.05);
    line-height: 1;
}

.srv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
}

.srv-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--heading);
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.srv-desc {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}

.srv-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.srv-list li {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.srv-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 6px;
}

.split {
    background: var(--dark);
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
}

.split-photo {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    background:
        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=900&auto=format&fit=crop&q=80') center / cover no-repeat;
}

.split-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(15, 31, 51, 0.9) 100%);
}

/* accent diagonal line */
.split-photo::before {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 60px;
    z-index: 2;
    background: linear-gradient(to bottom, var(--blue), var(--green));
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.split-content {
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content .section-label::before {
    background: var(--green);
}

.split-content .section-title {
    color: #fff;
}

.split-content .section-sub {
    color: rgba(255, 255, 255, 0.5);
    max-width: 420px;
}

.feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color .2s, background .2s;
}

.feature-item:hover .feature-icon {
    border-color: var(--green);
    background: rgba(45, 181, 81, 0.08);
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 12px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
}

.process-grid {
    background: var(--border);
}

.process-item {
    background: var(--card);
    padding: 40px 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: background .2s;
}

.process-item:hover {
    background: #fafcff;
}

.process-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--heading);
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.process-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.ptag {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(26, 95, 168, 0.07);
    padding: 3px 9px;
}

.objects {
    background: var(--bg2);
}

.obj-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 95, 168, 0.05);
    transition: transform .3s, box-shadow .3s;
}

.obj-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(26, 95, 168, 0.12);
}

.obj-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
}

.obj-thumb.industrial {
    background: linear-gradient(135deg, #0e3660, #1a5fa8);
}

.obj-thumb.civil {
    background: linear-gradient(135deg, #1a5fa8, #2db551);
}

.obj-thumb.outdoor {
    background: linear-gradient(135deg, #1a7a32, #2db551);
}

.obj-thumb.shield {
    background: linear-gradient(135deg, #154d8c, #239e43);
}

.obj-body {
    padding: 22px 20px;
}

.obj-cat {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.obj-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--heading);
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.obj-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.safety-band {
    background: var(--dark);
}

.safety-band .section-title {
    color: #fff;
}

.safety-band .section-sub {
    color: rgba(255, 255, 255, 0.45);
}

.safety-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color .2s, background .2s;
}

.safety-item:hover {
    border-color: var(--green);
    background: rgba(45, 181, 81, 0.05);
}

.safety-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.safety-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.safety-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.s-stat {
    padding: 36px 32px;
    background: rgba(15, 31, 51, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background .2s;
}

.s-stat:hover {
    background: rgba(26, 95, 168, 0.12);
}

.s-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
}

.s-num.blue {
    color: var(--blue);
}

.s-num.green {
    color: var(--green);
}

.s-lbl {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    line-height: 1.5;
}
/*-----END ELECTRICAL INSTALLATION PAGE-----*/

/*-----ELECTRICAL PANEL EQUIPMENT PAGE-----*/
.products-grid {
    gap: 2px; 
    background: var(--border); 
}

.prod-card {
    background: var(--card);
    padding: 0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(26, 95, 168, 0.14);
    z-index: 2;
}

.prod-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.prod-card {
    background: var(--card);
    padding: 0;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(26, 95, 168, 0.14);
    z-index: 2;
}

.prod-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.prod-thumb.t1 {
    background: linear-gradient(135deg, #0e3660, #1a5fa8);
}

.prod-thumb.t2 {
    background: linear-gradient(135deg, #154d8c, #2db551);
}

.prod-thumb.t3 {
    background: linear-gradient(135deg, #0e3660, #239e43);
}

.prod-thumb.t4 {
    background: linear-gradient(135deg, #1a5fa8, #1a7a32);
}

.prod-thumb.t5 {
    background: linear-gradient(135deg, #0a2845, #154d8c);
}

.prod-thumb.t6 {
    background: linear-gradient(135deg, #1a7a32, #2db551);
}

/* circuit dot overlay on thumbs */
.prod-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 18px 18px;
}

.prod-label-top {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    backdrop-filter: blur(6px);
}

.prod-body {
    padding: 32px 28px;
}

.prod-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--heading);
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.prod-desc {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 20px;
}

.prod-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prod-specs li {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.prod-specs li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 5.5px;
}

.config-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    margin-top: 56px;
    align-items: start;
}

/* step tabs */
.config-steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.config-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 28px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.config-step.active {
    background: rgba(26, 95, 168, 0.12);
    border-color: rgba(26, 95, 168, 0.35);
}

.config-step:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

.step-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    transition: background .2s, border-color .2s, color .2s;
}

.config-step.active .step-num-badge {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.step-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: color .2s;
}

.config-step.active .step-title {
    color: #fff;
}

.step-content {
    margin-top: 16px;
    padding-left: 48px;
    display: none;
}

.config-step.active .step-content {
    display: block;
}

.step-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color .2s, background .2s;
}

.step-option:hover {
    border-color: rgba(45, 181, 81, 0.3);
    background: rgba(45, 181, 81, 0.05);
}

.step-option input[type="radio"] {
    accent-color: var(--green);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.step-option label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    line-height: 1.4;
}

.step-option input:checked+label {
    color: #fff;
}

.step-option:has(input:checked) {
    border-color: rgba(45, 181, 81, 0.4);
    background: rgba(45, 181, 81, 0.06);
}

/* summary card */
.config-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 28px;
    position: sticky;
    top: 96px;
}

.summary-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px;
}

.summary-row:last-child {
    border-bottom: none;
}

.sum-key {
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.sum-val {
    color: #fff;
    font-weight: 500;
    text-align: right;
    max-width: 55%;
    line-height: 1.4;
}

.sum-val.green {
    color: var(--green);
}

.sum-total {
    margin-top: 20px;
    padding: 16px;
    background: rgba(26, 95, 168, 0.12);
    border: 1px solid rgba(26, 95, 168, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sum-total-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.sum-total-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--green);
    line-height: 1;
}

.config-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.65;
    margin-top: 14px;
}

/*-----END ELECTRICAL PANEL EQUIPMENT PAGE-----*/


/*-----ABOUT US PAGE-----*/
.hero.about-us-hero {
    background-color: #0a1828;
    background-image: linear-gradient(135deg, #071020 0%, #0d2040 45%, #071a10 100%);
    background-size: cover;
    background-position: center 40%;
}

.hero.about-us-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;    
    background: radial-gradient(ellipse 50% 60% at 20% 40%, rgba(26, 95, 168, 0.20) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 80% 30%, rgba(45, 181, 81, 0.10) 0%, transparent 60%);
}

.story-visual {
    position: relative;
}

.story-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0e3660 0%, #1a5fa8 50%, #1a7a32 100%);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG illustration — power lines & solar panels */
.story-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(26, 95, 168, 0.2), rgba(45, 181, 81, 0.15));
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(26, 95, 168, 0.35);
    z-index: 2;
}

.story-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #fff;
    line-height: 1;
}

.story-badge-lbl {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.4;
    margin-top: 2px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    margin-top: 64px;
    position: relative;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--blue), var(--green), rgba(45, 181, 81, 0));
    transform: translateX(-50%);
}

.tl-card {
    padding: 0 40px 48px 0;
    position: relative;
}

.tl-card.right {
    padding: 0 0 48px 40px;
}

.tl-card:last-child,
.tl-card.right:last-child {
    padding-bottom: 0;
}

.tl-card-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.tl-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.tl-card-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
}

.tl-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(45, 181, 81, 0.1);
    color: var(--green);
    border: 1px solid rgba(45, 181, 81, 0.25);
    padding: 4px 12px;
}

.lic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 32px 28px;
    transition: border-color .25s, background .25s;
}

.lic-card:hover {
    border-color: rgba(45, 181, 81, 0.3);
    background: rgba(45, 181, 81, 0.04);
}

.lic-icon {
    color: var(--green);
    margin-bottom: 18px;
}

.lic-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.lic-desc {
    font-size: 12px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.4);
}

.lic-num {
    font-size: 11px;
    color: var(--green);
    margin-top: 14px;
    letter-spacing: .5px;
}
/*-----END ABOUT US PAGE-----*/

/*-----CONTACT US PAGE-----*/

.hero.contact-us-hero {
    background-color: #0a1828;
    background-image: linear-gradient(135deg, #0a1828 0%, #0e2a45 50%, #071a14 100%);
    background-size: cover;
    background-position: center;
    height: 56vh;
    min-height: 420px;
    align-items: flex-end;
}

.hero.contact-us-hero::before {
    content: '';
    position: absolute;
    z-index: 1;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(26, 95, 168, 0.15) 0%, transparent 70%);
}

.hero.contact-us-hero .hero-bolt {
    position: absolute;
    right: 8vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: .06;
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    min-height: 560px;
}

.form-side {
    background: var(--card);
    padding: 72px 5vw 72px;
    border-right: 1px solid var(--border);
}

.form-head h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    color: var(--heading);
    letter-spacing: .5px;
}

.form-head p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 12px;
    max-width: 440px;
}

.form-note { font-size: 14px; color: var(--muted); line-height: 1.6; }

.info-side {
    background: var(--dark);
    padding: 72px 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-block {
    margin-bottom: 40px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: border-color .2s, background .2s;
}

.info-row:hover .info-icon {
    border-color: var(--green);
    background: rgba(45, 181, 81, 0.08);
}

.info-text-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
}

.info-text-val {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: color .2s;
}

.info-text-val:hover {
    color: var(--green);
}

.info-text-val.small {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* working hours */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: rgba(255, 255, 255, 0.45);
}

.hours-time {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.hours-time.green {
    color: var(--green);
}

/* social links */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.social-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(45, 181, 81, 0.08);
}

/* emergency badge */
.emergency-badge {
    margin-top: 40px;
    padding: 20px 20px;
    background: rgba(45, 181, 81, 0.08);
    border: 1px solid rgba(45, 181, 81, 0.25);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.emergency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    margin-top: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(45, 181, 81, 0.5)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(45, 181, 81, 0)
    }
}

.emergency-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.emergency-desc {
    font-size: 11px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
}
/*-----END CONTACT US PAGE-----*/

/*-----MEDIA QUERIES-----*/

@media (max-width: 991px) {
    .config-inner { 
        grid-template-columns: 1fr; 
    }

    .config-summary { 
        position: static;
    }
}

@media (min-width: 576px) { 
    .sm-grid-2-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm-grid-3-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (min-width: 767px) { 
    .md-grid-2-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md-grid-3-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md-grid-4-columns {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md-gap-64 {
        gap: 64px;
    }
}

@media (min-width: 1024px) { 
    .lg-grid-2-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg-grid-3-columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg-grid-4-columns {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg-grid-5-columns {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1400px) { 
    .container {
        max-width: 1520px;
    }
}