/*
Theme Name: Allgas
Theme URI: www.creativemarketing.ro
Author: Creative Marketing
Author URI: https://www.creativemarketing.ro
Version: 1.0
Text Domain: www.allgas.ro
*/

:root {
    --blue: #1E5AA8;
}

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

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: var(--header-offset, 120px);
}

a {
    text-decoration: none;
}

body {
    background: #F8FAFC;
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
}

h1 {
    font-size: 5rem;
    line-height: 70px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

h1 span{
    color: var(--blue);
}

h2 {
    font-size: 4.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
}

h4 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

h5 {
    font-size: 1.8rem;
    margin: 0;
    padding: 0;
    line-height: 30px;
}

p {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    padding: 0;
}

dl, ol, ul {
    margin-bottom: 0;
}

ul {
    font-size: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.container {
    max-width: 1470px;
    padding: 0 15px;
}

/* Dividers */

.mt-100{
    margin-top: 100px;
}

.mb-100{
    margin-bottom: 100px;
}

.block_title{
    margin-bottom: 50px;
}

.block_title p{
    margin-top: 15px;
}

.section_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 90, 168, 0.1);
    color: var(--blue);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

/* ===================== About Section ===================== */

.about_section {
    padding: 80px 0;
}

/* ===================== About Grid ===================== */

.about_grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===================== Why Choose Us Section ===================== */

.why_choose_section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.why_choose_swiper {
    margin-top: 50px;
    overflow: visible;
}

.why_choose_swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.why_choose_swiper .swiper-slide{
    height: auto;
}

.why_choose_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid rgba(30, 90, 168, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.why_choose_item:hover {
    box-shadow: 0 15px 40px rgba(30, 90, 168, 0.1);
    border-color: rgba(30, 90, 168, 0.15);
}

.why_choose_icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue) 0%, #2b7de9 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_choose_icon i {
    font-size: 2.2rem;
    color: #fff;
}

.why_choose_text h4 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.why_choose_text p {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 26px;
}

/* ===================== Services Section ===================== */

.services_section {
    padding: 80px 0;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.services_item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(30, 90, 168, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 90, 168, 0.12);
    border-color: rgba(30, 90, 168, 0.15);
}

.services_icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 90, 168, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.services_item:hover .services_icon {
    background: var(--blue);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(30, 90, 168, 0.3);
}

.services_item:hover .services_icon i {
    color: #fff;
}

.services_icon i {
    font-size: 2.4rem;
    color: var(--blue);
    transition: color 0.4s ease;
}

.services_item h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.services_item p {
    font-size: 1.6rem;
    color: #64748b;
    line-height: 28px;
    flex-grow: 1;
}

.services_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 22px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services_cta i {
    font-size: 1.8rem;
}

.services_cta:hover {
    background: #164a8a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 90, 168, 0.35);
}

.services_cta_wrapper{
    margin-top: 40px;
}

/* ===================== Coverage Section ===================== */

.coverage_section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #2b7de9 60%, #3a8df5 100%);
    position: relative;
    overflow: hidden;
}

.coverage_section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.coverage_section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.coverage_content {
    position: relative;
    z-index: 1;
}

.coverage_icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.coverage_icon i {
    font-size: 3.6rem;
    color: #fff;
}

