/* ===============================
   1. ბაზა და ცვლადები
================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(120deg, #d4af37 0%, #ffd86f 65%, #b38b1d 100%);
    --cyan: #1dd4ff;
    --text-main: #f6f6f6;
    --text-muted: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(10, 12, 18, 0.95);
    --transition: all 0.4s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    /* Changed to reveal background slider */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 60px;
}

/* სურათული ჩატვირთვის ოპტიმიზაცია */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* სურათების ოპტიმიზაცია */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ფონტების წინასწარმატება */
@font-face {
    font-family: 'Poppins';
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');
}

@font-face {
    font-family: 'Orbitron';
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');
}

/* კურსორი */
#cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 10, 25, 0.9);
    /* Option 1: Modern Navy Blue Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px;
    /* Increased hit area for mobile */
    z-index: 3000;
    /* Highest priority */
    position: relative;
    transition: 0.3s;
}

.hamburger i {
    color: #ffffff;
    font-size: 1.8rem;
    /* Larger icon */
}

.hamburger:active {
    opacity: 0.7;
    transform: scale(0.9);
}

@media (max-width: 900px) {
    .header-inner {
        padding: 5px 20px;
    }

    .hamburger {
        display: block;
    }

    header nav {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 300px;
        background: #030a19;
        /* Solid fallback */
        background: rgba(3, 10, 25, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: transform 0.4s cubic-bezier(0.1, 0.7, 1.0, 0.1), right 0.4s ease;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8);
        z-index: 2500;
        padding-top: 60px;
    }

    header nav.active {
        right: 0 !important;
    }

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

    nav a {
        font-size: 1.1rem !important;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .lang-menu {
        margin-left: 0;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    /* Mobile Dropdown Refinement */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropbtn {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem !important;
        padding: 15px 0 !important;
        border: none !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    /* Show chevron rotation on open */
    .dropdown.open .dropbtn i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropbtn i.fa-chevron-down {
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown-content {
        position: static !important;
        width: 100% !important;
        min-width: auto !important;
        transform: none !important;
        animation: none !important;
        display: none;
        background: rgba(212, 175, 55, 0.05);
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
        margin-top: 0 !important;
        padding: 5px 0 !important;
        transition: none !important;
    }

    /* Desktop hover must NOT apply on mobile — JS controls open state */
    .dropdown:hover .dropdown-content {
        display: none;
    }

    /* Toggled open via JS */
    .dropdown.open .dropdown-content {
        display: block !important;
    }

    .dropdown-content a {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        text-align: center;
        display: block;
    }

    .dropdown-content a:last-child {
        border-bottom: none !important;
    }
}

.logo {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover,
nav a.active {
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

nav a:hover::after,
nav a.active::after {
    width: 60%;
}

.lang-menu {
    display: flex;
    gap: 6px;
    margin-left: 15px;
    flex-shrink: 0;
}

.lang-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #222222;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
    transition: 0.3s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dropbtn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(29, 212, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.dropdown:hover .dropbtn::after {
    opacity: 1;
    animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.8);
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(5, 10, 20, 0.98);
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 8px;
    animation: dropFadeIn 0.2s ease;
}

@keyframes dropFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(212, 175, 55, 0.4);
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Invisible bridge that fills the gap between button and dropdown so hover isn't lost when crossing it */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===============================
   3. სექციები და ანიმაცია
================================ */
.page-section {
    padding: 60px 20px 20px 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.section-inner {
    background: rgba(10, 12, 18, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Rim Light Effect */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    padding: 60px 40px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    /* Adjusted font size for mobile */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-separator {
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 50px;
    border-radius: 5px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   4. ქარდები და ფორმები
================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.card,
.stat-item {
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.input-field {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.input-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* ===============================
   5. ღილაკები
================================ */
.btn-premium {
    background: var(--gold-gradient);
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--gold-glow);
    filter: brightness(1.1);
}

/* ===============================
   6. სტატისტიკა (About Page)
================================ */
.stat-item h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    /* Adjusted font size for mobile */
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* ===============================
   7. Glass effect
================================ */
@supports (backdrop-filter: blur(10px)) {

    header,
    .card,
    .stat-item {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* ===============================
   8. Mobile (Responsive)
================================ */
@media (max-width: 768px) {
    /* Header conflicts removed to support new Hamburger Menu */


    .dropdown-content {
        min-width: 200px;
        left: 0;
        transform: none;
    }

    .dropdown:hover .dropdown-content {
        animation: fadeInDownMobile 0.3s ease;
    }

    @keyframes fadeInDownMobile {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-title {
        font-size: 1.8rem;
    }

    .card {
        padding: 20px;
        margin: 10px 0;
    }

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

    .motto-display {
        font-size: 1.3rem;
    }
}

/* --- დამატებითი ელემენტები --- */
.fixed-bg-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    /* Adjusted for mobile */
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(1);
}

/* კონტეინერი ორივე ღილაკისთვის */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    /* ღილაკები იქნება ერთმანეთის თავზე */
    gap: 15px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    color: white;
    text-decoration: none;
    font-size: 30px;
    position: relative;
    /* Tooltip-ისთვის */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* --- Tooltip (ტექსტი მაუსის მიტანისას) --- */
.whatsapp-float::after {
    content: attr(data-tooltip);
    /* იღებს ტექსტს HTML-ის data-tooltip-იდან */
    position: absolute;
    right: 75px;
    /* ღილაკის მარცხნივ გამოჩნდება */
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border: 1px solid var(--gold);
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}

/* განსხვავებული ფერი თუ გინდა მეორე ღილაკისთვის (სურვილისამებრ) */
.contact-2 {
    background: #075e54;
}

.about-hero-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-card {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    padding: 40px;
    flex-wrap: wrap;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.map-visual {
    flex: 1 1 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

.about-copy {
    flex: 1 1 320px;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-copy h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.about-copy ul {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.about-copy li {
    margin-bottom: 0.8rem;
}

.about-footer {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

@media (max-width: 1024px) {
    .about-card {
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-shell {
        padding: 80px 15px 60px;
    }

    .about-card {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .map-visual,
    .about-copy {
        width: 100%;
    }
}

.main-logo-big {
    width: 400px;
    /* Adjusted size */
    max-width: 85vw;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.3));
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px) scale(1);
    animation: fadeInSimple 1.5s forwards;
}

.welcome-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    /* Adjusted size */
    color: #fff;
    letter-spacing: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@keyframes fadeInSimple {
    to {
        opacity: 1;
        transform: translateY(0) scale(1.05);
        /* ანიმაციის ბოლოს ოდნავ კიდევ იზრდება */
    }
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.15;
    filter: grayscale(80%) brightness(50%);
}

/* მთავარი გამაერთიანებელი ქარდი */
.contact-glass-card {
    display: flex;
    gap: 50px;
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
}

/* ფორმის და FAQ-ს სიგანეები */
.contact-wrapper,
.faq-container {
    flex: 1;
    width: 100%;
}

@media (max-width: 992px) {

    /* მობილური ვერსიისთვის */
    .contact-glass-card {
        flex-direction: column;
        gap: 40px;
        padding: 25px;
        align-items: center;
        /* ცენტრირება მობილურზე */
    }

    .contact-wrapper,
    .faq-container {
        width: 100%;
        /* ორივე ბლოკმა დაიკავოს სრული სიგანე */
    }
}

/* FAQ-ს კითხვების დახვეწილი სტილი ქარდის შიგნით */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 15px;
}

.faq-question {
    font-size: 1rem;
    /* Adjusted size */
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    /* კითხვა დარჩეს თეთრი */
    background: rgba(255, 255, 255, 0.05);
}

/* პასუხის ბლოკი - გასწორებული ვერსია */
.faq-answer {
    max-height: none;
    opacity: 1;
    overflow: visible;
    padding: 25px 20px;
    background: #050a14;
    /* მუქი ფონი კონტრასტისთვის */
    color: var(--gold) !important;
    /* მკვეთრი ოქროსფერი პასუხისთვის */
    font-size: 1rem;
    /* Adjusted size */
    font-weight: 800;
    line-height: 1.6;
    border-top: 2px solid var(--gold);
    /* გამყოფი ხაზი კითხვასა და პასუხს შორის */
    border-radius: 0 0 10px 10px;
}

/* როცა კითხვას დააჭერ (აქტიური მდგომარეობა) */
.faq-item.active .faq-answer {
    max-height: 1000px;
    /* გაიხსნას ბოლომდე */
    padding: 25px 20px;
    opacity: 1;
    border-top: 2px solid var(--gold);
    /* გამყოფი ხაზი */
}

/* ისრის ფერი */
.faq-item .fa-chevron-down {
    color: var(--gold);
}

/* Partners Section Styling */
.partners-section {
    margin-top: 80px;
    padding: 20px 0;
}

.partners-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logos-slider {
    overflow: hidden;
    padding: 50px 0;
    position: relative;
    width: 100%;
}

/* გვერდებზე რბილი გადასვლის ეფექტი */
.logos-slider::before,
.logos-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 1), transparent);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 10, 1), transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    width: calc(250px * 14);
    /* ლოგოს სიგანე * რაოდენობა */
    animation: scrollLogos 40s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.partner-item {
    width: 200px;
    height: 100px;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
        /* უნდა იყოს ორიგინალი ლოგოების რაოდენობა */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-item {
        width: 150px;
        margin: 0 20px;
    }
}

/* About Page Custom Styles */
.vision-card {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-us-section {
    margin-top: 80px;
}

.sub-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.motto-container {
    text-align: center;
    margin: 80px auto;
    padding: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.motto-text {
    font-style: italic;
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

/* map-box კონტეინერი */
.map-box {
    width: 100%;
    max-width: 1100px;
    height: 500px;
    margin: 40px auto;
    border: 2px solid var(--gold);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* თავად რუკის ელემენტი */
#map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* დამატებითი დაზღვევა */
}

/* სხვა სტილები დოკუმენტისთვის */
.vision-card {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.directions-grid .card h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.why-card {
    text-align: center;
    padding: 20px;
}

.motto-container {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.motto-text {
    font-style: italic;
    color: var(--gold);
}

.location-header {
    margin-top: 80px;
}

.location-title {
    margin-top: 80px;
}

.motto-wrapper {
    text-align: center;
    margin: 100px auto;
    max-width: 1000px;
    padding: 0 20px;
    position: relative;
}

.motto-line {
    height: 1px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.motto-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.motto-text-premium {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    margin: 0;
}

.quote-icon {
    font-size: 5rem;
    color: var(--gold);
    font-family: serif;
    opacity: 0.6;
    line-height: 0;
    display: inline-block;
    padding-top: 30px;
}

/* მობილურისთვის ზომების ოპტიმიზაცია */
@media (max-width: 768px) {
    .motto-text-premium {
        font-size: 1.5rem;
    }

    .quote-icon {
        font-size: 3rem;
    }
}

/* --- .why-card-premium (consolidated) --- */
.why-card-premium {
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.premium-svg {
    width: 100%;
    height: 100%;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawIcon 2s forwards ease-in-out;
}

.why-card-premium p {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.why-card-premium:hover {
    background: rgba(20, 20, 20, 0.9);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.motto-showcase {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.motto-glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-align: center;
}

.motto-inner {
    position: relative;
    z-index: 2;
}

.motto-text-new {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 30px 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.highlight-gold {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
}

.motto-line-top,
.motto-line-bottom {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--gold);
}

/* ფონური ლოგო პანელის შიგნით */
.motto-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .motto-text-new {
        font-size: 1.5rem;
    }

    .motto-glass-panel {
        padding: 40px 20px;
    }
}


@keyframes drawIcon {
    to {
        stroke-dashoffset: 0;
    }
}


.motto-container-premium {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.8), transparent);
    /* შუაში მუქდება კონტრასტისთვის */
    margin: 60px 0;
}

.motto-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    /* უფრო დიდი და შთამბეჭდავი */
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.motto-display {
    font-size: 2rem;
    /* ზომის შემცირება უფრო დახვეწილი იერისთვის */
    font-weight: 300;
    /* უფრო თხილი ფონტი */
    letter-spacing: 2px;
    line-height: 1.4;
    max-width: 800px;
    /* რომ ტექსტი ძალიან არ გაიწელოს სიგანეზე */
    margin: 0 auto;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    /* უკეთესი კითხვადობისთვის */
}

/* მობილურისთვის კიდევ უფრო პატარა უნდა იყოს */
@media (max-width: 768px) {
    .motto-display {
        font-size: 1.5rem;
    }
}

.motto-display .text-gold {
    color: var(--gold);
    font-weight: 800;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ხაზები დევიზის თავში და ბოლოში */
.motto-visual-line {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
    box-shadow: 0 0 15px var(--gold);
}

/* მობილური ოპტიმიზაცია */
@media (max-width: 768px) {
    .page-section {
        padding: 20px;
        /* გვერდითა დაშორებები */
    }

    .motto-display {
        font-size: 1.4rem !important;
        /* ლოზუნგის ზომის დაპატარავება */
        line-height: 1.3;
        padding: 0 10px;
    }

    .card {
        width: 100% !important;
        /* ბარათებმა დაიკავონ მთელი სიგანე */
        margin: 10px 0;
        padding: 15px;
    }

    /* ფონური სურათის გასწორება მობილურზე */
    body {
        background-attachment: scroll;
        /* ტელეფონებზე fixed ხშირად ჭედავს */
        background-position: center top;
    }
}

.divider {
    color: var(--gold);
    margin: 0 15px;
    opacity: 0.7;
}

/* Converters accordion */
.converter-accordion {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.conv-group {
    background: rgba(5, 10, 20, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.conv-header {
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    background: rgba(10, 10, 20, 0.95);
    color: var(--text-main);
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conv-body {
    display: none;
    padding: 20px;
}

.conv-group.active .conv-body {
    display: block;
}

.conv-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.conv-col {
    flex: 1;
}

.conv-body label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.conv-result {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
}

/* Container specification card */
.spec-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.spec-heading {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold);
}

.spec-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.spec-brochure {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.spec-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 2rem;
    color: var(--gold);
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.spec-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.spec-download {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
}

.spec-download:hover {
    color: #fff;
}

/* Wagon specification large table */
.wagon-spec-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
}

.wagon-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-size: 0.8rem;
}

.wagon-spec-table th,
.wagon-spec-table td {
    border: 1px solid #ccc;
    padding: 6px 8px;
    text-align: center;
}

.wagon-spec-table th {
    background: #f2f2f2;
    font-weight: 700;
}

.wagon-spec-table .section-header th {
    background: #e0e0e0;
    text-align: left;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .wagon-spec-wrapper {
        font-size: 0.75rem;
    }
}

/* ===== Company Description Section ===== */
.description-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.description-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.description-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
}

.description-content h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.description-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

.description-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.description-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.description-content li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.company-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 252, 0.98) 100%);
    color: #1f2a44;
    border-radius: 14px;
    border: 1px solid rgba(31, 42, 68, 0.16);
    box-shadow: 0 18px 40px rgba(3, 7, 18, 0.3);
    max-width: 820px;
    width: 88%;
    margin: 0 auto;
    overflow: hidden;
}

.company-card.classic .card-map {
    display: block;
    width: 100%;
}

.card-text {
    padding: 1.8rem 2.1rem 2rem;
}

.card-text h2 {
    color: #152036;
    font-size: 1.55rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.card-text h3 {
    color: #1f2a44;
    font-size: 1rem;
    margin-top: 1.2rem;
}

.card-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #23314f;
}

.card-text ul {
    margin: 0.8rem 0 0 1.2rem;
    padding-left: 0;
    list-style: none;
}

.card-text li {
    margin-bottom: 0.45rem;
    padding-left: 1.3rem;
    position: relative;
}

.card-text li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1f6fe0;
    position: absolute;
    left: 0;
    top: 0.65rem;
}

@media (max-width: 768px) {
    .card-text {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .company-description {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .description-content {
        padding: 1.5rem;
    }

    .description-content h2 {
        font-size: 1.5rem;
    }

    .description-content h3 {
        font-size: 1.2rem;
    }
}

/* ===== Main Slider (logisticssolutions.ge) ===== */
#mainSlider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 5;
}

#mainSlider .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

#mainSlider .item:first-child {
    opacity: 1;
}

#mainSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: none;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.hero-content-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    background: transparent;
    overflow: hidden;
}

.hero-content-section::after {
    content: '';
    position: absolute;
    inset: 12% 20% 35% 20%;
    border-radius: 25% / 35%;
    border: none;
    box-shadow: none;
    animation: none;
    pointer-events: none;
    z-index: 1;
}

.hero-title {
    position: relative;
    z-index: 11;
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: none;
    margin: 0;
    margin-bottom: 80px;
    font-weight: 900;
    text-align: center;
    background: none;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    animation: none;
    transition: transform 0.3s ease;
}

.hero-icons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 11;
    transition: transform 0.3s ease;
    gap: 30px;
}

.hero-icons .row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-icons .row div {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-icons .row div::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-icons .row div:hover::before {
    opacity: 1;
}

.hero-icons .row div:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-color: #fff;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.hero-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 2;
}

.hero-icons i {
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    transition: all 0.4s ease;
}

.hero-icons .row div:hover i {
    color: #fff;
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

/* Main content container */
.main_cont {
    position: relative;
    z-index: 3;
    margin-top: 0;
    min-height: 100vh;
    padding: 3rem 0 5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.8);
}

.about-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.about-content {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    max-width: 1100px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.about-text {
    text-align: justify;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.section-title {
    color: var(--gold);
    font-size: 1.6rem;
    margin: 2.5rem 0 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title.small {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.services-list {
    text-align: justify;
    line-height: 1.6;
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    color: rgba(255, 255, 255, 0.85);
}

.services-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.direction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.direction-card {
    background: rgba(212, 175, 55, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    text-align: center;
    transition: var(--transition);
}

.direction-card h5 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.direction-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.direction-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.why-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.why-title {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.why-desc {
    font-size: 0.9rem;
}

.partner-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.partner-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-pill span {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.partner-pill p {
    font-size: 0.8rem;
    margin: 0;
}

.hero-card {
    margin: 2rem 0;
    text-align: center;
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.hero-card h3 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-card h3 span {
    display: block;
    color: #fff;
}

.hero-card h3 .gold {
    color: var(--gold);
}

.hero-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.8rem;
}

.location-card {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-card .location-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.location-card h5 {
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.location-card p {
    margin: 0.2rem 0;
}

.location-card .muted {
    color: rgba(255, 255, 255, 0.8);
}

.location-card .gold {
    color: var(--gold);
    font-weight: 700;
}

.map-panel {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-panel #map {
    height: 450px;
    border-radius: 10px;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #000000 0%, #0b1120 50%, #000000 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 60px;
}

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

.row.clearfix {
    display: flex;
    gap: 30px;
}

.col-md-8 {
    flex: 2;
}

.col-md-4 {
    flex: 1;
}

.heads {
    color: var(--gold);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.projects article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.projects_img {
    flex: 0 0 150px;
}

.projects_img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.projects_desc {
    flex: 1;
}

.projects_desc h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.projects_half {
    margin-bottom: 8px;
}

.projects_half p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.projects_half span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.projects_half em {
    color: var(--gold);
}

.more_cont {
    text-align: right;
    margin: 20px 0;
}

.more_cont a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    line-height: 1.5;
}

@media (max-width: 768px) {

    #mainSlider,
    .mainSliderOver {
        height: 280px;
    }

    .mainSliderOver h3 {
        font-size: 1.6rem;
    }

    #icons .row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .row.clearfix {
        flex-direction: column;
    }

    .projects article {
        flex-direction: column;
    }

    .projects_img {
        flex: none;
    }
}

.tracking-wrapper {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.tracking-container {
    max-width: 700px;
    margin: 0 auto;
}

.tracking-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tracking-hero h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tracking-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.tracking-search-box {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tracking-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracking-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.tracking-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tracking-btn {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    border: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.tracking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.carrier-section {
    margin-top: 1.5rem;
}

.carrier-title {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carrier-tabs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.carrier-tab {
    padding: 0.8rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.carrier-tab:hover,
.carrier-tab.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tracking-result {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    display: none;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tracking-result.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.result-title {
    color: var(--gold);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-number-display {
    background: rgba(212, 175, 55, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.track-choose-text {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1.5rem;
}

.carrier-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.carrier-link-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carrier-link-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.carrier-link-card span {
    flex: 1;
    font-weight: 600;
}

@media (max-width: 600px) {
    .carrier-links {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   HOMEPAGE HERO WELCOME
================================ */
.hero-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(10, 12, 18, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 150px 20px 80px;
    position: relative;
    z-index: 1;
    gap: 20px;
}

.hero-logo {
    width: 160px;
    max-width: 40vw;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    margin-bottom: 10px;
    animation: heroLogoIn 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4)) !important;
}

.btn-premium {
    overflow: hidden;
    position: relative;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
}

.btn-premium:hover::after {
    left: 150%;
    transition: all 0.6s ease;
}

.hero-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    animation: heroTextIn 1s 0.3s ease-out forwards;
    opacity: 0;
}

.hero-headline .text-gold {
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    animation: heroTextIn 1s 0.5s ease-out forwards;
    opacity: 0;
}

.hero-cta-row {
    display: flex;
    gap: 18px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroTextIn 1s 0.7s ease-out forwards;
    opacity: 0;
}

.hero-cta-row .btn-premium {
    padding: 14px 36px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: heroTextIn 1s 0.9s ease-out forwards;
    opacity: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===============================
   DIRECTION CARDS WITH ICONS
================================ */
.direction-card-icon {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.direction-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.direction-card-icon:hover::before {
    transform: scaleX(1);
}

.dir-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.dir-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
}

.direction-card-icon:hover .dir-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.direction-card-icon:hover .dir-icon i {
    color: #000;
}

.direction-card-icon h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.direction-card-icon p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ===============================
   SITE FOOTER
================================ */
.site-footer {
    position: relative;
    z-index: 2;
    background: rgba(3, 7, 15, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 50px 20px 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    align-self: flex-start;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===============================
   HOMEPAGE RESPONSIVE REFINEMENTS
================================ */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .hero-logo {
        width: 110px;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
    }

    .hero-stat-divider {
        width: 50px;
        height: 1px;
    }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

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

    .direction-card-icon {
        padding: 20px 15px;
    }

    .dir-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .directions-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   HOMEPAGE REDESIGN — visual polish overrides
================================================ */

/* --- Page section base -------------------------*/
.page-section {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 60px 20px;
}

.section-inner {
    background: rgba(10, 12, 18, 0.65);
    /* Dark frosted glass card to protect text from bright backgrounds */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

/* --- Section titles ----------------------------*/
.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 7px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 6px;
}

.partner-item {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Invert black partner logos to white to fix visibility on dark backgrounds */
    filter: invert(1) brightness(2);
    transition: var(--transition);
    opacity: 0.7;
}

.partner-item:hover img {
    transform: scale(1.1);
    opacity: 1;
    filter: invert(1) brightness(1.5) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.sub-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-top: 80px;
    margin-bottom: 6px;
}

.motto-display {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    /* Strong text shadow for visibility if motto isn't wrapped in a card */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 5px rgba(0, 0, 0, 0.8);
}

.gold-separator {
    width: 70px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 0 auto 55px;
}

/* --- Vision card — clean text, no box ----------*/
.vision-card {
    max-width: 820px;
    margin: 0 auto 60px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: center;
    transform: none !important;
}

.vision-card:hover {
    transform: none !important;
}

.vision-card h3 {
    font-size: 1.35rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.vision-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 10px;
}

/* --- Direction cards — 4-column premium grid ---*/
.directions-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px;
    margin-bottom: 80px;
}

.direction-card-icon {
    padding: 36px 22px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.direction-card-icon::before {
    display: none;
}

.direction-card-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.direction-card-icon:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35), 0 0 30px rgba(212, 175, 55, 0.1);
}

.direction-card-icon:hover::after {
    transform: scaleX(1);
}

.dir-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
}

.dir-icon i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: all 0.3s;
}

.direction-card-icon:hover .dir-icon {
    background: rgba(212, 175, 55, 0.16);
    border-color: var(--gold);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
}

.direction-card-icon h4 {
    font-size: 0.82rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    font-weight: 700;
}

.direction-card-icon p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* --- Why us — horizontal 2×2 cards ------------*/
.why-grid-premium {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.why-card-premium {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 22px;
    padding: 26px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    text-align: left;
    transition: all 0.3s ease;
}

.why-card-premium:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.why-card-premium .icon-wrapper {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.why-card-premium .premium-svg {
    width: 52px;
    height: 52px;
}

.why-card-premium p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-weight: 500;
    margin: 0;
}

/* --- Motto — full-width impact strip ----------*/
.motto-container-premium {
    max-width: 100%;
    padding: 70px 40px;
    text-align: center;
    background: rgba(212, 175, 55, 0.04);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    margin: 20px 0 80px;
    border-radius: 0;
    position: relative;
}

.motto-container-premium::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.07);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.motto-visual-line {
    display: none;
}

.motto-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 2;
    text-transform: uppercase;
}

/* --- Partners section -------------------------*/
.partners-section {
    background: transparent;
    padding: 0;
    margin-top: 10px;
}

/* --- About-hero-shell — polished two-col ------*/
.about-hero-shell {
    padding: 40px 30px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-hero-shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.about-hero-shell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.about-card {
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    gap: 50px;
    padding: 50px;
}

.map-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.about-copy p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.about-copy h3 {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 1.5px;
}

.about-copy ul li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    padding-left: 5px;
}

.about-copy ul li::marker {
    color: var(--gold);
}

/* --- Location section -------------------------*/
.location-header {
    margin-top: 0 !important;
}

.map-box {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

#map {
    height: 450px;
    width: 100%;
}

/* --- Responsive overrides ---------------------*/
@media (max-width: 1100px) {
    .directions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .directions-grid {
        grid-template-columns: 1fr !important;
    }

    .why-grid-premium {
        grid-template-columns: 1fr !important;
    }

    .why-card-premium {
        flex-direction: column !important;
        text-align: center;
        gap: 14px;
    }

    .page-section {
        padding: 70px 20px;
    }

    .about-hero-shell {
        padding: 60px 20px;
    }

    .motto-display {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .about-card {
        padding: 28px 20px;
        gap: 30px;
    }
}

/* ================================================
   FINAL PREMIUM POLISH — v3
   Max-width centering, card refinement, typography
================================================ */

/* --- Content inner container ------------------*/
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Page section — more open, slider visible --*/
.page-section {
    padding: 120px 40px;
    background: linear-gradient(180deg,
            rgba(3, 7, 15, 0.28) 0%,
            rgba(4, 10, 22, 0.65) 28%,
            rgba(3, 7, 15, 0.88) 65%,
            rgba(2, 5, 12, 0.97) 100%);
}

/* --- Main title — cinematic scale -------------*/
.main-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 10px;
    padding-bottom: 4px;
}

/* --- Sub-title — breathing room ---------------*/
.sub-title {
    font-size: 1.05rem;
    letter-spacing: 5px;
    margin-top: 90px;
    color: rgba(212, 175, 55, 0.88);
}

/* --- Vision text — centered, readable ---------*/
.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.92);
    text-transform: none;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.68);
    max-width: 740px;
    margin: 0 auto 12px;
}

/* --- Direction cards — top-accent style -------*/
.direction-card-icon {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-top: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 0 0 18px 18px;
    padding: 40px 24px 32px;
}

.direction-card-icon::before {
    display: none !important;
}

.direction-card-icon::after {
    display: none;
}

.direction-card-icon:hover {
    background: rgba(212, 175, 55, 0.06);
    border-top: 2px solid var(--gold);
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.direction-card-icon h4 {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.direction-card-icon p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
}

.dir-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dir-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.direction-card-icon:hover .dir-icon {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* --- Why cards — left-accent style ------------*/
.why-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 3px solid rgba(212, 175, 55, 0.38);
    border-radius: 0 14px 14px 0;
    padding: 26px 30px;
    gap: 20px;
    transition: all 0.3s ease;
}

.why-card-premium:hover {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    transform: translateX(5px);
    box-shadow: none;
}

.why-card-premium p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.why-card-premium .icon-wrapper {
    flex-shrink: 0;
    opacity: 0.9;
}

/* --- Motto — more cinematic -------------------*/
.motto-container-premium {
    padding: 90px 40px;
    margin: 30px 0 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.04) 30%,
            rgba(212, 175, 55, 0.06) 50%,
            rgba(212, 175, 55, 0.04) 70%,
            transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.motto-display {
    font-size: clamp(1rem, 2.2vw, 1.55rem);
    letter-spacing: 4px;
    line-height: 2;
    text-transform: uppercase;
}

/* --- About-hero-shell — lighter ---------------*/
.about-hero-shell {
    padding: 90px 40px;
    background: linear-gradient(180deg,
            rgba(3, 7, 15, 0.72) 0%,
            rgba(4, 10, 22, 0.80) 50%,
            rgba(3, 7, 15, 0.72) 100%);
}

/* --- About card — full glass ------------------*/
.about-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    border-radius: 24px;
    padding: 50px;
    gap: 50px;
}

/* --- Map box ----------------------------------*/
.map-box {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
}

/* --- Partners sub-title spacing ---------------*/
.section-inner .sub-title:first-child {
    margin-top: 50px;
}

/* --- Responsive -----------------------------*/
@media (max-width: 900px) {
    .page-section {
        padding: 90px 24px;
    }

    .about-hero-shell {
        padding: 60px 24px;
    }

    .about-card {
        padding: 32px 24px;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .page-section {
        padding: 70px 18px;
    }

    .motto-container-premium {
        padding: 60px 20px;
    }

    .motto-display {
        font-size: 0.88rem;
        letter-spacing: 2px;
        line-height: 1.8;
    }

    .why-card-premium:hover {
        transform: none;
    }
}

/* --- Site Footer — Redesigned ---------------- */
.site-footer {
    background: rgba(3, 10, 25, 1);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 40px;
    color: #ffffff;
    position: relative;
    z-index: 5;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 0 30px;
}

@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 12px;
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* ======================================================
   SERVICES PAGE — Sub-Navigation & Content
====================================================== */

.services-subnav {
    position: sticky;
    top: 75px;
    z-index: 900;
    background: rgba(3, 10, 25, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.services-subnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.subnav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.subnav-link i {
    font-size: 1rem;
    transition: 0.3s;
}

.subnav-link:hover,
.subnav-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.subnav-link.active i {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

/* Section Header */
.services-section-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.services-icon-wrap {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.08);
}

.services-icon-wrap i {
    font-size: 1.8rem;
    color: var(--gold);
}

/* Intro Text */
.services-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 40px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: 0.35s;
}

.service-item:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    transition: 0.3s;
}

.service-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.service-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-subnav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .services-subnav-inner::-webkit-scrollbar {
        display: none;
    }

    .subnav-link {
        padding: 14px 18px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .services-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* BASARA Offer Layout */
.basara-offer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 10px;
}

.offer-photo-placeholder {
    width: 100%;
    min-height: 380px;
    border-radius: 18px;
    border: 2px dashed rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(212, 175, 55, 0.5);
    font-size: 0.9rem;
    letter-spacing: 1px;
    overflow: hidden;
}

.offer-photo-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.offer-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.offer-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.offer-letter {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.offer-text p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin: 0;
}

.offer-text strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .basara-offer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .offer-photo-placeholder {
        min-height: 220px;
    }
}

/* Offer Photo Card (for real images) */
.offer-photo-card {
    position: relative;
    width: 100%;
    min-height: 380px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.offer-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
    display: block;
    transition: transform 0.6s ease;
}

.offer-photo-card:hover img {
    transform: scale(1.04);
}

.offer-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(to top, rgba(3, 10, 25, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.offer-photo-overlay span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(3, 10, 25, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 7px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    .offer-photo-card {
        min-height: 240px;
    }
}

/* Photo Gallery - 2x2 grid for multiple images */
.offer-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
    min-height: 380px;
}

/* 2-photo side-by-side variant */
.offer-gallery.two-col {
    grid-template-rows: 1fr;
    min-height: 380px;
}

.offer-gallery.two-col .offer-photo-card {
    cursor: pointer;
}


.offer-photo-card.small {
    min-height: 175px;
    border-radius: 12px;
}

.offer-photo-card.small .offer-photo-overlay {
    padding: 10px 12px;
}

.offer-photo-card.small .offer-photo-overlay span {
    font-size: 0.85rem;
    padding: 5px 10px;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .offer-gallery {
        min-height: 280px;
        gap: 8px;
    }

    .offer-photo-card.small {
        min-height: 130px;
    }

    /* Services page mobile improvements */
    .services-section .main-title {
        font-size: 1.4rem !important;
        letter-spacing: 0.05em !important;
        text-align: left;
    }

    .services-section .section-inner {
        padding: 30px 18px;
    }

    .services-section-header {
        gap: 15px;
        margin-bottom: 18px;
    }

    .services-icon-wrap {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 12px;
    }

    .services-icon-wrap i {
        font-size: 1.3rem;
    }

    .offer-item {
        padding: 16px 16px;
        gap: 14px;
    }

    .offer-letter {
        min-width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .offer-text p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .offer-list {
        gap: 14px;
    }

    .gold-separator {
        margin: 12px 0;
    }

    /* Gallery improvements on mobile */
    .offer-gallery {
        min-height: 300px;
        gap: 6px;
    }

    .offer-gallery.two-col {
        min-height: 200px;
    }

    /* Sub-nav improvements */
    .subnav-link span {
        font-size: 0.78rem;
    }

    .subnav-link i {
        font-size: 0.9rem;
    }

    .subnav-link {
        padding: 12px 14px;
        gap: 6px;
    }
}



/* ======================================================
   Services Section 1 — Logo Display
====================================================== */
.offer-logo-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 380px;
    padding: 40px 30px;
    border-radius: 18px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    position: relative;
    overflow: hidden;
}

.offer-logo-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.05), transparent 65%);
    pointer-events: none;
}

.offer-logo-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 0 8px rgba(212, 175, 55, 0.04),
        0 0 0 16px rgba(212, 175, 55, 0.02),
        0 0 40px rgba(212, 175, 55, 0.15);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.04), 0 0 0 16px rgba(212, 175, 55, 0.02), 0 0 30px rgba(212, 175, 55, 0.12);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.08), 0 0 0 22px rgba(212, 175, 55, 0.04), 0 0 55px rgba(212, 175, 55, 0.25);
    }
}

.offer-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
}

.offer-logo-tagline {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-style: italic;
}

.offer-logo-tagline span {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.offer-logo-since {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: rgba(212, 175, 55, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.04);
}

@media (max-width: 768px) {
    .offer-logo-display {
        min-height: 260px;
        padding: 30px 20px;
    }

    .offer-logo-ring {
        width: 150px;
        height: 150px;
    }

    .offer-logo-img {
        width: 100px;
        height: 100px;
    }
}

/* ======================================================
   Lightbox
====================================================== */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

#lightbox.active {
    display: flex;
}

#lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15), 0 20px 60px rgba(0, 0, 0, 0.8);
    display: block;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(3, 10, 25, 0.85);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10000;
}

#lightbox-close:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: scale(1.1);
}

.offer-photo-card.small {
    cursor: pointer;
}

.offer-photo-card.small:hover .offer-photo-overlay span {
    background: rgba(212, 175, 55, 0.25);
}

/* ===========================
   Services Overview Grid
   =========================== */
.services-overview-section {
    padding: 60px 0 80px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.svc-overview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px 32px;
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.svc-overview-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.1);
    background: rgba(15, 28, 55, 0.8);
}

.svc-overview-card:hover::before {
    opacity: 1;
}

.svc-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.svc-card-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.svc-overview-card:hover .svc-card-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.svc-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.svc-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.svc-card-cta {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.svc-overview-card:hover .svc-card-cta {
    gap: 10px;
}

@media (max-width: 900px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-overview-card {
        padding: 28px 20px 24px;
    }
}