/* =========================================================
   BASE
========================================================= */

:root {
    --green:#0b4ea2;
    --green-dark:#06265a;
    --gold:#39a7ff;
    --gold-light:#cfeeff;
    --cream:#eef6ff;
    --text:#10213f;
    --muted:#61708a;
    --white:#fff;
    --shadow:0 18px 45px rgba(6,38,90,.18);

    /* Bootstrap compatibility */
    --bs-primary:#1565a9;
    --bs-primary-rgb:21,101,169;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
    color:var(--text);
    background:linear-gradient(
        180deg,
        #e9f4ff 0%,
        #f6fbff 45%,
        #eaf4ff 100%
    );
    line-height:1.6;
}

a {
    text-decoration:none;
    color:inherit;
}

img {
    max-width:100%;
    height:auto;
}

.container {
    width:min(1160px,calc(100% - 40px));
    margin-inline:auto;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    line-height:1.15;
    margin:0;
}

h1 {
    max-width:720px;
    font-family:Inter,'Playfair Display',serif;
    font-size:clamp(46px,7vw,86px);
    letter-spacing:-.03em;
    font-weight: 600;
}

h2 {
    font-family:Inter,'Playfair Display',serif;
    font-size:clamp(34px,4vw,54px);
    color:var(--green-dark);
    font-weight: 600;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    
    height: 78px;           
    display: flex;          
    align-items: center;    

    z-index:50;
    background:rgba(6,38,90,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(207,238,255,.24);
}

.nav-wrap {
    /* height:78px; */
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand {
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.brand-mark {
    display:grid;
    place-items:center;
    width:54px;
    height:54px;
    border:1px solid var(--gold);
    border-radius:50%;
    font-weight:800;
    color:var(--gold);
}

.brand-text {
    font-weight:800;
    letter-spacing:.02em;
}

.desktop-nav {
    display:flex;
    gap:34px;
    color:rgba(255,255,255,.85);
    font-weight:600;
}

.desktop-nav a:hover {
    color:var(--gold-light);
}

.nav-actions {
    display:flex;
    align-items:center;
    gap:12px;
}

.menu-btn {
    display:none;
    border:0;
    background:transparent;
    color:#fff;
    font-size:26px;
}

.mobile-menu {
    display:none;
    background:var(--green-dark);
    padding:0 20px 18px;
}

.mobile-menu a {
    display:block;
    color:#fff;
    padding:12px 0;
    border-top:1px solid rgba(255,255,255,.12);
}

/* =========================================================
   LANGUAGE SWITCH
========================================================= */


.lang-btn {
    border: 0;
    background: #f0f0f0;
    color: #333;

    padding: 12px 28px;
    font-size: 16px; 
    font-weight: 800;

    cursor: pointer;
    transition: all 0.25s ease;

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

    min-width: 60px;  
    border-radius: 999px; 

    position: relative;
    user-select: none;
}

.lang-btn:hover {
    background: #4f66b3;
    color: #ffffff;
    transform: translateY(-1px);
}

.lang-btn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}



/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    font-weight:800;
    letter-spacing:.04em;
    transition:.25s;
}

.btn.small {
    padding:10px 16px;
    font-size:13px;
}

.btn-gold {
    background: linear-gradient(
        135deg,
        #0d5ea8,
        #1877d3
    );

    color: #ffffff;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 12px 30px rgba(13,94,168,.35);
}

.btn-gold:hover {
    background: linear-gradient(
        135deg,
        #094d8d,
        #1268ba
    );

    transform: translateY(-2px);
}


/* VIEW SERVICES */
.btn-outline {
    background: rgba(6,38,90,.72);
    border: 1px solid rgba(255,255,255,.55);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.btn-outline:hover {
    background: rgba(6,38,90,.92);
    color: #ffffff;
}

/* =========================================================
   HERO
========================================================= */

.hero,
.hero-image,
.hero-banner,
.main-visual,
header.hero {
    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    overflow:hidden;

    /* Phoenix Gold style */
    border-bottom-left-radius:220px;
    height:360px;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(6,38,90,.45),
            rgba(11,78,162,.18)
        ),
        url('../bg.jpg')
        center / cover no-repeat;

    transform: scale(1.03);
}

.hero-overlay {
    position:absolute;
    inset:auto 0 0 0;
    height:38%;
    background:linear-gradient(
        to top,
        var(--cream),
        transparent
    );
}

.hero-content {
    position:relative;
    z-index:1;
    padding-top:80px;
    color:#fff;
}

.hero-lead {
    max-width:620px;
    font-size:20px;
    color:rgba(255,255,255,.9);
    margin:22px 0 32px;
}

.hero-buttons {
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero h1,
.hero-title,
.main-title {
    font-size:clamp(28px,6.8vw,58px);
    line-height:1.15;
}

.hero p,
.hero-subtitle,
.main-subtitle {
    font-size:clamp(15px,4vw,22px);
    line-height:1.6;
}

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

.section-title {
    margin-bottom:34px;
}

.section-title.center {
    text-align:center;
}

.eyebrow {
    margin:0 0 14px;
    color:var(--gold-light);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:13px;
}

.eyebrow.dark {
    color:var(--gold);
}

/* =========================================================
   CONTACT
========================================================= */

.contact {
    position:relative;
    margin-top: 76px;
    z-index:5;
    padding-bottom:80px;
    background:linear-gradient(
        180deg,
        transparent,
        #eaf4ff 28%,
        #f8fbff 100%
    );
}

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

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

.contact-grid-2 {
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:780px;
    margin-inline:auto;
}

.contact-card {
    background:#fff;
    padding:32px 22px;
    border-radius:24px;
    text-align:center;
    box-shadow:var(--shadow);
    border:1px solid rgba(57,167,255,.28);
}

.contact-card h3 {
    font-size:18px;
    color:var(--green-dark);
    margin-bottom:8px;
}

.contact-card p {
    margin:0;
    font-weight:700;
    color:var(--muted);
}

.contact-card a {
    color:var(--green-dark);
    font-weight:800;
    word-break:break-word;
}

.contact-card a:hover {
    color:var(--gold);
}

.icon-circle {
    width:58px;
    height:58px;
    margin:0 auto 18px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(57,167,255,.14);
    color:var(--green);
    font-size:25px;
}

/* =========================================================
   ABOUT
========================================================= */

.about {
    padding:95px 0;
    background:linear-gradient(
        135deg,
        #ffffff,
        #eaf4ff
    );
}

.split {
    display:grid;
    grid-template-columns:.9fr 1.3fr;
    gap:80px;
    align-items:start;
}

.about-copy {
    font-size:18px;
    color:var(--muted);
}

.about-copy p {
    margin-top:0;
}

.highlight {
    color: #1100ff77;
    font-weight: 700;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;

    color: #060074;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;

    transition: all 0.25s ease;
}

.about-link:hover {
    transform: translateX(4px);
    opacity: 0.85;
}

/* =========================================================
   OFFERS
========================================================= */

.offers {
    padding:95px 0;
    background:linear-gradient(
        180deg,
        #eaf4ff,
        #fff
    );
}

#offers-title {
    font-size: 40px !important;
}

.offer-grid {
    display: flex; 
    gap: 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none; 
}

.offer-grid::-webkit-scrollbar {
    display: none;
}

.offer-slider-wrap {
    position: relative;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    background: #1f4b8f;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.slide-btn.left {
    left: -60px;
}

.slide-btn.right {
    right: -60px;
}

.offer-card {
    position:relative;
    min-height:250px;
    background:var(--green);
    color:#fff;
    border-radius:26px;
    padding:30px 24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    flex: 0 0 220px;
}

.offer-card::after {
    content:"";
    position:absolute;
    right:-45px;
    bottom:-45px;
    width:140px;
    height:140px;
    border-radius:50%;
    border:1px solid rgba(207,238,255,.38);
}

.offer-card span {
    color:var(--gold-light);
    font-weight:800;
}

.offer-card h3 {
    font-size:25px;
    margin:48px 0 12px;
    color:#fff;
}

.offer-card p {
    margin:0;
    color:rgba(255,255,255,.78);
}

/* =========================================================
   SOCIAL
========================================================= */

.social-panel {
    margin-top:26px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(57,167,255,.25);
    box-shadow:var(--shadow);
    border-radius:26px;
    padding:24px;
    text-align:center;
}

.social-title {
    margin:0 0 16px;
    color:var(--green-dark);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:13px;
}

.social-links {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.social-links a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:46px;
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(
        135deg,
        var(--green),
        #063b85
    );
    color:#fff;
    font-weight:800;
    border:1px solid rgba(207,238,255,.24);
    transition:.25s;
}

.social-links a:hover {
    transform:translateY(-2px);
    background:var(--green-dark);
    color:var(--gold-light);
}

.social-icon {
    display:inline-grid;
    place-items:center;
    min-width:28px;
    height:28px;
    padding:0 6px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    color:#fff;
    font-size:13px;
    font-weight:900;
    line-height:1;
}

.social-links i,
.social i,
.footer-social i {
    margin-right:8px;
}

/* =========================================================
   MAP
========================================================= */

.map-section {
    padding:95px 0;
    background:linear-gradient(
        180deg,
        #fff,
        #eaf4ff
    );
}

.map-address {
    max-width:820px;
    margin:14px auto 0;
    color:var(--muted);
    font-size:17px;
}

.map-card {
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
    border:1px solid rgba(57,167,255,.28);
    background:#fff;
}

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

.line-icon {
    background: #06c755;
    color: #fff;
}

.line-icon i {
    font-size: 1.4rem;
}

.line-qr {
    width: 120px;
    border-radius: 12px;
    margin-top: 10px;
    background: #fff;
    padding: 6px;
}

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

.contact-form-section {
    padding:70px 24px 90px;
    background:linear-gradient(
        180deg,
        #f7fbff 0%,
        #eef7ff 100%
    );
}

.contact-form-wrap {
    max-width:1160px;
    margin:0 auto;
    background:#ffffff;
    border-radius:28px;
    padding:46px;
    box-shadow:0 18px 45px rgba(21,101,169,0.14);
    border:1px solid rgba(45,143,226,0.16);
}

.contact-form-heading {
    text-align:center;
    margin-bottom:34px;
}

.contact-form-heading span {
    display:inline-block;
    color:#2d8fe2;
    font-weight:700;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:10px;
}

.contact-form-heading h2 {
    color:#135a96;
    font-size:34px;
    margin-bottom:12px;
}

.contact-form-heading p {
    color:#60758c;
    font-size:16px;
}

.contact-form .form-row {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.contact-form .form-group {
    margin-bottom:20px;
}

.contact-form label {
    display:block;
    color:#135a96;
    font-weight:700;
    margin-bottom:8px;
    font-size:14px;
}

.contact-form input,
.contact-form textarea,
.form-control,
.form-select {
    width:100%;
    border:1px solid rgba(21,101,169,0.22);
    background:#f8fbff;
    border-radius:14px;
    padding:15px 16px;
    font-size:16px;
    color:#16395f;
    outline:none;
    transition:.25s ease;
}

.contact-form textarea {
    resize:vertical;
    min-height:150px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-control:focus,
.form-select:focus {
    border-color:#2d8fe2;
    background:#ffffff;
    box-shadow:0 0 0 .25rem rgba(45,143,226,.14);
}

.form-submit,
.btn-primary {
    border:0;
    background:linear-gradient(
        135deg,
        #1565a9,
        #2d8fe2
    );
    color:#ffffff;
    padding:16px 34px;
    border-radius:999px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(21,101,169,0.24);
    transition:.25s ease;
}

.form-submit:hover,
.btn-primary:hover {
    transform:translateY(-2px);
    background:linear-gradient(
        135deg,
        #135a96,
        #1f78c1
    );
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background:linear-gradient(
        135deg,
        #031b44,
        #063b85
    );
    color:#fff;
    padding:54px 0 24px;
}

.footer-grid {
    display:flex;
    justify-content:space-between;
    gap:30px;
    border-bottom:1px solid rgba(255,255,255,.14);
    padding-bottom:34px;
}

.footer-brand {
    font-size:24px;
    font-weight:800;
    color:var(--gold-light);
    margin-bottom:8px;
}

.site-footer p {
    color:rgba(255,255,255,.7);
    margin:0;
}

.footer-links {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px 32px;
}

.footer-links a {
    color:rgba(255,255,255,.8);
}

.footer-links a:hover {
    color:var(--gold-light);
}

.footer-inline-social {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    flex-wrap:wrap;
}

.footer-inline-social a {
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.14);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.25s ease;
}

.footer-inline-social a:hover {
    background:#2d8fe2;
    transform:translateY(-2px);
}

.copyright {
    text-align:center;
    padding-top:24px;
    font-size:14px;
}

/* =========================================================
   HEADER CLEANUP
========================================================= */

header .navbar-toggler,
header .menu-toggle,
header .hamburger,
header .mobile-menu-toggle,
header .navbar-toggler-icon {
    display:none !important;
    visibility:hidden !important;
    width:0 !important;
    height:0 !important;
    padding:0 !important;
    margin:0 !important;
    overflow:hidden !important;
}

header .navbar-collapse:empty,
header nav:empty,
header ul:empty {
    display:none !important;
}

/* CTA remove */

a:has(> .consult-text),
.consult-btn,
.cta-button,
.header-cta,
header .primary-cta,
header .btn-consult,
header a[href*="contact"].btn {
    display:none !important;
}

/* =========================================================
   RESPONSIVE : 992px
========================================================= */

@media (max-width:992px) {

    .hero,
    .hero-image,
    .hero-banner,
    .main-visual,
    header.hero {
        height:320px;
        border-bottom-left-radius:120px;
    }

    .container,
    .section-inner,
    .contact-form-wrap {
        max-width:100%;
    }
}

/* =========================================================
   RESPONSIVE : 980px
========================================================= */

@media (max-width:980px) {

    /* .desktop-nav,
    .nav-actions .btn {
        display:none;
    } */

    .menu-btn {
        display:block;
    }

    .mobile-menu.open {
        display:block;
    }

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

    .contact-grid-3,
    .contact-grid-2 {
        grid-template-columns:1fr;
    }

    .split {
        grid-template-columns:1fr;
        gap:30px;
    }

    .map-card iframe {
        height:380px;
    }
}

/* =========================================================
   RESPONSIVE : 768px
========================================================= */

@media (max-width:768px) {

    body {
        overflow-x:hidden;
    }

    section {
        padding-left:18px;
        padding-right:18px;
    }

    .hero,
    .hero-image,
    .hero-banner,
    .main-visual,
    header.hero {
        height:260px;
        border-bottom-left-radius:85px;
        background-position:center;
    }

    .hero h1,
    .hero-title,
    .main-title {
        font-size:clamp(26px,8vw,38px);
        letter-spacing:.5px;
    }

    .hero p,
    .hero-subtitle,
    .main-subtitle {
        font-size:15px;
    }

    .section-title h2,
    .contact-form-heading h2 {
        font-size:26px;
        line-height:1.3;
    }

    .section-title span,
    .contact-form-heading span {
        font-size:12px;
        letter-spacing:1.5px;
    }

    .slide-btn.left {
        left: -30px;
    }

    .slide-btn.right {
        right: -30px;
    }
    
    .slide-btn {
        border: 1px solid #717171;
        background: #ffffff;
        color: #0b4ea2;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    #offers-title {
        font-size: 34px !important;
    }

    .service-grid,
    .cards,
    .contact-section,
    .contact-grid {
        grid-template-columns:1fr !important;
        gap:18px;
    }

    .service-card,
    .card,
    .contact-card {
        padding:22px;
        border-radius:18px;
    }

    .contact-card h3 {
        font-size:22px;
    }

    .contact-card p {
        font-size:16px;
        word-break:break-word;
    }

    .contact-form-section {
        padding:48px 16px 64px;
    }

    .contact-form-wrap {
        padding:30px 22px;
        border-radius:22px;
    }

    .contact-form .form-row,
    .form-row {
        grid-template-columns:1fr !important;
        gap:0;
    }

    .contact-form-heading h2 {
        font-size:28px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .form-control,
    .form-select {
        padding:13px 14px;
        border-radius:12px;
    }

    .form-submit,
    .btn,
    button[type="submit"] {
        width:100%;
        min-height:48px;
    }

    .map-section iframe,
    .map iframe {
        height:320px;
    }

    .footer-inline-social,
    .footer-social-links,
    .social-links {
        justify-content:center !important;
        gap:12px;
    }

    .footer-inline-social a,
    .footer-social-links a {
        width:40px;
        height:40px;
        font-size:17px;
    }

    /* Header */

    header nav,
    header .navbar-collapse,
    header .nav,
    header .navbar-nav {
        display:none !important;
    }

    header .lang-switcher,
    header .language-switch,
    header .language-buttons {
        display:flex !important;
        margin-left:auto;
        align-items:center;
        gap:6px;
    }

    header .lang-switcher button,
    header .language-switch button,
    header .language-buttons button,
    header .language-buttons a,
    header .lang-btn,
    header .btn-lang,
    header [data-lang],
    header button[onclick*="Lang"],
    header button[onclick*="lang"] {
        padding:13px 18px !important;
        font-size:12px !important;
        line-height:1.2 !important;
        min-height:auto !important;
        border-radius:999px !important;
    }
}

/* =========================================================
   RESPONSIVE : 620px
========================================================= */

@media (max-width:620px) {

    .container {
        width:min(100% - 28px,1160px);
    }

    .nav-wrap {
        height:70px;
    }

    .brand-mark {
        width:46px;
        height:46px;
    }

    .hero {
        min-height:650px;
    }

    .hero-lead {
        font-size:17px;
    }

    .contact-grid,
    .offer-grid {
        grid-template-columns:1fr;
    }

    .footer-grid {
        display:block;
    }

    .footer-links {
        grid-template-columns:1fr;
        margin-top:24px;
    }

    .btn {
        width:100%;
    }

    .hero-buttons {
        align-items:stretch;
    }

    .social-links {
        display:grid;
        grid-template-columns:1fr;
    }

    .social-links a {
        width:100%;
    }

    .map-card iframe {
        height:320px;
    }
}

/* =========================================================
   RESPONSIVE : 480px
========================================================= */

@media (max-width:480px) {

    .hero,
    .hero-image,
    .hero-banner,
    .main-visual,
    header.hero {
        height:230px;
        border-bottom-left-radius:64px;
    }

    .hero h1,
    .hero-title,
    .main-title {
        font-size:25px;
    }

    .hero p,
    .hero-subtitle,
    .main-subtitle {
        font-size:14px;
    }

    .section-title h2,
    .contact-form-heading h2 {
        font-size:23px;
    }

    .service-card,
    .card,
    .contact-card {
        padding:20px;
    }

    .map-section iframe,
    .map iframe {
        height:280px;
    }

    .footer-brand {
        font-size:20px;
    }
}