.coverage_section h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coverage_city {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.coverage_desc {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.coverage_section .whatsapp_button {
    margin-top: 0;
}

.coverage_map {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.coverage_map iframe {
    display: block;
    border-radius: 17px;
}

/* Hero Section */

.hero_badge{
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero_section span{
    color: var(--blue);
}

.hero_left{
    padding-left: 40px;
    display: flex;
}

.hero_right p{
    margin-top: 15px;
    margin-bottom: 20px;
}

.main_button{
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main_button:hover{
    background: #1E5AA8;
    color: #fff;
    transform: translateY(-3px);
}

.hero_right .d-flex{
    margin-top: 15px;
    margin-bottom: 10px;
    gap: 10px;
}

.whatsapp_button{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp_button:hover{
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
}

/* ===================== Top Bar ===================== */

.top_bar {
    background: var(--blue);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top_bar_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1470px;
    margin: 0 auto;
    padding: 8px 30px;
}

.top_bar_left{
    display: flex;
    gap: 20px;
}

.top_bar_left a,
.top_bar_right a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.35rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top_bar_left a:hover,
.top_bar_right a:hover {
    color: #fff;
}

.top_bar_left a i,
.top_bar_right a i {
    margin-right: 5px;
    font-size: 1.2rem;
}

.top_bar_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top_bar_right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
}

.top_bar_right a:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===================== Navbar ===================== */

.navbar__menu {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar__menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 30px;
}

.main-logo {
    flex-shrink: 0;
}

.main-logo span{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--blue);
    margin-left: 8px;
}

.main-logo a {
    display: flex;
    align-items: center;
}

.header_logo {
    max-height: 89px;
    width: auto;
    border-radius: 0;
}

.menu_container {
    display: flex;
    align-items: center;
}

.menu_container ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu_container ul li a {
    display: block;
    padding: 10px 20px;
    color: #2d3436;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.menu_container ul li a:hover,
.menu_container ul li.current-menu-item a,
.menu_container ul li.current_page_item a,
.menu_container ul li.active-section a {
    color: var(--blue);
    background: rgba(30, 90, 168, 0.08);
}

.menu_container ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.menu_container ul li a:hover::after,
.menu_container ul li.current-menu-item a::after,
.menu_container ul li.current_page_item a::after,
.menu_container ul li.active-section a::after {
    transform: translateX(-50%) scaleX(1);
}

/* Sub-menu */
.menu_container ul li {
    position: relative;
}

.menu_container ul ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    gap: 0;
    z-index: 100;
}

.menu_container ul li:hover > ul.sub-menu {
    display: flex;
}

.menu_container ul ul.sub-menu li a {
    padding: 10px 20px;
    font-size: 1.5rem;
    border-radius: 0;
    white-space: nowrap;
}

.menu_container ul ul.sub-menu li a::after {
    display: none;
}

.menu_container ul ul.sub-menu li a:hover {
    background: rgba(30, 90, 168, 0.06);
    color: var(--blue);
}

/* Phone numbers - hidden on desktop, shown in mobile slide-out */
.phone_numbers--mobile {
    display: none;
}

.phone_numbers--mobile a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.phone_numbers--mobile a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.phone_numbers--mobile a:first-child {
    background: var(--blue);
}

.phone_numbers--mobile a:first-child:hover {
    background: #164a8a;
    box-shadow: 0 4px 15px rgba(30, 90, 168, 0.35);
}

.phone_numbers--mobile a:last-child {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.phone_numbers--mobile a:last-child:hover {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 90, 168, 0.35);
}

.phone_numbers--mobile a i {
    font-size: 1.3rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(30, 90, 168, 0.08);
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #2d3436;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Space for fixed top bar + navbar */
body {
    padding-top: 120px;
}

/* WP Admin Bar offset */
body.admin-bar .top_bar {
    top: 32px;
}

body.admin-bar .navbar__menu {
    top: 72px;
}

body.admin-bar {
    padding-top: 152px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar__menu {
        top: 46px;
    }

    body.admin-bar .top_bar {
        display: none;
    }

    body.admin-bar {
        padding-top: 116px;
    }
}

/* ===================== Reviews Section ===================== */

.reviews_section {
    padding: 80px 0;
    background: #fff;
}

.reviews_slider {
    position: relative;
    padding-bottom: 60px;
}

.reviews_slider .swiper-slide {
    height: auto;
}

.review_card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(30, 90, 168, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review_card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 6rem;
    color: rgba(30, 90, 168, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 90, 168, 0.1);
    border-color: rgba(30, 90, 168, 0.15);
}

.review_stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.review_stars i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.review_text {
    font-size: 1.6rem;
    color: #475569;
    line-height: 28px;
    flex-grow: 1;
    margin-bottom: 25px;
}

.review_author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(30, 90, 168, 0.08);
}

.review_avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue) 0%, #2b7de9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.review_author h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
}

.reviews_navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.reviews_slider .swiper-button-prev,
.reviews_slider .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    background: #F8FAFC;
    border: 1px solid rgba(30, 90, 168, 0.15);
    border-radius: 50%;
    color: var(--blue);
    transition: all 0.3s ease;
    margin: 0;
}

.reviews_slider .swiper-button-prev::after,
.reviews_slider .swiper-button-next::after {
    font-size: 1.6rem;
    font-weight: 700;
}

.reviews_slider .swiper-button-prev:hover,
.reviews_slider .swiper-button-next:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.reviews_slider .swiper-pagination {
    position: static;
    width: auto;
}

.reviews_slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(30, 90, 168, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.reviews_slider .swiper-pagination-bullet-active {
    background: var(--blue);
    width: 28px;
    border-radius: 5px;
}

/* ===================== FAQ Section ===================== */

.faq_section {
    padding: 80px 0;
}

.faq_section .block_title {
    margin-bottom: 50px;
}

.faq_image {
    padding-right: 40px;
}

.faq_image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.faq_accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq_item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(30, 90, 168, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq_item:hover {
    border-color: rgba(30, 90, 168, 0.15);
}

.faq_item.active {
    box-shadow: 0 10px 35px rgba(30, 90, 168, 0.1);
    border-color: rgba(30, 90, 168, 0.2);
}

.faq_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 15px;
    transition: background 0.3s ease;
}

.faq_question:hover {
    background: rgba(30, 90, 168, 0.03);
}

.faq_question span {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.faq_item.active .faq_question span {
    color: var(--blue);
}

.faq_icon {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--blue);
    transition: transform 0.3s ease;
}

.faq_item.active .faq_icon {
    transform: rotate(180deg);
}

.faq_answer {
    display: none;
    padding: 0 28px 22px;
}

.faq_answer p {
    font-size: 1.6rem;
    color: #64748b;
    line-height: 28px;
}

.contact_form .cf7-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.contact_form .cf7-col {
    flex: 1 1 calc(50% - 8px);
}

.contact_form .cf7-col-full {
    flex: 1 1 100%;
}

.contact_form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.contact_form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 6px;
}

.contact_form input[type="text"],
.contact_form input[type="tel"],
.contact_form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

.contact_form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact_form input[type="submit"] {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact_form input[type="submit"]:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .contact_form .cf7-col {
        flex: 1 1 100%;
    }
}

/* ===================== Contact Section ===================== */

.contact_section {
    padding: 80px 0;
}

/* ===================== Contact Row ===================== */

.contact_row {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.contact_card_image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.contact_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.contact_card_info {
    flex: 1;
    background: linear-gradient(135deg, var(--blue) 0%, #2b7de9 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.contact_card_info h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact_detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact_detail:last-child {
    margin-bottom: 0;
}

.contact_detail i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact_detail span {
    display: block;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 1px;
}

.contact_detail a,
.contact_detail p {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    transition: opacity 0.3s ease;
}

.contact_detail a:hover {
    opacity: 0.85;
    color: #fff;
}

.contact_row .contact_form {
    flex: 1.5;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(30, 90, 168, 0.08);
    box-shadow: 0 10px 35px rgba(30, 90, 168, 0.08);
}

@media (max-width: 991px) {
    .contact_row {
        flex-direction: column;
    }

    .contact_card_image {
        height: 250px;
    }
}

/* ===================== Footer ===================== */

.site_footer {
    background: #0f172a;
    padding: 80px 0 0;
    margin-top: 80px;
}

.footer_top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer_logo img {
    max-height: 50px;
    width: auto;
    border-radius: 0;
}

.footer_logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.footer_about p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 26px;
}

.footer_col h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer_col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.footer_col ul li {
    margin-bottom: 10px;
}

.footer_col ul li:last-child {
    margin-bottom: 0;
}

.footer_col ul li a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer_col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer_contact_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer_contact_list li:last-child {
    margin-bottom: 0;
}

.footer_contact_list li i {
    color: var(--blue);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer_contact_list li a,
.footer_contact_list li span {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: block;
}

.footer_contact_list li a:hover {
    color: #fff;
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    margin-top: 0;
}

.footer_bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer_bottom a {
    color: #bcd4fb;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer_bottom a:hover {
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}