/* =========================
   PREMIUM BLACK & GOLD THEME
========================= */

:root{
    --gold:#f7b500;
    --gold2:#ffcc33;
    --dark:#050608;
    --dark2:#0d1117;
    --card:#171d26;
}

/* Website Background */

body{
    background:
    linear-gradient(180deg,#151d29 0%,#0b1118 35%,#050608 70%,#000000 100%);
    color:#fff;
}

/* Navbar */

header{
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(247,181,0,.2);
}

/* Hero Section */

.hero{
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.75));
}

/* BIG SHOP NAME */

.hero-title,
.shop-name,
.hero h1{

    font-size:72px;
    font-weight:900;
    line-height:1;
    letter-spacing:-2px;

    background:linear-gradient(180deg,#ffffff,#f7b500,#cc8400);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 6px 20px rgba(0,0,0,.8);
}

/* Subtitle */

.hero-subtitle,
.hero p{

    font-size:24px;
    color:#dde5ee;
    font-weight:600;
}

/* Section */

section{
    background:transparent;
}

/* Catalog Card */

.service-card,
.package-card,
.catalog-card{

    background:linear-gradient(160deg,#1b2430,#111821);

    border:1px solid rgba(247,181,0,.15);

    border-radius:22px;

    transition:.35s;

    box-shadow:
    0 20px 40px rgba(0,0,0,.45);
}

.service-card:hover,
.package-card:hover,
.catalog-card:hover{

    transform:translateY(-8px);

    border-color:#f7b500;

    box-shadow:
    0 30px 60px rgba(0,0,0,.6),
    0 0 20px rgba(247,181,0,.15);
}

/* Image */

.service-card img,
.package-card img,
.catalog-card img{

    background:#eef2f7;

    padding:10px;

    border-radius:15px;
}

/* Button */

button,
.btn{

    background:linear-gradient(135deg,#ffd54d,#f7b500,#cf8500);

    color:#000;

    font-weight:700;

    border:none;

    border-radius:10px;
}

/* Footer */

footer{

    background:#030303;

    border-top:1px solid rgba(247,181,0,.15);
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* TOP BAR */

.top-bar {
    background: #000000;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}


/* HEADER */

header {
    background: #111111;
}

nav,
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.header-shop-name {
    font-size: 24px;
    font-weight: 900;
    color: #00bfff;
    letter-spacing: 1px;
}

nav ul,
.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}

nav ul li a,
.nav-links li a {
    font-weight: 700;
    transition: 0.25s ease;
}

nav ul li a:hover,
.nav-links li a:hover {
    color: #00bfff;
}


/* HERO */

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
}

.hero-content,
.hero-text {
    position: relative;
    z-index: 2;
    width: min(900px, 90%);
    padding: 40px 20px;
}

.shop-name {
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00bfff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.65);
}

.hero-content h2,
.hero-text h2 {
    margin: 15px 0;
    font-size: clamp(22px, 4vw, 36px);
}

.hero-content p,
.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-block;
    background: #00bfff;
    padding: 12px 25px;
    margin: 5px;
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: #008fc4;
}


/* GENERAL SECTIONS */

section {
    padding: 60px 5%;
    text-align: center;
}

section h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 30px;
    color: #00bfff;
}

.about p,
.contact p {
    max-width: 900px;
    margin: 10px auto;
    font-size: 17px;
}


/* SERVICES */

.service-list,
.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    align-items: start;
}

.service-box,
.card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 20px;
    color: #111111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    height: 100%;
}

.service-box img,
.card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 15px;
    padding: 6px;
    margin-bottom: 15px;
}

.service-box h3,
.card h3 {
    font-size: 25px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 15px;
}

.service-box p,
.card p {
    font-size: 18px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 12px;
}

.service-box ul {
    padding: 0;
}

.service-box li {
    list-style: none;
    position: relative;
    background: #ffffff;
    margin: 10px 0;
    padding: 12px 15px 12px 44px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-box li::before {
    content: "★";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #f5b000;
    font-size: 18px;
}

.service-box b {
    display: block;
    background: #111111;
    color: #ffffff;
    padding: 12px;
    border-radius: 10px;
    font-size: 22px;
    text-align: center;
    margin-top: 8px;
}


/* GALLERY */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.gallery-container img,
.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
}


