html, body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     letter-spacing: 0.2px;
}

h1, h2, h3, h4, h5, h6,
p,
a,
span,
button,
input,
textarea,
li {
    font-family: 'Inter', sans-serif;

}
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

html,
body {
    margin: 0;
    padding: 0;
    background: transparent;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100%;
}

/* ===== Transparent Navbar ===== */
.branding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: transparent;
    transition: all 0.3s ease;
}

/* After scroll */
.branding.scrolled {
    position: fixed;
    top: 0;
    background: transparent;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sitename {
    width: 520px;
    height: 110px;
    background-image: url("../img/logo-vanguard1.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 80% auto;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}

@media (max-width: 768px) {
    .sitename {
        width: 140px;
        height: 45px;
    }
}

/* ===== Horizontal Menu ===== */
.navmenu {
    display: flex;
    align-items: center;
}

.navmenu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navmenu ul li {
    position: relative;
}

/* Menu links */
.navmenu ul li a {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s ease;
    font-size: 17px;
    font-weight: 300;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
    color: #489FDA;
    font-weight: 700;
}

/* ===== Dropdown Styling ===== */
.navmenu .dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.navmenu .dropdown:hover > ul {
    display: block;
}

.navmenu .dropdown ul li a {
    color: #333;
    padding: 10px 20px;
}

.navmenu .dropdown ul li a:hover {
    background: #f4f4f4;
}

/* ===== Deep Dropdown ===== */
.navmenu .dropdown .dropdown ul {
    left: 100%;
    top: 0;
}

/* ===== Mobile Toggle ===== */
.mobile-nav-toggle {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 9999;
}

.hero {
    position: relative;
}

.navbar-call {
    color: #ffffff;
}

.navbar-call a {
    color: #ffffff;
    text-decoration: none;
}

.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-text {
    padding-left: 15vh;
}

/* Navbar Responsive - Menus visible without dropdown */
@media (max-width: 1200px) {
    .navmenu ul {
        gap: 15px;
    }

    .navmenu ul li a {
        font-size: 15px;
    }
}

/* Tablet and Desktop - Menus aligned properly */
@media (min-width: 577px) {
    .branding .container {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        overflow: hidden;
    }

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

    .navmenu ul {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        background: transparent;
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        transition: none;
        margin: 0;
    }

    .navmenu ul li {
        width: auto;
    }

    .navmenu ul li a {
        display: inline-block;
        padding: 8px 12px;
        font-size: 15px;
        border-bottom: none;
        white-space: nowrap;
    }

    .mobile-nav-toggle {
        display: none !important;
    }

    .navbar-call {
        display: flex !important;
        margin-left: 15px;
        padding: 0;
        border-top: none;
        width: auto;
        white-space: nowrap;
    }

    .navbar-call a {
        color: #ffffff;
        margin-left: 5px;
        font-size: 14px;
        white-space: nowrap;
    }

    .navbar-call i {
        font-size: 14px;
    }

    /* Hide dropdown arrows on tablet/desktop since menus are always visible */
    .navmenu .dropdown ul {
        display: none !important;
    }
}

/* Larger screens - adjust spacing */
@media (min-width: 992px) {
    .navmenu ul {
        gap: 25px;
    }

    .navmenu ul li a {
        font-size: 16px;
        padding: 10px 15px;
    }

    .navbar-call {
        margin-left: 20px;
    }

    .navbar-call a {
        font-size: 15px;
    }
}

/* Extra large screens */
@media (min-width: 1200px) {
    .navmenu ul {
        gap: 30px;
    }

    .navmenu ul li a {
        font-size: 17px;
        padding: 10px 15px;
    }
}

/* Mobile - with hamburger menu (below 577px) */
@media (max-width: 576px) {
    .mobile-nav-toggle {
        display: block !important;
    }

    .hero-header {
        background-size: cover;
        position: relative;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        min-height: 50vh;
        width: 100%;
    }

    .branding .container {
        padding: 10px 15px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        overflow: hidden;
    }

    .navmenu ul {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        display: flex;
        padding: 80px 20px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 9998;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
        margin: 0;
    }

    .navmenu.active ul {
        right: 0;
    }

    .navmenu ul li {
        width: 100%;
        text-align: left;
    }

    .navmenu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navmenu ul li:last-child a {
        border-bottom: none;
    }

    .navbar-call {
        display: flex !important;
        margin-top: 20px;
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: flex-start;
    }

    .navbar-call a {
        color: #ffb347;
        margin-left: 10px;
    }

    /* Close button styling */
    .navmenu.active .mobile-nav-toggle {
        position: fixed;
        right: 20px;
        top: 20px;
        color: #fff;
        z-index: 9999;
    }

    /* Overlay when menu is open */
    .navmenu.active::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
        pointer-events: none;
    }

    .sitename {
        width: 120px;
        height: 40px;
    }

    .mobile-nav-toggle {
        font-size: 24px;
    }
}

.container {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.1;
    margin-top: 20vh;
    font-weight: 550;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-text p {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.6;
    margin-top: 40px;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    margin-left: 13vh;
}

.btn-price {
    background: linear-gradient(to bottom, #90c95b 0%, #488f12 100%);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition:
        background 0.3s ease,
        transform 0.2s ease;
    position: relative;
    padding-right: 46px;
}

.btn-price:hover {
    background: linear-gradient(to bottom, #478014 0%, #74c73c 100%);
    color: #ffffff;
}

.btn-price::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ffffff;
}

.btn-call-dark {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-call-dark i {
    font-size: 14px;
    color: #ffffff;
}

.btn-call-dark:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 42px;
        margin-top: 30vh;
        margin-left: 20vh;
    }

    .hero-text p {
        font-size: 32px;
        margin-top: 30px;
    }

    .hero-header {
        padding: 60px 0 !important;
    }
}

/* ================= HERO MOBILE + TABLET CENTER ================= */
@media (max-width: 768px) {
    .hero-header {
        background-size: cover;
        background-position: center !important;
        position: relative;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        min-height: 60vh;
        width: 100%;
        display: flex;
        align-items: center;
    }

    /* Container adjustment */
    .hero-header .container {
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    /* Center the row - REMOVED transform */
    .hero-header .row {
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Text section */
    .hero-text {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 36px;
        margin: 0 0 10px 0;
        padding: 0;
        text-align: center;
    }

    .hero-text p {
        font-size: 28px;
        margin: 0 0 15px 0;
        padding: 0;
        text-align: center;
    }

    /* CTA section */
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin: 20px 0 0 0;
        width: 100%;
        padding: 0 15px;
    }

    /* Buttons */
    .hero-cta a {
        width: 100%;
        max-width: 320px;
        text-align: center;
        margin: 0 auto;
    }

    .btn-price,
    .btn-call-dark {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .btn-price {
        padding-right: 40px;
    }
}

/* ================= HERO MOBILE CENTER FIX ================= */
@media (max-width: 576px) {
    .hero-header {
        min-height: 50vh;
        display: flex;
        align-items: center;
    }

    .hero-header .container {
        padding: 0 15px;
    }

    /* Center the row content */
    .hero-header .row {
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    /* Text block */
    .hero-text {
        text-align: center;
        margin: 0 auto;
        padding: 0 10px;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
        margin: 0 0 8px 0;
        letter-spacing: 0.5px;
        text-align: center;
        width: 100%;
    }

    .hero-text p {
        font-size: 18px;
        line-height: 1.4;
        margin: 0 0 12px 0;
        text-align: center;
        width: 100%;
    }

    /* CTA buttons container */
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 15px 0 0 0;
        width: 100%;
        padding: 0 10px;
    }

    /* Buttons */
    .hero-cta a {
        width: 100%;
        max-width: 260px;
        text-align: center;
        margin: 0 auto;
    }

    .btn-price,
    .btn-call-dark {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .btn-price {
        padding-right: 35px;
    }

    .btn-price::after {
        right: 20px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-cta a {
        max-width: 220px;
    }

    .btn-price,
    .btn-call-dark {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-price {
        padding-right: 30px;
    }

    .btn-price::after {
        right: 15px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid #ffffff;
    }
}
/* Scrap Section */
.scrap-section {
    position: relative;
    background-image: url("../img/background1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Dark overlay for readability */
.scrap-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

/* Container above overlay */
.scrap-section .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

/* ===== COMMON HEADING ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    max-width: 100%;
    word-wrap: break-word;
}

.section-title span {
    color: #3A8CC7;
}

.section-subtitle {
    font-weight: 300;
    color: #ccc;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: nowrap;
    margin-left: 170px;
    word-wrap: break-word;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.scrap-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.scrap-left {
    flex: 1.5;
    min-width: 300px;
}

.scrap-right {
    flex: 1;
    min-width: 280px;
}

/* ===== CARDS GRID ===== */
.scrap-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
}

/* Card styling with light overlay */
.scrap-card {
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 0px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Background image for each card */

.scrap-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Light overlay */
.scrap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
    pointer-events: none;
}

/* Content above overlay */
.scrap-card img,
.scrap-card h3,
.scrap-card .btn-sell {
    position: relative;
    z-index: 2;
}

/* Hide the img element since we're using background */
.scrap-card img {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    display: none;
}

/* Add spacing for content */
.scrap-card {
    padding-top: 30px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.scrap-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    padding: 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
}

.scrap-card .btn-sell {
    display: block;
    margin: 0 auto 20px;
    background: #489FDA;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #7FC3F3, #489FDA);
    width: fit-content;
    max-width: 90%;
    word-wrap: break-word;
}

.scrap-card .btn-sell:hover {
    background: #ffa01c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 70, 0.3);
    background: linear-gradient(to bottom, #7FC3F3, #489FDA);
}

/* ===== FORM ===== */
.scrap-form {
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    padding: 35px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.scrap-form h3 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
}

.scrap-form h3 .orange-text {
    color: #489FDA;
    font-weight: 700;
}

.scrap-form form input,
.scrap-form form select,
.scrap-form form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #ededed;
    color: #757575;
    font-size: 14px;
    box-sizing: border-box;
}

.scrap-form form input:focus,
.scrap-form form select:focus,
.scrap-form form textarea:focus {
    outline: none;
    border-color: #489FDA;
}

.scrap-form form select option {
    background: #252525;
    color: #fff;
}

.scrap-form textarea {
    resize: none;
    height: 100px;
}

.scrap-form .captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.scrap-form .captcha-left {
    display: flex;
    align-items: center;
}

.scrap-form .captcha-left input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-bottom: 0;
    accent-color: #489FDA;
}

.scrap-form .captcha-left label {
    color: #212020;
    font-size: 14px;
    cursor: pointer;
}

.scrap-form .captcha-logo img {
    display: block;
    width: 32px;
    height: 32px;
}

.btn-get-price {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to bottom, #7FC3F3, #489FDA);
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-get-price:hover {
    background: #3A8CC7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 180, 70, 0.3);
}

/* Scrap Section Responsive */
@media (max-width: 1200px) {
    .scrap-container {
        gap: 30px;
    }

    .scrap-form h3 {
        font-size: 38px;
    }

    .section-subtitle {
        margin-left: 100px;
        white-space: normal;
    }
}

@media (max-width: 992px) {
    .scrap-container {
        flex-direction: column;
    }

    .scrap-left,
    .scrap-right {
        width: 100%;
    }

    .scrap-section .section-title {
        font-size: 36px;
    }

    .scrap-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-subtitle {
        margin-left: 50px;
        font-size: 15px;
    }

    .scrap-form h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .scrap-section {
        padding: 60px 15px;
    }

    .scrap-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .scrap-card {
        min-height: 300px;
        padding-top: 20px;
    }

    .scrap-card h3 {
        font-size: 18px;
    }

    .scrap-card .btn-sell {
        padding: 10px 20px;
        font-size: 14px;
    }

    .scrap-form h3 {
        font-size: 28px;
    }

    .scrap-form {
        padding: 25px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        margin-left: 0;
        white-space: normal;
        font-size: 14px;
        padding: 0 15px;
    }

    .scrap-form .captcha {
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .scrap-section {
        padding: 40px 12px;
    }

    .scrap-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .scrap-card {
        max-width: 350px;
        margin: 0 auto;
        min-height: 280px;
    }

    .scrap-form h3 {
        font-size: 24px;
    }

    .scrap-form form input,
    .scrap-form form select,
    .scrap-form form textarea {
        padding: 12px 14px;
        font-size: 13px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 13px;
        line-height: 1.5;
    }

    .scrap-form .captcha-left label {
        font-size: 12px;
    }

    .btn-get-price {
        padding: 14px;
        font-size: 14px;
    }

    .scrap-section .section-title {
        font-size: 30px;
    }
}

@media (max-width: 380px) {
    .scrap-form h3 {
        font-size: 20px;
    }

    .scrap-form .captcha {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .scrap-form .captcha-logo {
        align-self: flex-end;
    }
}

/* ================= SERVICE AREA ================= */
.service-area {
    position: relative;
    background: url("../img/map1.png") center / cover no-repeat;
    padding: 50px 20px 0;
    color: #fff;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.service-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    flex: 1;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.service-content {
    max-width: 600px;
    margin-bottom: 50px;
    width: 100%;
}

.service-content h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ccc;
    word-wrap: break-word;
}

.service-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
    word-wrap: break-word;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 720px;
    width: 100%;
}

.service-tags span {
    flex: 0 0 calc(25% - 9px);
    padding: 10px 0;
    text-align: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.footer {
    position: relative;
    width: 100%;
    padding: 20px 20px 20px;
    z-index: 2;
    margin-top: auto;
    border-top: 1px solid rgba(255, 180, 70, 0.2);
    box-sizing: border-box;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
    display: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

/* Footer typography */
.footer h3,
.footer h4 {
    font-weight: 500;
    line-height: 1;
    word-wrap: break-word;
}

.footer h3.brand {
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
}

.footer h4 {
    font-size: 20px;
    color: #489FDA;
    font-weight: 500;
}

.footer p,
.footer li,
.footer a {
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;
    word-wrap: break-word;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer a:hover {
    color: #489FDA;
}

/* Quick Links - Two Columns */
.footer .quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 15px;
}

.mv-icon img {
    width: 48px; /* adjust size */
    height: 48px; /* keep square */
    object-fit: contain;
}
/* ================= NEWSLETTER ================= */
.newsletter {
    display: flex;
    margin-top: 10px;
    width: 100%;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px 0 0 4px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.newsletter input::placeholder {
    color: #ccc;
}

.newsletter button {
    background: linear-gradient(to bottom, #fcae4e 0%, #7FC3F3 100%);
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter button:hover {
    background: linear-gradient(to bottom, #7FC3F3 0%, #fcae4e 100%);
}

/* Service Area & Footer Responsive */
@media (max-width: 992px) {
    .service-content h2 {
        font-size: 38px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-tags span {
        flex: 0 0 calc(33.33% - 8px);
    }
}

@media (max-width: 768px) {
    .service-area {
        padding: 40px 15px 0;
    }

    .service-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .service-content h2 {
        font-size: 32px;
    }

    .service-content p {
        font-size: 15px;
    }

    .service-tags {
        gap: 10px;
    }

    .service-tags span {
        flex: 0 0 calc(50% - 5px);
        padding: 8px 0;
        font-size: 13px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer h3.brand {
        font-size: 24px;
    }

    .footer h4 {
        font-size: 18px;
    }

    .footer p,
    .footer li,
    .footer a {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .service-area {
        padding: 30px 12px 0;
    }

    .service-content h2 {
        font-size: 26px;
    }

    .service-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .service-tags span {
        flex: 0 0 calc(50% - 6px);
        padding: 10px 0;
        font-size: 14px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .footer {
        text-align: left;
    }

    .footer .quick-links {
        justify-content: flex-start;
    }

    .newsletter {
        max-width: 100%;
        margin: 10px 0 0;
    }

    .footer h3.brand {
        font-size: 22px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer p,
    .footer li,
    .footer a {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .service-content h2 {
        font-size: 22px;
    }

    .service-tags span {
        flex: 0 0 calc(50% - 6px);
        font-size: 12px;
        padding: 8px 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .newsletter {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
        border-radius: 4px;
    }
}

/* Global fixes for all sections */
* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow-x: hidden;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}
/* ================= SERVICES HERO (using same banner as index) ================= */
.services-hero {
    position: relative;
    background: url("../img/hero-banner.jpg") center/cover no-repeat;
    padding: 180px 0 100px;
    color: #fff;
    text-align: center;
    margin-top: 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #489FDA;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.services-hero h2 {
    font-size: 32px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.services-hero p {
    max-width: 900px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ================= EXPERTISE SECTION ================= */
.expertise-section {
    padding: 80px 0;
    background: #111;
    text-align: center;
}

.expertise-section h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
}

.expertise-subtitle {
    color: #489FDA;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-card {
    background: #1a1a1a;
    padding: 40px 25px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: #489FDA;
}

.expertise-card i {
    font-size: 48px;
    color: #489FDA;
    margin-bottom: 20px;
}

.expertise-card h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.expertise-card p {
    font-size: 14px;
    color: #ccc;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 150px 0 80px;
    }

    .services-hero h1 {
        font-size: 42px;
    }

    .services-hero h2 {
        font-size: 24px;
    }

    .features-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expertise-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= SCRAP CTA RIBBON ================= */
.scrap-cta {
    position: relative;
    margin: 60px auto;
    padding: 0 20px;
}

.scrap-cta-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: linear-gradient(
        to bottom,
        #ff9a32 0%,
        #ff7f1f 45%,
        #e1640f 100%
    );

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3),
        0 6px 14px rgba(0, 0, 0, 0.45);
}

/* Ribbon folded ends */
.scrap-cta-inner::before,
.scrap-cta-inner::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 32px;
    height: 22px;
    background: #c4550d;
}

.scrap-cta-inner::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.scrap-cta-inner::after {
    right: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ================= TEXT ================= */
.scrap-cta-inner h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0f0c0c;

    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.6),
        0 -1px 0 rgba(255, 255, 255, 0.15);
}

/* ================= BUTTON ================= */
.scrap-cta-btn {
    padding: 9px 22px;
    background: linear-gradient(to bottom, #489FDA 0%, #ff8a2a 100%);

    color: #0a0707;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.45);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 3px 6px rgba(0, 0, 0, 0.5);

    transition: all 0.25s ease;
}

.scrap-cta-btn:hover {
    background: linear-gradient(to bottom, #ffc26a 0%, #ff973a 100%);
    transform: translateY(-1px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .scrap-cta-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .scrap-cta-inner h3 {
        font-size: 16px;
    }
}
/* =====================================================
   SERVICES SECTION
===================================================== */
.material-services {
    padding: 90px 0;
}

/* ---------- SECTION HEADING ---------- */
.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h2 {
    position: relative;
    display: inline-block;
    padding: 0 35px;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #489FDA;
}

.services-heading h2::before,
.services-heading h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #489FDA;
}

.services-heading h2::before {
    left: -95px;
}

.services-heading h2::after {
    right: -95px;
}
/* =====================================================
   SERVICES GRID
===================================================== */
.material-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* =====================================================
   CARD
===================================================== */
.material-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
}

/* FULL IMAGE */
.material-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.material-card:hover img {
    transform: scale(1.08);
}

/* DARK OVERLAY */
.material-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.15)
    );
    z-index: 1;
}

/* =====================================================
   CONTENT LAYER (SAFE STACKING)
===================================================== */
.material-card h3,
.material-card .material-btn,
.material-card .material-view-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

/* TITLE */
.material-card h3 {
    bottom: 95px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

/* SELL BUTTON */
.material-btn {
    bottom: 55px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #489FDA;
    text-decoration: none;
}

.material-btn::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 5px;
    background: #489FDA;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.material-btn:hover::after {
    transform: scaleX(1);
}

/* VIEW DETAILS BUTTON */
.material-view-btn {
    bottom: 25px;
    font-size: 13px;
    text-transform: uppercase;
    color: #489FDA;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.material-view-btn:hover {
    opacity: 1;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
    .material-services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .material-services-container {
        grid-template-columns: 1fr;
    }

    .material-card {
        height: 260px;
    }

    .material-card h3 {
        bottom: 85px;
        font-size: 16px;
    }

    .material-btn {
        bottom: 50px;
    }

    .material-view-btn {
        bottom: 22px;
    }
}

/* =====================================================
   CTA RIBBON
===================================================== */
.scrap-cta {
    background: linear-gradient(135deg, #489FDA 0%, #ff8c2a 100%);
    padding: 40px 20px;
}

.scrap-cta-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.scrap-cta-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1b1b1b;
}

/* CTA BUTTON */
.scrap-cta-btn {
    padding: 12px 30px;
    background: #1b1b1b;
    color: #489FDA;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.scrap-cta-btn:hover {
    background: #000;
}
/* ================= CONTENT WRAPPER WITH BACKGROUND IMAGE ================= */
.content-wrapper {
    position: relative;
    background-image: url("../img/background.png"); /* Your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional: creates parallax effect */
    width: 100%;
    z-index: 1;
}

/* Dark overlay for the entire content wrapper */
.content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay for readability */
    z-index: -1;
    pointer-events: none;
}

/* Ensure all sections inside have relative positioning */
.content-wrapper > section {
    position: relative;
    z-index: 2;
}

/* ================= FEATURES SECTION (Transparent, Small Height) ================= */
.features-section {
    background: transparent; /* No background - shows wrapper background */
    padding: 30px 0 40px;
    color: #fff;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.7); /* Semi-transparent dark */
    backdrop-filter: blur(3px); /* Slight blur for readability */
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 180, 70, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #489FDA;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 8px 20px rgba(255, 180, 70, 0.15);
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 36px;
    color: #489FDA;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.features-cta {
    text-align: center;
}

.btn-price {
    display: inline-block;
    background: linear-gradient(to bottom, #489FDA, #7FC3F3);
    color: #000;
    padding: 12px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 180, 70, 0.2);
}

.btn-price:hover {
    background: linear-gradient(to bottom, #7FC3F3, #489FDA);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 180, 70, 0.3);
}

/* ================= SCRAP CTA SECTION ================= */
.scrap-cta {
    width: 100%;
    background: #489FDA;
    padding: 0;
    position: relative;
    margin: 30px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Left ribbon fold */
.scrap-cta::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 35px solid #489FDA;
    border-bottom: 35px solid #489FDA;
    border-left: 20px solid transparent;
    z-index: 1;
}

/* Right ribbon fold */
.scrap-cta::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 35px solid #489FDA;
    border-bottom: 35px solid #489FDA;
    border-right: 20px solid transparent;
    z-index: 1;
}

.scrap-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 40px;
    position: relative;
    background: #489FDA;
    z-index: 2;
}

.scrap-cta-inner h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.scrap-cta-btn {
    background: #000;
    color: #489FDA;
    padding: 12px 32px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #000;
    display: inline-block;
}

.scrap-cta-btn:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon i {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 25px 0 35px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .btn-price {
        padding: 10px 30px;
        font-size: 15px;
    }

    .scrap-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .scrap-cta::before,
    .scrap-cta::after {
        border-top: 30px solid #489FDA;
        border-bottom: 30px solid #489FDA;
    }

    .scrap-cta-inner h3 {
        font-size: 20px;
    }

    .scrap-cta-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 25px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .btn-price {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
    }

    .scrap-cta::before {
        left: -15px;
        border-left: 15px solid transparent;
    }

    .scrap-cta::after {
        right: -15px;
        border-right: 15px solid transparent;
    }

    .scrap-cta-inner h3 {
        font-size: 18px;
    }
}
/* ================= FEATURES SECTION - EXACT MATCH WITH ICONS ================= */
.features-exact {
    position: relative;
    width: 100%;
    padding: 40px 0 50px;
    /* Background comes from parent - no background color here */
}

.features-exact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-exact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-exact-item {
    text-align: center;
    padding: 20px 15px;
    /* No background, no border - completely transparent */
}

.feature-icon-exact {
    margin-bottom: 15px;
}

.feature-icon-exact i {
    font-size: 48px; /* Icon size */
    color: #489FDA; /* Orange color exactly like image */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Shadow for visibility */
}

.feature-exact-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #489FDA;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-exact-item p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
    max-width: 280px;
    margin: 0 auto;
}

.features-exact-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-price-exact {
    display: inline-block;
    background: linear-gradient(to bottom, #489FDA, #7FC3F3);
    color: #000000;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-price-exact:hover {
    background: linear-gradient(to bottom, #7FC3F3, #489FDA);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .feature-icon-exact i {
        font-size: 42px;
    }

    .feature-exact-item h3 {
        font-size: 20px;
    }

    .feature-exact-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .features-exact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .feature-exact-item {
        padding: 15px;
    }

    .feature-icon-exact i {
        font-size: 44px;
    }

    .feature-exact-item h3 {
        font-size: 20px;
    }

    .btn-price-exact {
        padding: 14px 50px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .features-exact {
        padding: 30px 0 40px;
    }

    .feature-icon-exact i {
        font-size: 40px;
    }

    .feature-exact-item h3 {
        font-size: 18px;
    }

    .feature-exact-item p {
        font-size: 13px;
    }

    .btn-price-exact {
        padding: 12px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Navigation - Slide from Right */
@media (max-width: 991px) {
    .navmenu ul {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen to the right */
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 9999;
        margin: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .navmenu.active ul {
        right: 0; /* Slide in from right */
    }

    /* Overlay when menu is open */
    body.menu-open::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    /* Style the menu items */
    .navmenu ul li {
        width: 100%;
        margin-bottom: 5px;
    }

    .navmenu ul li a {
        display: block;
        padding: 15px 20px;
        color: #fff;
        font-size: 16px;
        border-radius: 5px;
        transition: all 0.3s;
    }

    .navmenu ul li a:hover,
    .navmenu ul li a.active {
        background: #489FDA;
        color: #000;
        padding-left: 25px;
    }

    /* Mobile toggle button */
    .mobile-nav-toggle {
        display: block !important;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        z-index: 10000;
        position: relative;
    }

    /* Hide navbar call in mobile menu by default, show it inside menu */
    .navbar-call {
        display: none !important;
    }

    .navmenu.active .navbar-call {
        display: flex !important;
        margin-top: 20px;
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
}

/* ===== Mobile Navigation - Slide from Right ===== */
@media (max-width: 991px) {
    .navmenu {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen to the right */
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.4s ease-in-out; /* Smooth slide animation */
        z-index: 9999;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .navmenu.active {
        right: 0; /* Slide in from right */
    }

    .navmenu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .navmenu ul li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .navmenu.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .navmenu.active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .navmenu.active ul li:nth-child(2) {
        transition-delay: 0.2s;
    }
    .navmenu.active ul li:nth-child(3) {
        transition-delay: 0.3s;
    }
    .navmenu.active ul li:nth-child(4) {
        transition-delay: 0.4s;
    }
    .navmenu.active ul li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .navmenu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .navmenu ul li a:hover,
    .navmenu ul li a.active {
        color: #489FDA;
        background: rgba(255, 180, 70, 0.1);
        padding-left: 25px;
    }

    /* Navbar call inside mobile menu */
    .navbar-call {
        display: flex !important;
        margin: 20px 0 0;
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease 0.6s;
    }

    .navmenu.active .navbar-call {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-call i {
        color: #489FDA;
        margin-right: 10px;
    }

    .navbar-call a {
        color: #fff;
        text-decoration: none;
    }

    /* Mobile toggle button */
    .mobile-nav-toggle {
        display: block !important;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        z-index: 10000;
        position: relative;
        transition: all 0.3s ease;
    }

    /* Overlay when menu is open */
    .navmenu.active::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        pointer-events: none;
    }

    /* Branding adjustments for mobile */
    .branding .container {
        padding: 10px 15px;
    }

    .sitename {
        width: 120px;
        height: 40px;
    }

    /* Hide desktop navbar call */
    .navbar-call {
        display: none;
    }
}

/* Tablet adjustments */
@media (min-width: 992px) {
    .navbar-call {
        display: flex !important;
        margin-left: 20px;
    }

    .mobile-nav-toggle {
        display: none !important;
    }
}

/* ===== Mobile Navigation - Slide from Right ===== */
@media (max-width: 991px) {
    /* Make sure toggle icon is visible */
    .mobile-nav-toggle {
        display: block !important;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        z-index: 10000;
        position: relative;
        transition: all 0.3s ease;
    }

    /* Hide desktop navbar-call on mobile */
    .navbar-call {
        display: none !important;
    }

    /* Mobile menu styling */
    .navmenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.4s ease-in-out;
        z-index: 9999;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .navmenu.active {
        right: 0;
    }

    .navmenu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        display: flex !important;
    }

    .navmenu ul li {
        width: 100%;
        opacity: 1;
        transform: none;
    }

    .navmenu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .navmenu ul li a:hover,
    .navmenu ul li a.active {
        color: #489FDA;
        background: rgba(255, 180, 70, 0.1);
        padding-left: 25px;
    }

    /* Show navbar-call inside mobile menu */
    .navmenu .navbar-call {
        display: flex !important;
        margin: 20px 0 0;
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .navmenu .navbar-call i {
        color: #489FDA;
        margin-right: 10px;
    }

    .navmenu .navbar-call a {
        color: #fff;
        text-decoration: none;
    }

    /* Overlay when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Branding adjustments */
    .branding .container {
        padding: 10px 15px;
    }

    .sitename {
        width: 120px;
        height: 40px;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .navbar-call {
        display: flex !important;
        margin-left: 20px;
    }

    .mobile-nav-toggle {
        display: none !important;
    }

    .navmenu ul {
        display: flex !important;
    }
}

/* ================= MOBILE NAV MENU ================= */
@media (max-width: 1199px) {
    .navmenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #111;
        padding: 80px 25px;
        transition: right 0.4s ease;
        z-index: 9999;
    }

    .navmenu.active {
        right: 0;
    }

    .navmenu ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .navmenu ul li a {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-nav-toggle {
        font-size: 28px;
        cursor: pointer;
        z-index: 10000;
        color: #fff;
    }
}

@media (max-width: 1199px) {
    .navmenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #111;
        padding: 80px 25px;
        transition: right 0.4s ease;
        z-index: 9999;
    }

    .navmenu.active {
        right: 0;
    }
}

/* =====================================================
   MOBILE NAV FIX (HOME + SERVICE)
===================================================== */
@media (max-width: 1199px) {
    .branding {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
    }

    .navmenu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #111;
        padding: 90px 25px;
        transition: right 0.35s ease;
        z-index: 10001;
        overflow-y: auto;
    }

    .navmenu.active {
        right: 0;
    }

    .navmenu ul {
        display: flex !important;
        flex-direction: column;
        gap: 22px;
    }

    .navmenu ul li {
        display: block;
    }

    .navmenu ul li a {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-nav-toggle {
        font-size: 28px;
        cursor: pointer;
        z-index: 10002;
        color: #fff;
    }
}

/* ================= SERVICE DETAIL ================= */
.service-detail {
    position: relative;
    background: url("../img/cpper.png") center/cover no-repeat;
    padding: 120px 20px;
    color: #ffffff;
}

.service-detail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.service-detail-wrapper {
    position: relative;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
}

/* LEFT CONTENT */
.service-detail-content {
    flex: 2;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #cccccc;
}

.breadcrumb a {
    color: #489FDA;
    text-decoration: none;
}

.service-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #489FDA;
}

.service-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: #eeeeee;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #dddddd;
}

/* BLOCK */
.service-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #489FDA;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #489FDA;
}

/* BENEFITS */
.service-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-card i {
    font-size: 28px;
    color: #489FDA;
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #489FDA;
}

.benefit-card p {
    font-size: 14px;
    color: #cccccc;
}

/* RIGHT FORM */
.service-quote {
    flex: 1;
    background: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 14px;
}

.service-quote h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #489FDA;
}

.service-quote input,
.service-quote select,
.service-quote textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: none;
    background: #1f1f1f;
    color: #ffffff;
}

.service-quote textarea {
    min-height: 100px;
    resize: none;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(to bottom, #489FDA, #3A8CC7);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-detail-wrapper {
        flex-direction: column;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .service-title {
        font-size: 34px;
    }
}

.hero-detailpage {
    background: url(../img/copper.png) center center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    min-height: 60vh;
    width: 100%;
}

/* ================= ABOUT PAGE ================= */
body {
    background: #1a0f0b;
    color: #fff;
}

/* ABOUT SECTION */
.about-main-section {
    position: relative; /* IMPORTANT */
    background: url("../img/background.png") center center/cover no-repeat;
    padding: 80px 0;
    z-index: 1;
}

.about-main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4); /* overlay color */

    z-index: -1;
}

.section-title {
    color: #489FDA;
    font-weight: 700;
    padding-left: 15vh;
    margin-bottom: 25px;
    white-space: nowrap;
}
.about-main-section p {
    padding-left: 15vh;
}

.feature-item {
    display: flex;
    padding-left: 15vh;
    margin-bottom: 20px;
}

.feature-item i {
    color: #489FDA;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #489FDA;
}
.image-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-box img {
    width: 600px; /* Bigger width */
    height: 300px; /* Bigger height */
    object-fit: cover;
    border-radius: 15px;
}

.price-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #489FDA, #3A8CC7);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* MISSION */
/* ================= MISSION & VISION SECTION ================= */

.mission-section {
    position: relative;
    background: url("../img/background.png") center center/cover no-repeat;
    padding: 90px 0; /* reduced */
}

.mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

/* Section Title */
.section-heading {
    color: #489FDA;
    font-weight: 700;
    font-size: 32px; /* smaller */
    margin-bottom: 10px;
}

.section-subtitle {
    color: #bbb;
    font-size: 14px;
    max-width: 500px;
    padding: 0 40px;
}

/* Cards */
.mv-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 35px;
    text-align: center;

    /* 3D Effect */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);

    transition: all 0.4s ease;
    transform-style: preserve-3d;
    min-height: 280px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Icon */
.mv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: linear-gradient(145deg, #ffffff, #e77613);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #fff;

    box-shadow:
        0 8px 20px rgba(255, 140, 50, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.4);
}

/* Card Title */
.mv-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Card Text */
.mv-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-section {
        padding: 70px 0;
    }

    .section-heading {
        font-size: 26px;
    }
}

/* ================= RESPONSIVE ================= */

/* ----------- TABLET ----------- */
@media (max-width: 992px) {
    .section-title {
        padding-left: 0;
        white-space: normal; /* allow wrapping */
        font-size: 32px;
        text-align: left;
    }

    .about-main-section p,
    .feature-item {
        padding-left: 0;
    }

    .image-box img,
    .mission-img {
        width: 100%;
        height: 250px;
    }

    .mission-section .row {
        padding-left: 0;
    }
}

/* ----------- MOBILE ----------- */
@media (max-width: 768px) {
    body {
        text-align: left;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .about-main-section {
        padding: 50px 20px;
    }

    .mission-section {
        padding: 60px 20px;
    }

    .feature-item {
        margin-bottom: 15px;
    }

    .image-box {
        margin-top: 30px;
    }

    .image-box img,
    .mission-img {
        height: 220px;
        border-radius: 15px;
    }

    .price-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* ----------- SMALL MOBILE ----------- */
@media (max-width: 576px) {
    .section-title {
        font-size: 22px;
    }

    .image-box img,
    .mission-img {
        height: 200px;
    }
}

/* =====================================================
   CONTACT PAGE – VANGUARD THEME
===================================================== */

/* ================= CONTACT INFO CARDS ================= */


.contact-info-wrapper {
    position: relative;
    margin-top: -80px; /* pulls it up into hero area */
    z-index: 10;
}

.info-card {
    background: #312727;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    background: #489FDA;
    color: #fff;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 10px;
}

.info-card h5 {
    color: #489FDA;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    color: #ddd;
}

.chat-btn {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid #489FDA;
    color: #489FDA;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
}

.chat-btn:hover {
    background: #489FDA;
    color: #fff;
}

/* ================= CONTACT FORM SECTION ================= */
/* ================= SECTION ================= */
/* ================= CONTACT SECTION ================= */

.contact-section {
    position: relative;
    padding: 250px 0 50px;
}

/* Make map stretch fully but not affect height */
.map-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.map-background iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Overlay content */
.contact-overlay {
    position: relative;
    z-index: 2;
}

/* FORM CARD */
.contact-card {
    max-width: 550px;
    background: linear-gradient(145deg, #2a1408, #3b1f10);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 140, 50, 0.2);

    height: auto;
    overflow: visible;
}
/* subtle orange glow effect */

/* ================= TITLE ================= */

.section-title {
    color: #489FDA;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 36px;
}

/* ================= FORM ================= */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: 489FDA;
    box-shadow: 0 0 10px rgba(255, 140, 50, 0.4);
}

.contact-form textarea {
    resize: none;
}

/* ================= BUTTON ================= */

.contact-form button {
    background: linear-gradient(to right, 489FDA, #d35400);
    border: none;
    padding: 14px 35px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 45px;
        text-align: center;
    }

    .map-box {
        margin-top: 40px;
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-header {
        padding: 90px 0;
    }

    .hero-text h1 {
        font-size: 36px;
        text-align: center;
    }
}
/* ==============================
   TABLET (≤1024px)
============================== */
@media (max-width: 1024px) {
    .contact-section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 30px;
        text-align: center;
    }

    .contact-card {
        max-width: 90%;
        margin: auto;
        padding: 40px;
    }

    .info-card {
        padding: 25px;
    }

    .info-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

/* ==============================
   MOBILE (≤768px)
============================== */
/* ==============================
   MOBILE MAP VISIBILITY FIX
============================== */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0; /* reduce section height */
    }

    .contact-card {
        max-width: 92%;
        padding: 22px 20px; /* smaller padding */
        border-radius: 14px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px; /* smaller fields */
        margin-bottom: 14px;
        font-size: 14px;
    }

    .contact-form textarea {
        height: 90px; /* reduce textarea height */
    }

    .contact-form button {
        padding: 10px;
        font-size: 14px;
    }
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    /* ==============================
   SMALL MOBILE (≤480px)
============================== */
    @media (max-width: 480px) {
        .contact-section {
            padding: 110px 0;
        }

        .section-title {
            font-size: 20px;
        }

        .contact-card {
            padding: 25px 18px;
        }

        .info-card {
            padding: 20px 15px;
        }

        .chat-btn {
            font-size: 13px;
            padding: 5px 12px;
        }

        .contact-form input,
        .contact-form textarea {
            font-size: 13px;
        }
    }
    /* ================= BLOG WRAPPER BACKGROUND ================= */

    .blog-wrapper {
        background:
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url("../img/background.png") center/cover fixed;
        padding: 20px 0;
    }

    /* Container */
    .blog-container {
        width: 90%;
        max-width: 1300px;
        margin: auto;
    }

    /* ================= HEADING ================= */

    .blog-heading {
        font-size: 45px;
        font-weight: 600;
        margin-top: 10px;
        color: #fff;
        position: relative;
    }

    .blog-heading span {
        color: #489FDA;
    }

    /* ================= SECTION DIVIDER ================= */

    .section-divider {
        width: 90%;
        max-width: 1300px;
        margin: 100px auto;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            #489FDA,
            transparent
        );
        opacity: 0.6;
    }

    /* ================= RECENT CARDS ================= */

    .blog-card {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    .blog-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* POP EFFECT */
    .blog-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    }

    .blog-card:hover img {
        transform: scale(1.1);
    }

    /* Overlay */
    .blog-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.2),
            transparent
        );
    }

    .blog-overlay h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    /* Button */
    .read-btn {
        display: inline-block;
        padding: 8px 20px;
        background: linear-gradient(145deg, #f7a23a, #c87510);
        color: #fff;
        font-size: 13px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .read-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(247, 147, 30, 0.6);
    }
    /* ===== Balanced Featured Layout ===== */

    .recent-layout {
        display: flex;
        align-items: stretch; /* makes both sides equal height */
        width: 95%;
        max-width: 1600px;
        margin: auto;
        border-radius: 24px;
        overflow: hidden;
        background: #eef1e6;
    }

    /* LEFT IMAGE */
    .recent-image {
        flex: 1.3;
    }

    .recent-image img {
        width: 100%;
        height: 420px; /* final fixed height */
        object-fit: cover;
        display: block;
    }

    /* RIGHT CONTENT */
    .recent-content {
        flex: 1;
        padding: 40px 50px; /* reduced padding */
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 420px; /* SAME as image height */
        box-sizing: border-box;
    }

    /* Title */
    .recent-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
        color: #111;
    }

    /* Paragraph */
    .recent-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* ================= WEEKLY SECTION ================= */

    .weekly-section {
        margin-top: 60px;
    }

    .weekly-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* Weekly Card */
    .weekly-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .weekly-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .weekly-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    }

    .weekly-card:hover img {
        transform: scale(1.08);
    }

    .weekly-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.2),
            transparent
        );
    }

    .weekly-overlay h4 {
        color: #fff;
        font-size: 14px;
        line-height: 1.4;
    }

    /* Change Swiper default blue */
    :root {
        --swiper-theme-color: #489FDA;
    }

    /* ===== FULL WIDTH FEATURED SECTION ===== */
    .recentSwiper {
        width: 100%;
        padding: 80px 0;
    }

    .recent-layout {
        display: flex;
        align-items: stretch;
        width: 95%; /* Almost full width */
        max-width: 1600px; /* Large screen support */
        margin: auto;
        gap: 0; /* Remove gap for seamless look */
        background: #eef1e6;
        border-radius: 24px;
        overflow: hidden;
    }

    /* LEFT IMAGE */
    .recent-image {
        flex: 1.3;
    }

    .recent-image img {
        width: 100%; /* Bigger hero image */
        object-fit: cover;
        display: block;
    }

    /* RIGHT CONTENT */
    .recent-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Meta */
    .recent-meta {
        font-size: 15px;
        color: #666;
        margin-bottom: 5px;
    }

    /* Title */
    .recent-content h2 {
        /* Large hero title */
        font-weight: 700;
        line-height: 1.2;
        margin-top: 10px;
        color: #111;
    }

    /* Description */
    .recent-content p {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        margin-top: 25px;
    }

    /* Tags */
    .recent-tags span {
        display: inline-block;
        background: #fff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 14px;
        margin-right: 10px;
        margin-bottom: 12px;
    }

    /* Button */
    .recent-btn {
        display: inline-block;
        margin-top: 5px;
        padding: 14px 28px;
        background: #000;
        color: #fff;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        width: fit-content;
        transition: 0.3s;
    }

    .recent-btn:hover {
        background: #489FDA;
    }
    .recent-image img {
        height: 420px; /* was 600px */
    }

    /* Reduce content padding */
    .recent-content {
        padding: 60px 60px; /* was 80px 70px */
    }

    /* Slightly smaller title (optional for better balance) */
    .recent-content h2 {
        font-size: 34px; /* was 42px */
    } /* Position */
    .recent-next,
    .recent-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        cursor: pointer;
        background: none; /* no circle */
    }

    /* Placement */
    .recent-prev {
        left: 30px;
    }

    .recent-next {
        right: 30px;
    }

    /* Arrow Icons */
    .recent-next::after,
    .recent-prev::after {
        font-size: 70px;
        font-weight: 700;
        color: #fff;
        transition: 0.3s ease;
    }

    /* Use clean arrow characters */
    .recent-next::after {
        content: "›";
    }

    .recent-prev::after {
        content: "‹";
    }

    /* Hover */
    .recent-next:hover::after,
    .recent-prev:hover::after {
        color: #489FDA;
        transform: scale(1.2);
    }

    /* ================= RESPONSIVE ================= */

    /* ===========================
   TABLET (≤1024px)
=========================== */
    @media (max-width: 1024px) {
        /* Heading */
        .blog-heading {
            font-size: 36px;
            text-align: center;
        }

        /* Featured Layout */
        .recent-layout {
            flex-direction: column;
            width: 95%;
        }

        .recent-image img {
            height: 380px;
        }

        .recent-content {
            height: auto;
            padding: 40px;
        }

        .recent-content h2 {
            font-size: 28px;
        }

        .recent-content p {
            font-size: 16px;
        }

        /* Weekly Grid → 2 Columns */
        .weekly-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        /* Blog Cards */
        .blog-card img {
            height: 300px;
        }
    }

    /* ===========================
   MOBILE (≤768px)
=========================== */
    @media (max-width: 768px) {
        /* Wrapper Padding */
        .blog-wrapper {
            padding: 40px 0;
        }

        /* Heading */
        .blog-heading {
            font-size: 28px;
            text-align: center;
        }

        /* Featured Section */
        .recentSwiper {
            padding: 40px 0;
        }

        .recent-layout {
            border-radius: 16px;
        }

        .recent-image img {
            height: 250px;
        }

        .recent-content {
            padding: 25px;
        }

        .recent-content h2 {
            font-size: 22px;
        }

        .recent-content p {
            font-size: 14px;
            line-height: 1.6;
        }

        .recent-btn {
            padding: 10px 20px;
            font-size: 14px;
        }

        /* Weekly Grid → 1 Column */
        .weekly-grid {
            grid-template-columns: 1fr;
        }

        .weekly-card img {
            height: 220px;
        }

        /* Blog Cards */
        .blog-card img {
            height: 220px;
        }

        .blog-overlay {
            padding: 18px;
        }

        .blog-overlay h3 {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .recent-next::after,
        .recent-prev::after {
            font-size: 50px;
        }

        .recent-prev {
            left: 10px;
        }

        .recent-next {
            right: 10px;
        }
    }

    /* ===========================
   SMALL MOBILE (≤480px)
=========================== */
    @media (max-width: 480px) {
        .recent-image img {
            height: 200px;
        }

        .recent-content h2 {
            font-size: 20px;
        }

        .recent-content p {
            font-size: 13px;
        }

        .recent-tags span {
            font-size: 12px;
            padding: 6px 12px;
        }

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

    /* ================= DETAIL PAGE MAIN CONTENT ================= */
    .detail-section {
        padding: 100px 0;
        position: relative;
        background: url("../img/background.png") center center / cover no-repeat;
    }

    /* Dark Overlay */
    .detail-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6); /* overlay darkness */
        z-index: 1;
    }

    /* container */
    .detail-container {
        display: flex;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }

    /* ---------------- ARTICLE ---------------- */
    .detail-article {
        flex: 1 1 65%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(8px);
        padding: 40px;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        color: #ccc;
    }

    /* FIXED IMAGE */
    .detail-article img.detail-feature-image {
        width: 100%;
        height: 400px;
        display: block;
        margin-bottom: 30px;

        /* Only two sides rounded */
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;

        object-fit: cover;
    }

    /* Headings */
    .detail-article h3 {
        font-size: 1.6rem;
        margin: 30px 0 15px;
        color: #489FDA;
    }

    /* Paragraph */
    .detail-article p {
        font-size: 1rem;
        line-height: 1.9;
        color: #faf4f4;
        margin-bottom: 15px;
    }

    /* List */
    .detail-article ul.detail-list {
        list-style: disc inside;
        padding-left: 0;
        margin-bottom: 25px;
        color: #faf4f4;
    }

    .detail-article ul.detail-list li {
        margin-bottom: 10px;
    }

    /* ---------------- SIDEBAR ---------------- */
    .detail-sidebar {
        flex: 1 1 30%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .detail-sidebar .sidebar-heading {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #489FDA;
    }

    /* Sidebar cards */
    .detail-sidebar .sidebar-item {
        display: flex;
        gap: 15px;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: 0.3s ease;
        cursor: pointer;
    }

    .detail-sidebar .sidebar-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 140, 0, 0.08);
    }

    .detail-sidebar .sidebar-item img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
    }

    .detail-sidebar .sidebar-item div h6 {
        font-size: 1rem;
        margin: 0 0 5px;
        color: #fff;
    }

    .detail-sidebar .sidebar-item div span {
        font-size: 0.85rem;
        color: #aaa;
    }

    /* ================= BLOG DETAIL HERO ================= */

    .blog-detail-hero {
        position: relative;
        padding: 90px 0; /* smaller height */
        background: url("../img/banner.png") center center / cover no-repeat;
        display: flex;
        align-items: center;
    }

    /* Dark overlay */
    .blog-detail-hero::before {
        content: "";
        position: absolute;
        inset: 0;
    }

    /* Keep content above overlay */
    .blog-detail-hero .container {
        position: relative;
        z-index: 2;
    }

    /* Title styling */
    .blog-detail-hero-title {
        font-size: 32px;
        font-weight: 600;
        color: #fff;
        line-height: 1.4;
        max-width: 700px;
        padding-top: 10vh;
        padding-left: 15vh;
    }
}
/* ================= RESPONSIVE - TABLET ================= */
@media (max-width: 991px) {
    /* Layout stack */
    .detail-container {
        flex-direction: column;
    }

    .detail-article,
    .detail-sidebar {
        flex: 1 1 100%;
    }

    /* Image height adjust */
    .detail-article img.detail-feature-image {
        height: 300px;
    }

    /* Hero adjustments */
    .blog-detail-hero {
        padding: 70px 0;
        text-align: center;
    }

    .blog-detail-hero-title {
        font-size: 26px;
        padding: 0;
        margin: 0 auto;
    }
}

/* ================= RESPONSIVE - MOBILE ================= */
@media (max-width: 576px) {
    /* Section padding smaller */
    .detail-section {
        padding: 60px 15px;
    }

    .detail-article {
        padding: 25px;
    }

    /* Image full auto height */
    .detail-article img.detail-feature-image {
        height: 220px;
    }

    /* Sidebar cards stack */
    .detail-sidebar .sidebar-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .detail-sidebar .sidebar-item img {
        width: 100%;
        height: auto;
    }

    /* Hero */
    .blog-detail-hero {
        padding: 60px 0;
    }

    .blog-detail-hero-title {
        font-size: 20px;
        line-height: 1.5;
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .navmenu {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9999;
    }

    .navmenu.active {
        opacity: 1;
        visibility: visible;
    }

    .navmenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .navmenu ul li {
        margin: 18px 0;
    }

    .navmenu ul li a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        font-weight: 500;
    }

    .navmenu ul li a.active,
    .navmenu ul li a:hover {
        background: linear-gradient(90deg, #d4a45f, #8b5e2f);
        padding: 10px 24px;
        border-radius: 6px;
        color: #000;
    }

    .mobile-nav-toggle {
        position: relative;
        z-index: 10000;
        background: none;
        border: none;
        font-size: 28px;
        color: #fff;
    }
}

/* ================= SERVICE DETAIL ================= */
.service-detail {
    position: relative;
    background: url("../img/cpper.png") center/cover no-repeat;
    padding: 120px 20px;
    color: #ffffff;
}

.service-detail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.service-detail-wrapper {
    position: relative;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
}

/* LEFT CONTENT */
.service-detail-content {
    flex: 2;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #cccccc;
}

.breadcrumb a {
    color: #489FDA;
    text-decoration: none;
}

.service-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #489FDA;
}

.service-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: #eeeeee;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #dddddd;
}

/* BLOCK */
.service-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #489FDA;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #489FDA;
}

