/* =========================
   Fonts
========================= */

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-Light.woff2') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-Regular.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-SemiBold.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-Bold.woff2') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo/Cairo-ExtraBold.woff2') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Montserrat */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


/* =========================
   Root Variables (Modern Blue System)
========================= */

:root {

    /* ========= Brand Colors ========= */

    --color-primary: #003747;
    --color-primary-dark: #002a36;
    --color-primary-light: #005066;

    --color-accent: #00c8ff;
    --color-accent-strong: #00b0e0;
    --color-accent-soft: rgba(0, 200, 255, 0.08);

    /* ========= Text ========= */

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #ffffff;

    /* ========= Backgrounds ========= */

    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft: #f1f5f9;
    --bg-dark: #0f172a;

    --overlay-dark: rgba(0, 0, 0, 0.85);
    --overlay-soft: rgba(0, 0, 0, 0.55);

    /* ========= Borders ========= */

    --border-color: #e2e8f0;

    /* ========= Radius ========= */

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* ========= Shadows ========= */

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);

    /* ========= Effects ========= */

    --transition: all 0.3s ease;
}


/* =========================
   Reset
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html[lang="ar"] body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

html[lang="en"] body {
    font-family: 'Montserrat', sans-serif;
    direction: ltr;
}

body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}


/* =========================
   Container
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   Typography
========================= */

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.3;
    color: #007a1b;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

h3 {
    font-size: 26px;
    font-weight: 600;
}

p {
    font-size: 16px;
}

.text-muted {
    color: #fff;
}


/* =========================
   Links
========================= */

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

/* =========================
   Buttons System
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #14bb3b, #1f642f, #00390d);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Accent Button */
.btn-accent {
    background: var(--color-accent);
    color: #000;
}

.btn-accent:hover {
    background: var(--color-accent-strong);
}

/* Outline Button */
.btn-outline {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* =========================
   Sections
========================= */

section {
    padding: 60px 0;
    background: var(--bg-main);
}

.section-light {
    background: var(--bg-light);
}

.section-soft {
    background: var(--bg-soft);
}


/* =========================
   Responsive
========================= */

@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    section {
        padding: 50px 0;
    }
}

/* ===============================
   Loader
================================ */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader.d-none {
    display: none;
}

/* ===============================
   Cubes Container
================================ */

.loader-cubes {
    display: flex;
    gap: 12px;
}

/* ===============================
   Cube
================================ */

.loader-cubes span {
    width: 18px;
    height: 18px;
    border-radius: 4px;

    background: linear-gradient(
        145deg,
        #14bb3b,
        #1f642f,
        #00390d
    );

    animation: cubeBounce .6s infinite ease-in-out;
}

/* Delay */

.loader-cubes span:nth-child(2) {
    animation-delay: .1s;
}

.loader-cubes span:nth-child(3) {
    animation-delay: .2s;
}

/* ===============================
   Animation
================================ */

@keyframes cubeBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7;
    }

    50% {
        transform: translateY(-12px);
        opacity: 1;
    }

}


/* ===============================
   Floating Social Icons (Updated Brand)
================================ */

.floating-social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

.floating-social-icons .social-link {
    font-size: 22px;
    color: var(--text-light);
    background: linear-gradient(145deg,
            var(--color-primary),
            var(--color-primary-dark));
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
}

.floating-social-icons .social-link:hover {
    transform: translateY(-3px);
}

.floating-social-icons .social-link span {
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%);
    width: 150px;
    background: var(--color-primary);
    color: var(--text-light);
    padding: 6px 14px;
    text-align: center;
    border-radius: var(--radius-lg);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

/* Paper Plane Icon */
.fa-paper-plane {
    color: var(--color-accent);
}

/* تأثير النبض */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
}

.floating-social-icons .social-link:hover {
    transform: scale(1.1);
}

.icon_contact {
    position: fixed;
    z-index: 888;
}

/* أيقونة WhatsApp */
.floating-social-icons .whatsapp {
    background: #22d14b;
    animation: pulse 1.5s infinite;
}