/* BOOKING FORM */

.booking form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
    text-align: left;
}

.booking label {
    font-weight: 700;
    color: #ffffff;
}

.booking input,
.booking select,
.booking textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #333333;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
}

.booking textarea {
    min-height: 120px;
    resize: vertical;
}

.booking button {
    justify-self: center;
}


/* SOCIAL LINKS */

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    background: #171717;
    border: 1px solid #333333;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
}

.social-links a:hover {
    background: #00bfff;
}


/* FLOATING WHATSAPP ICON */

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    z-index: 9999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.whatsapp-float img {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px;
    max-width: 58px;
    object-fit: contain;
    display: block;
    padding: 0;
    margin: 0;
}


/* FOOTER */

footer {
    background: #000000;
    text-align: center;
    padding: 22px 5%;
}


/* TABLET */

@media (max-width: 900px) {
    nav,
    .navbar {
        flex-direction: column;
    }

    nav ul,
    .nav-links {
        justify-content: center;
    }

    .hero {
        min-height: 470px;
    }
}


/* MOBILE */

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        flex-direction: column;
    }

    .header-shop-name {
        font-size: 20px;
    }

    nav ul,
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        min-height: 430px;
    }

    .hero-content,
    .hero-text {
        width: 94%;
        padding: 30px 10px;
    }

    section {
        padding: 45px 5%;
    }

    .service-list,
    .service-container {
        grid-template-columns: 1fr;
    }

    .service-box img,
    .card img {
        height: 180px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-container img,
    .gallery img {
        height: 240px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float img {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px;
        max-width: 54px;
    }
}/* ==============================
   MODERN BLACK PREMIUM THEME
================================ */

:root {
    --gold: #f7b500;
    --gold-dark: #d89000;
    --dark: #030405;
    --dark-card: #0d131b;
    --dark-soft: #151e29;
    --text-light: #f8fafc;
    --text-muted: #b7c0cc;
}

/* Full Website Background */

body {
    background:
        radial-gradient(circle at top, #172331 0%, #070a0e 35%, #000000 75%);
    color: var(--text-light);
}

/* Hero Banner */

.hero {
    min-height: 85vh;
    background: #000;
}

.hero > img {
    filter: brightness(0.30) contrast(1.08);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.45) 60%,
            #000 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

/* Big Modern Shop Name */

.shop-name {
    margin: 15px 0;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 1000;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.shop-name span {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7b500 48%,
        #d47c00 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 5px 20px rgba(0,0,0,0.9),
        0 0 35px rgba(247,181,0,0.18);

    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.8));
}

/* Subtitle */

.hero-subtitle {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: clamp(1.1rem, 2.3vw, 1.65rem);
    font-weight: 700;
    color: #e7edf5;
    letter-spacing: 0.3px;
    text-shadow: 0 4px 15px #000;
}

/* Sections */

section {
    background: transparent;
}

/* Catalog Grid */

.service-list {
    gap: 25px;
    align-items: stretch;
}

/* Catalog Card */

.service-box {
    position: relative;
    background:
        linear-gradient(
            155deg,
            #182331 0%,
            #0b1119 48%,
            #030506 100%
        );

    border: 1px solid rgba(247,181,0,0.28);
    border-radius: 24px;
    padding: 14px;
    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.55),
        inset 0 1px rgba(255,255,255,0.05);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #f7b500,
        transparent
    );
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: rgba(247,181,0,0.65);

    box-shadow:
        0 32px 75px rgba(0,0,0,0.7),
        0 0 30px rgba(247,181,0,0.10);
}

/* Catalog Image Background */

.service-box img {
    width: 100%;
    height: 195px;
    object-fit: contain;

    background:
        linear-gradient(
            145deg,
            #eef2f6,
            #cbd5df
        );

    padding: 9px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.8);

    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.08),
        0 12px 25px rgba(0,0,0,0.35);
}

/* Catalog Name */

.service-box h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 18px 5px 6px;
}

/* Catalog Small Text */

.service-box p {
    color: #c7d0dc;
    margin-left: 5px;
}

/* Catalog Information Rows */