/* BENEFITS */
.service-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-card i {
    font-size: 28px;
    color: #489FDA;
    margin-bottom: 10px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #489FDA;
}

.benefit-card p {
    font-size: 14px;
    color: #cccccc;
}

/* RIGHT FORM */
.service-quote {
    flex: 1;
    background: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 14px;
}

.service-quote h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #489FDA;
}

.service-quote input,
.service-quote select,
.service-quote textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: none;
    background: #1f1f1f;
    color: #ffffff;
}

.service-quote textarea {
    min-height: 100px;
    resize: none;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(to bottom, #489FDA, #3A8CC7);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .service-detail-wrapper {
        flex-direction: column;
    }

    .service-benefits {
        grid-template-columns: 1fr;
    }

    .service-title {
        font-size: 34px;
    }
}

.hero-detailpage {
    background: url(../img/copper.png) center center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    min-height: 40vh;
    width: 100%;
}
/* Pagination Container */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Page button */
.custom-pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover */
.custom-pagination .page-link:hover {
    background: #e9ecef;
    color: #000;
}

/* Active Page (ORANGE) */
.custom-pagination .page-item.active .page-link {
    background: #489FDA; /* orange */
    color: #fff;
}

/* Prev / Next buttons */
/* Prev & Next Arrow Buttons */
.custom-pagination .page-item:first-child .page-link,
.custom-pagination .page-item:last-child .page-link {
    background: #000; /* black background */
    color: #fff; /* white arrow */
    border-radius: 8px;
    width: 45px;
    height: 45px;
}