/* إخفاء الأيقونات عند الوصول إلى Contact Us */
.hidden {
    opacity: 0;
    pointer-events: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons .social-link {
    font-size: 24px;
    color: #333;
    transition: 0.3s;
}

.social-icons .social-link:hover {
    color: #000;
}

/* ================= Navbar ================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    background: transparent;
    padding-inline: 25px;
}

.navbar.scrolled {
    background: #33261ce9;
    backdrop-filter: blur(12px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 150px;
    height: 100%;
    border-radius: 5px;
    padding-top: 5px;
}

/* ================= Links ================= */

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 3px;
    width: 0;
    background: #22d14b;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links .active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links .active {
    color: #22d14b;
}

/* ================= Dropdown ================= */

.dropdown,
.dropdown-sub {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 12px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    flex-direction: column;
    gap: 0 !important;
}

.dropdown-menu li {
    width: 100%;
    text-align: center;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    padding-inline: 15px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu li:hover {
    background: var(--bg-light);
    color: var(--color-primary);
}

/* Hover + Click Support */
.dropdown:hover>.dropdown-menu,
.dropdown-sub:hover>.dropdown-menu,
.dropdown.active>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sub Menu */
.dropdown-sub .dropdown-menu {
    top: 0;
    right: 100%;
}

/* ================= Actions ================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ================= Mobile ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 992px) {
    .navbar .container {
        padding-block: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(12px);
        max-height: 0;
        transition: var(--transition);
        border-radius: 20px;
        overflow: hidden;
    }

    .nav-links.open {
        max-height: 90vh;
        overflow: visible;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a {
        display: block;
        padding: 14px 18px;
        font-size: 16px;
    }

    .dropdown-menu {
        display: none;
        right: 20px;
        background: #1f2933;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 32px;
        color: #fff;
    }

    .dropdown-sub .dropdown-menu {
        top: 38px;
        right: 50%;
    }

    .booms,
    .granular {
        color: var(--bg-main);
    }

    .logo img {
        width: 100px;
    }
}

/***************************************
***************** hero *****************
****************************************/
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-inner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    width: 100%;
}

/* Video */
.hero-video {
    position: absolute;
    top: -25vh;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 150vh;
    object-fit: fill;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(0, #0000004a, #0000004a, #0000004a);
}

/* Content */
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr;
    align-items: end;
    padding-bottom: 80px;
    gap: 48px;
    position: relative;
    z-index: 3;
    height: 100vh;
    padding-inline: 30px;
    width: 100%;
    margin-inline: 0;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: 45px;
    line-height: 1.3;
    color: var(--bg-main);
}

.hero-text ul li {
    list-style: none;
}

.hero-text h1 span {
    background: #00e235;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--bg-main);
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hero-features li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--bg-main);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

/* Buttons */
.btn {
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #14bb3b, #1f642f, #00390d);
    color: var(--bg-main);
}

.btn.primary:hover {
    opacity: 0.85;
}

.btn.outline {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #27ff5a;
    border-radius: 40px;
    background: linear-gradient(135deg, #27ff5a, #27ff5a, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn.outline:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        text-align: center;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-text {
        margin: auto auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-overlay {
        background: linear-gradient(var(--overlay-direction), #00000090, #00000090, #00000090);
    }

    .hero-text p {
        font-size: 16px;
        color: #ffffff !important;
    }

    html[lang="en"] .hero-text h1 {
        font-size: 25px;
    }

    .hero-features li {
        margin-bottom: 3px;
        font-size: 15px;
        color: #ffffff;
    }
}

@media (max-width: 762px) {
    .hero-text {
        margin: auto auto 50px;
    }
}


/***************************************
*************** PRODUCTS ***************
****************************************/

.section-header {
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    color: #323232e7;
}


.btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-product {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #1f642f;
    border-radius: 40px;

    background: linear-gradient(135deg, #14bb3b, #1f642f, #00390d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-product.active {
    background: linear-gradient(135deg, #14bb3b, #1f642f, #00390d);
    -webkit-background-clip: border-box;
    /* نرجعها طبيعي */
    -webkit-text-fill-color: #fff;
    /* نخلي النص ظاهر */
    color: #fff;
    border: 0 solid transparent;
}

/* Slider */

.product-slide {
    display: flex;
    justify-content: center;
}

.product-card {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 43%), rgb(0 0 0 / 55%), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--text-light);
}

.product-tag {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #f4f4f4;
    line-height: 1.5;
    font-weight: 500;
    width: 75%;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* عدد السطور */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-overlay h2 {
    color: var(--text-light);
}

.product-overlay .btn {
    margin-inline-end: auto;
}

/* Swiper arrows */

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-light);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
}

/* Responsive */

@media (max-width: 768px) {

    .product-card {
        height: 350px;
    }

    .btns {
        flex-direction: column;
    }

    .btn-product {
        width: 100%;
        text-align: center;
    }


    .product-tag {
        width: 100%;
    }
}



/***************************************
************ spill-journey *************
****************************************/

.spill-journey {
    padding: 80px 0;
    background: #fff;
}

.journey-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.journey-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #003747;
}