.service-box li {
    list-style: none;
    position: relative;

    color: #edf3f9;

    background:
        linear-gradient(
            135deg,
            #182331,
            #0d141e
        );

    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid var(--gold);

    border-radius: 10px;
    padding: 11px 10px 11px 36px;

    box-shadow:
        inset 0 1px rgba(255,255,255,0.03);
}

.service-box li::before {
    content: "★";
    position: absolute;
    left: 12px;
    color: var(--gold);
}

/* Price Box */

.service-box b {
    display: block;
    color: #050505;

    background:
        linear-gradient(
            135deg,
            #ffd34d,
            #f7b500,
            #d58200
        );

    border-radius: 10px;
    padding: 11px;
    text-align: center;
    font-weight: 1000;

    box-shadow:
        0 10px 22px rgba(247,181,0,0.22);
}

/* Booking Form */

.booking form {
    background:
        linear-gradient(
            155deg,
            #111a26,
            #05080d
        );

    border: 1px solid rgba(247,181,0,0.22);
    box-shadow: 0 25px 65px rgba(0,0,0,0.55);
}

/* Mobile Size */

@media (max-width: 600px) {

    .shop-name {
        font-size: 3.3rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .hero {
        min-height: 75vh;
    }
}
/* ===== CARD GAP FIX + MOBILE ===== */

.service-list{
    align-items:start !important;
}

.service-box{
    height:auto !important;
    min-height:0 !important;
    align-self:start !important;
}

.service-box ul{
    margin-bottom:0 !important;
}

.service-box li:last-child{
    margin-bottom:0 !important;
}

@media (max-width:768px){

.service-list{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.service-box{
    width:100%;
}

}/* ===== WHITE + SKY BLUE THEME ===== */

body{
    background:#F7FBFF !important;
    color:#1E293B;
}

section{
    background:#F7FBFF;
}

.service-box{
    background:#FFFFFF;
    border:1px solid #D6EAF8;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.service-box h3{
    color:#0F172A;
}

.service-box li{
    color:#334155;
}

header{
    background:#EAF6FF;
    border-bottom:1px solid #CFE8FF;
}

footer{
    background:#EAF6FF;
}/* ==================================================
   PRIME COOL TINT — SAFE PREMIUM DESIGN UPDATE
   CSS ONLY — BOOKING / HTML / JAVASCRIPT UNCHANGED
================================================== */

/* ---------- Website Background ---------- */

body{
    background:
        linear-gradient(
            180deg,
            #eef8ff 0%,
            #f8fbff 32%,
            #eef5fb 100%
        ) !important;
    color:#172033;
}

/* ---------- Main Sections ---------- */

section{
    background:transparent !important;
}

.services,
.catalog,
.packages{
    padding-top:45px;
    padding-bottom:55px;
}

/* ---------- Catalog Grid ---------- */

.service-list{
    align-items:start !important;
    gap:22px !important;
}

/* ---------- Catalog Card ---------- */

.service-box{
    height:auto !important;
    min-height:0 !important;
    align-self:start !important;

    background:
        linear-gradient(
            155deg,
            #ffffff 0%,
            #f8fcff 58%,
            #eaf5ff 100%
        ) !important;

    border:1px solid #d5e7f5 !important;
    border-radius:22px !important;
    padding:14px !important;

    box-shadow:
        0 12px 30px rgba(25,72,110,.12),
        inset 0 1px 0 rgba(255,255,255,.95);

    overflow:hidden;
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.service-box:hover{
    transform:translateY(-6px);
    border-color:#8bcdf0 !important;

    box-shadow:
        0 20px 45px rgba(25,72,110,.18),
        0 0 0 1px rgba(14,165,233,.06);
}

/* ---------- Catalog Image ---------- */

.service-box img{
    width:100%;
    height:auto !important;
    max-height:none !important;
    object-fit:contain !important;
    display:block;

    background:#ffffff;
    padding:6px;
    border-radius:16px;

    box-shadow:
        0 8px 20px rgba(20,70,110,.10);
}

/* ---------- Package Title ---------- */

.service-box h3{
    color:#0f2740 !important;
    font-size:clamp(1.25rem, 1.7vw, 1.75rem) !important;
    line-height:1.25;
    font-weight:900 !important;
    margin:17px 4px 8px !important;
}

/* ---------- Price ---------- */

.service-box b,
.service-box .price{
    display:block;
    width:100%;
    margin:10px 0 14px !important;
    padding:11px 12px;

    background:
        linear-gradient(
            135deg,
            #ffcf4a,
            #f7b500,
            #e18a00
        ) !important;

    color:#101010 !important;
    text-align:center;
    font-size:1.15rem;
    font-weight:900;
    border-radius:11px;

    box-shadow:
        0 7px 16px rgba(247,181,0,.24);
}

/* ---------- Feature List ---------- */

.service-box ul{
    margin:0 !important;
    padding:0 !important;
    display:grid;
    gap:8px;
}

.service-box li{
    position:relative;
    list-style:none !important;

    margin:0 !important;
    padding:11px 10px 11px 38px !important;

    background:
        linear-gradient(
            135deg,
            #eef7ff,
            #e4f2fc
        ) !important;

    color:#17324a !important;
    border:1px solid #cfe4f2;
    border-left:4px solid #12a8e8;
    border-radius:10px;

    font-size:15px !important;
    line-height:1.45;
    font-weight:700 !important;
}

.service-box li::before{
    content:"✓";
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);

    width:18px;
    height:18px;
    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    background:#0ea5e9;
    border-radius:50%;
    font-size:12px;
    font-weight:900;
}

/* ---------- Remove Empty Bottom Space ---------- */

.service-box ul:last-child,
.service-box p:last-child,
.service-box li:last-child{
    margin-bottom:0 !important;
}

.service-box > *:last-child{
    margin-bottom:0 !important;
}

/* ---------- Booking Buttons ---------- */

.service-box button,
.service-box .book-btn,
.service-box a.book-btn{
    width:100%;
    min-height:46px;
    margin-top:15px;
    padding:12px 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #129ed8,
            #087eb9
        ) !important;

    color:#ffffff !important;
    border:none !important;
    border-radius:12px !important;

    text-decoration:none !important;
    font-size:16px;
    font-weight:800;

    box-shadow:
        0 8px 18px rgba(8,126,185,.25);

    cursor:pointer;
    transition:.25s;
}

.service-box button:hover,
.service-box .book-btn:hover{
    transform:translateY(-2px);
    background:
        linear-gradient(
            135deg,
            #19afea,
            #086fa3
        ) !important;
}

/* ---------- Forms: Design Only ---------- */

form{
    border-radius:20px;
}

input,
select,
textarea{
    border:1px solid #c9ddea !important;
    border-radius:10px !important;
    background:#ffffff !important;
    color:#172033 !important;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#0ea5e9 !important;
    box-shadow:0 0 0 3px rgba(14,165,233,.13);
}

/* ---------- Footer ---------- */

footer{
    background:#0c2238 !important;
    color:#eaf6ff !important;
    border-top:1px solid rgba(255,255,255,.08);
}

/* ---------- Mobile View ---------- */

@media (max-width:768px){

    .service-list{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;

        padding-left:14px;
        padding-right:14px;
    }

    .service-box{
        width:100% !important;
        height:auto !important;
        min-height:0 !important;
        margin:0 !important;
        border-radius:19px !important;
        padding:12px !important;
    }

    .service-box img{
        width:100%;
        height:auto !important;
        border-radius:14px;
    }

    .service-box h3{
        font-size:1.45rem !important;
    }

    .service-box li{
        font-size:15px !important;
    }
}/* ==================================================
   PRIME COOL TINT — SMART CATALOG + TRUST SECTION
================================================== */

/* Desktop catalog: remove large uneven vertical gaps */

.service-list{
    display:block !important;
    column-count:5;
    column-gap:18px;
}

.service-box{
    display:inline-block !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    margin:0 0 18px !important;
    vertical-align:top;
    break-inside:avoid;
    -webkit-column-break-inside:avoid;
    page-break-inside:avoid;
}

/* Why Choose Us Section */

.trust-section{
    width:min(1180px, 94%);
    margin:55px auto;
    padding:45px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f4faff 55%,
            #e8f5ff 100%
        ) !important;

    border:1px solid #d5e8f5;
    border-radius:28px;

    box-shadow:
        0 22px 60px rgba(24,77,114,.14);

    color:#15283b;
}

