* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #fdfaf4;
    color: #1a1f2e;
}

/* Subtle cool paper texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Hero */
.hero-bg {
    background:
        radial-gradient(ellipse 100% 70% at 70% 30%, rgba(201, 162, 39, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 15% 80%, rgba(201, 162, 39, 0.07) 0%, transparent 50%),
        linear-gradient(160deg, #fdfaf4 0%, #f8f3e8 60%, #f3ecd8 100%);
}

.hero-bg .max-w-7xl{
width:100%;}
/* Gold text gradient */
.gold-gradient {
    background: linear-gradient(135deg, #8e6f08, #3b76f6, #d4a820);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards */
.card-light {
    background: #ffffff;
    border: 1px solid #ede8dc;
    box-shadow: 0 2px 16px rgba(26, 31, 46, 0.06);
}

.card-hover {
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), box-shadow 0.4s ease, border-color 0.3s;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.16), 0 4px 20px rgba(26, 31, 46, 0.08);
    border-color: rgba(201, 162, 39, 0.4);
}

/* Section underline decoration */
.section-line::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #3b76f6, #054dc1, blue);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Nav */
.nav-link {
    color: #3d4a60;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #3b76f6;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b76f6, #3b76f6db);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    opacity: 0.92;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(51, 122, 198, 0.35);
}

.btn-outline {
    border: 1.5px solid#3b76f6;
    color: #084ce0;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: #3b76f610;
    color: white;
}

/* Sections */
.bg-section-alt {
    background: linear-gradient(180deg, #4c7ec5 0%, #6491cf 50%, #4180da 100%);
}

.bg-section-white {
    background: #ffffff;
}

/* Package image placeholder */
.pkg-img {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Badge */
.badge {
    background: linear-gradient(135deg, rgba(146, 172, 199, 0.35), rgba(196, 203, 211, 0.35));
    border: 1px solid rgba(51, 122, 198, 0.35);
    color: #2153c0;
    font-weight: 500;
}

/* Blog card */
.blog-card {
    position: relative;
    overflow: hidden;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.25), transparent);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s cubic-bezier(.2, .8, .2, 1) both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.22s;
}

.delay-3 {
    animation-delay: 0.38s;
}

.delay-4 {
    animation-delay: 0.54s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f8f3e8;
}

::-webkit-scrollbar-thumb {
    background: #3b76f6;
    border-radius: 4px;
}

/* Quote block */
.quote-card {
    background: white;
    border: 1px solid #e8d8a0;
}

/* Feature icon bg */
.icon-bg {
    background: rgba(201, 162, 39, 0.10);
}

/* Social icon bg */
.social-icon-bg {
    background: #f5eedf;
    border: 1px solid #e4d5b8;
}

.social-icon-bg:hover {
    background: #faefd0;
    border-color: #3b76f6;
}

.footer-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
}

footer .tab-button.active {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

footer .section-title {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.footer-gradient .content-panel {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.branch-city-inter {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.flag-icon {
    width: 28px;
    height: 21px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}





.contact .region-title {
    font-size: 30px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 2rem 0 2rem;
    text-align: center;
    position: relative;
}

.contact .region-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #ec4899, #3b82f6);
    border-radius: 3px;
}

.contact .branch-title {
    font-size: 35px;
    font-weight: 700;
    color: black;

    text-align: center;
    position: relative;
}



.branch-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    /* vertical layout */
    height: 100%;
}

.branch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Push contact section to bottom */
.branch-contact {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.contact .branch-city {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
    letter-spacing: 1.4px;
    line-height: 1.3;


}

/* Location icon */
.contact .branch-city::before {
    font-family: "bootstrap-icons";
    content: "\f3e8";
    /* location icon */
    margin-right: 8px;
    font-size: 18px;
    color: #1e40af;
}

/* Address layout */
.contact .branch-address {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #555;
}


.contact .branch-phone {
    color: #4b5563d1;
    font-weight: bold;
    font-size: 13px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #cbd5e1;
}

@media (max-width: 768px) {
    .contact .region-title {
        font-size: 26px;
    }

    .contact .branch-city {
        font-size: 16px;
        font-weight: 700;
        color: #1e40af;
        margin-bottom: 12px;
        letter-spacing: 0.8px;
        line-height: 1.3;
    }

    .contact .branch-address {
        color: #4b5563;
        line-height: 1.5;
        font-size: 13px;
    }

}