.journey-header p {
    margin-top: 12px;
    font-size: 16px;
    color: #555;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.journey-step {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #003747;
    margin-bottom: 10px;
}

.journey-step h4 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003747;
}

html[lang="ar"] .journey-step h4 {
    white-space: nowrap;
}

.journey-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Highlight Qimmati Step */
.journey-step.highlight {
    border-color: #00c3ff;
    background: #00c2ff03;
}

.journey-step.highlight h4,
.journey-step.highlight span {
    color: #00c3ff;
}




.blog-section {
    padding: 40px 0;
    background: #e7e7e71f;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #007a1b;
}

.blog-header p {
    max-width: 600px;
    font-size: 18px;
    margin: auto;
    color: #323232e7;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image img {
    width: 100%;
    height: 320px;
    object-fit: fill;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #007a1b;
    min-height: 80px;
}

.blog-content p {
    color: #636363;
    font-size: 16px;
    flex: 1;
    line-height: normal;
}

.blog-btn {
    align-self: flex-start;
    padding: 10px 18px;
    margin-inline: auto;
    border: 2px solid #fff;
    border-radius: 40px;
    background: linear-gradient(135deg, #14bb3b, #1f642f, #00390d);
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    transition: all 0.7s ease;
}

.blog-btn:hover {
    color: #fff;
    opacity: 0.85;
}

.blog-btn:hover {
    opacity: 0.85;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    line-height: 3;
    font-size: 30px;
    font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 90%);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    background: linear-gradient(135deg, #14bb3b, #2e8743, #14bb3b);
    color: var(--bg-main);
    padding: 27px 20px;
    border-radius: 3px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0);
    left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
    right: auto;
}




.cta-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #33261c;
    z-index: 0;
    border-bottom: 2px solid #fff;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-text p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #fffffff4;
}

.cta-actions .btn {
    margin: 5px 10px;
    font-weight: 600;
}

.btn-outline {
    position: relative;
    background: transparent;
    padding: 10px 20px;
    border-radius: 8px;
    /* Gradient Border */
    border: 2px solid #27ff5a;
    font-weight: 600;

    /* Gradient Text */
    background: linear-gradient(135deg, #27ff5a, #27ff5a, #ffffff);
    border-radius: 40px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline:hover {
    opacity: 0.75;
    border: 2px solid #27ff5a;
    /* Gradient Text */
    background: linear-gradient(135deg, #27ff5a, #27ff5a, #ffffff);
    border-radius: 40px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .cta-text h2 {
        font-size: 27px;
    }

    .cta-text p {
        font-size: 15px;
        line-height: 1.3;
    }

    .blog-header h2 {
        font-size: 30px;
    }
}





.site-footer {
    background: #33261c;
    backdrop-filter: blur(14px);
    padding: 60px 20px 30px;
    font-size: 16px;
}

.site-footer h4 {
    color: var(--bg-main);
    font-weight: 600;
}

.site-footer a {
    color: #fefefe;
    font-weight: 500;
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--color-primary);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

footer p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.footer-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #33261c;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    opacity: 0.89;
    transform: scale(1.08);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom p {
    color: var(--border-color);
    text-align: center;
    display: block;
}

#year {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social .social-icons a {
        margin: 0 5px;
    }
}

.background {
    background: linear-gradient(to bottom, #f3e9dc01 0%, #ebebeb13 40%, #8976547f 90%);
}