.trust-heading{
    max-width:760px;
    margin:0 auto 36px;
    text-align:center;
}

.trust-heading > span{
    display:inline-block;
    margin-bottom:10px;
    padding:7px 14px;

    background:#dff3ff;
    color:#087ab4;

    border-radius:50px;
    font-size:13px;
    font-weight:900;
    letter-spacing:1.5px;
}

.trust-heading h2{
    margin:0 0 12px;
    color:#0d2338;
    font-size:clamp(2rem, 4vw, 3.4rem);
    line-height:1.1;
    font-weight:1000;
}

.trust-heading p{
    margin:0;
    color:#53697c;
    font-size:17px;
    line-height:1.75;
}

/* Qualification Cards */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.trust-item{
    padding:24px 20px;
    text-align:center;

    background:#ffffff;
    border:1px solid #dcebf5;
    border-radius:20px;

    box-shadow:
        0 10px 28px rgba(24,77,114,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.trust-item:hover{
    transform:translateY(-5px);
    box-shadow:
        0 18px 38px rgba(24,77,114,.14);
}

.trust-icon{
    width:62px;
    height:62px;
    margin:0 auto 15px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #16abe8,
            #0879b4
        );

    color:#ffffff;
    border-radius:18px;

    font-size:20px;
    font-weight:1000;

    box-shadow:
        0 10px 22px rgba(8,121,180,.22);
}

.trust-item h3{
    margin:0 0 8px;
    color:#112a40;
    font-size:19px;
    font-weight:900;
}

.trust-item p{
    margin:0;
    color:#607487;
    font-size:14px;
    line-height:1.6;
}

/* Social Media Area */

.social-area{
    margin-top:38px;
    padding:30px;

    background:#0e273e;
    border-radius:23px;
    text-align:center;
}

.social-area h3{
    margin:0 0 20px;
    color:#ffffff;
    font-size:24px;
}

.social-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:13px;
}