/* Hover effect */
.custom-pagination .page-item:first-child .page-link:hover,
.custom-pagination .page-item:last-child .page-link:hover {
    background: #333;
    color: #fff;
}
/* Disabled */
.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* BLOG SEARCH */
.blog-search-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.blog-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.blog-search-form:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 50px;
}

.blog-search-form input::placeholder {
    color: #999;
}

.blog-search-form button {
    background: linear-gradient(135deg, #ff7a00, #ff9d2f);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.45);
}

.cookie-banner
{
position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid #f28c1c;
    padding: 20px;
    z-index: 999999;
}

/* ================= COOKIE POLICY ALERT ================= */

.cookie-alert {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-left: 6px solid #f28c1c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 30px;
}

.cookie-alert h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #212529;
}

.cookie-alert h4 {
    margin-top: 25px;
    font-size: 18px;
    color: #f28c1c;
}

.cookie-alert p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cookie-actions .btn-accept {
    background: #f28c1c;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.cookie-actions .btn-customize {
    background: transparent;
    color: #192214;
    border: 1px solid #f28c1c;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.cookie-actions .btn-customize:hover {
    background: #fd9d0d;
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-alert {
        padding: 20px;
    }
}

/* Cookie button container */
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Base button style */
.btn-cookie {
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* Accept all cookies (Primary) */
.btn-accept {
    background-color: #ff9f2d;
    color: #fff;
}

.btn-accept:hover {
    background-color: #f28c1c;
}

/* Accept necessary cookies (Secondary) */
.btn-necessary {
    background-color: transparent;
    color: #ff9f2d;
    border: 1.5px solid #ff9f2d;
}

.btn-necessary:hover {
    background-color: #fff5e8;
}

/* Mobile */
@media (max-width: 576px) {
    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

/* ================= COOKIE BANNER ================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px 24px;
    font-family: inherit;
}

/* Text area */
.cookie-text {
    max-width: 760px;
}

.cookie-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.cookie-text a {
    color: #ff9f2d;
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

/* Actions */
.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
}

/* Buttons */
.btn-accept {
    background: #ff9f2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-accept:hover {
    background: #ff9f2d;
}

.btn-necessary {
    background: transparent;
    color: #ff9f2d;
    border: 1px solid #ff9f2d;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-necessary:hover {
    background: #e7f1ff;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-necessary {
        width: 100%;
    }
}
/* Policy pages layout */

.policy-page{
    padding:120px 0 80px 0;
    }
    
    .policy-header{
    margin-bottom:40px;
    }
    
    .policy-header h1{
    font-size:36px;
    font-weight:700;
    color:#ffffff;
    }
    
    .policy-content{
    color:#ffffff;
    max-width:900px;
    }
    
    .policy-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    }
    
    .policy-content h2{
    font-size:28px;
    margin-top:30px;
    margin-bottom:15px;
    }
    
    .policy-content h3{
    font-size:22px;
    margin-top:25px;
    margin-bottom:10px;
    }
    
    .policy-content ul{
    padding-left:20px;
    margin-bottom:20px;
    }
    
    .policy-content ul li{
    margin-bottom:8px;
    list-style:disc;
    }

.policy-page{
    padding:120px 0 80px 0;
    }
    
    .policy-header{
    margin-bottom:40px;
    }
    
    .policy-header h1{
    font-size:36px;
    font-weight:700;
    color:#ffffff;
    }
    
    .policy-content{
    color:#ffffff;
    max-width:900px;
    }
    
    .policy-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    }
    
    .policy-content h2{
    font-size:28px;
    margin-top:30px;
    margin-bottom:15px;
    }
    
    .policy-content h3{
    font-size:22px;
    margin-top:25px;
    margin-bottom:10px;
    }
    
    .policy-content ul{
    padding-left:20px;
    margin-bottom:20px;
    }
    
    .policy-content ul li{
    margin-bottom:8px;
    list-style:disc;
    }