.social-btn{
    min-width:145px;
    padding:12px 18px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    color:#ffffff !important;
    text-decoration:none !important;
    border-radius:12px;

    font-size:15px;
    font-weight:900;

    transition:
        transform .22s ease,
        filter .22s ease;
}

.social-btn span{
    width:27px;
    height:27px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.18);
    border-radius:50%;

    font-size:16px;
    font-weight:1000;
}

.social-btn:hover{
    transform:translateY(-3px);
    filter:brightness(1.08);
}

.facebook{
    background:#1877f2;
}

.tiktok{
    background:#111111;
}

.youtube{
    background:#ff0000;
}

.whatsapp{
    background:#19b85a;
}

/* Bottom Call To Action */

.trust-cta{
    margin-top:22px;
    padding:24px 27px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    background:
        linear-gradient(
            135deg,
            #ffd34f,
            #f7b500,
            #e49300
        );

    border-radius:20px;
    color:#101010;

    box-shadow:
        0 14px 30px rgba(247,181,0,.22);
}

.trust-cta small{
    display:block;
    margin-bottom:5px;
    font-weight:900;
    letter-spacing:1px;
}

.trust-cta h3{
    margin:0;
    color:#101010;
    font-size:25px;
    font-weight:1000;
}

.trust-book-btn{
    flex-shrink:0;
    padding:14px 23px;

    background:#0d263d;
    color:#ffffff !important;

    border-radius:12px;
    text-decoration:none !important;
    font-weight:900;

    transition:.25s;
}

.trust-book-btn:hover{
    transform:translateY(-3px);
    background:#071827;
}

/* Tablet */

@media(max-width:1000px){

    .service-list{
        column-count:3;
    }

    .trust-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */

@media(max-width:768px){

    .service-list{
        display:block !important;
        column-count:1 !important;
        padding-left:14px;
        padding-right:14px;
    }

    .service-box{
        width:100% !important;
        margin-bottom:20px !important;
    }

    .trust-section{
        width:calc(100% - 28px);
        margin:35px 14px;
        padding:25px 15px;
        border-radius:22px;
    }

    .trust-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .social-area{
        padding:25px 13px;
    }

    .social-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .social-btn{
        min-width:0;
        width:100%;
    }

    .trust-cta{
        flex-direction:column;
        text-align:center;
        padding:24px 17px;
    }

    .trust-book-btn{
        width:100%;
        text-align:center;
    }
}

/* Very small mobile */

@media(max-width:420px){

    .social-buttons{
        grid-template-columns:1fr;
    }
}