﻿:root {
    /* Ana Lacivert / Dark Alanlar - rgb(15 23 42) */
    --tmc-navy: rgb(15, 23, 42);
    --tmc-navy-hover: rgb(25, 35, 55);
    /* Ana Sarı / Gold Alanlar - rgb(212 175 55) */
    --tmc-gold: rgb(212, 175, 55);
    --tmc-gold-2: rgba(212, 175, 55, 0.85);
    --tmc-gold-dark: rgb(184, 150, 45); /* Hover için bir tık koyusu */
    /* Kırık beyaz / Açık gri arkaplanlar */
    --tmc-cream: #f8fafc;
    /* Metin renkleri */
    --tmc-text: rgb(15, 23, 42);
    --tmc-muted: #64748b;
    --tmc-border: #e2e8f0;
    --tmc-white-soft: rgba(255,255,255,0.9);
    --tmc-white-muted: rgba(255,255,255,0.65);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--tmc-text);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: all .22s ease;
}

main {
    padding-top: 92px;
}

/* =========================
   NAVBAR
   ========================= */

#navbar.tmc-premium-navbar,
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-inner {
    max-width: 1280px;
    height: 92px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-texts {
    position: relative;
    top: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.brand-owner {
    display: block;
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: var(--tmc-gold-2);
    line-height: 1;
}


.brand-main {
    font-family: var(--serif);
    font-size: 2.15rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    color: #fff;
}

.brand-divider {
    font-family: var(--serif);
    font-size: 1.95rem;
    line-height: 1;
    color: var(--tmc-gold);
}

.brand-sub {
    display: block;
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--tmc-gold-2);
    line-height: 1;
}

/* Desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links > li {
        position: relative;
    }

        .nav-links > li > a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            color: rgba(255,255,255,.86);
            text-decoration: none;
            font-size: .98rem;
            font-weight: 600;
            border-radius: 10px;
            transition: all .22s ease;
        }

            .nav-links > li > a:hover,
            .nav-links > li > a.active,
            .nav-dropdown:hover > .nav-dropdown-toggle,
            .nav-dropdown.open > .nav-dropdown-toggle {
                color: #fff;
                background: rgba(255,255,255,.06);
            }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

    .nav-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 18px;
        background: transparent;
    }

.nav-dropdown-toggle {
    position: relative;
    z-index: 20;
}

.dropdown-caret {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-caret,
.nav-dropdown:focus-within .dropdown-caret,
.nav-dropdown.open .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    padding: 12px 0;
    background: var(--tmc-navy);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 9999;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    line-height: 1.35;
    transition: all .18s ease;
}

    .dropdown-panel a:hover {
        background: rgba(212, 175, 55, 0.12);
        color: var(--tmc-gold);
        padding-left: 22px;
    }

.dropdown-divider {
    height: 1px;
    margin: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
}

/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language Selection (Premium Pill Design) */
.lang-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .lang-btn:hover {
        color: #ffffff;
    }

    .lang-btn.current {
        background: var(--tmc-gold);
        color: var(--tmc-navy) !important;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    }

/* WhatsApp icon */
.tmc-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: #22c55e;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .tmc-whatsapp:hover {
        color: #4ade80;
        transform: scale(1.1);
    }

/* CTA button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 8px;
    background: var(--tmc-gold);
    color: #fff;
    text-decoration: none;
    font-size: .96rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

    .nav-cta:hover {
        background: var(--tmc-gold-dark);
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: 0;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all .25s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* Mobile menu */
#mobile-menu {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow-y: auto;
    padding: 28px 24px 40px;
    background: var(--tmc-navy);
}

    #mobile-menu.open {
        display: block;
    }

.mob-link,
.mob-sub a,
.mob-lang a,
.mob-cta {
    text-decoration: none;
}

.mob-link {
    display: block;
    padding: 15px 0;
    color: rgba(255,255,255,.86);
    font-size: 1.08rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mob-sub {
    padding: 8px 0 12px 16px;
}

    .mob-sub a {
        display: block;
        padding: 9px 0;
        color: rgba(255,255,255,.62);
        font-size: .96rem;
    }

.mob-lang {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

    .mob-lang a {
        color: rgba(255,255,255,.72);
        font-weight: 700;
    }

        .mob-lang a.current {
            color: var(--tmc-gold-2);
        }

.mob-cta {
    display: block;
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 8px;
    background: var(--tmc-gold);
    color: #fff;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .mob-cta:hover {
        background: var(--tmc-gold-dark);
    }

/* =========================
   SHARED COMPONENTS
   ========================= */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--tmc-gold);
}

    .section-eyebrow::before {
        content: "";
        display: block;
        width: 24px;
        height: 1px;
        background: var(--tmc-gold);
    }

.section-eyebrow-center {
    justify-content: center;
}

.section-eyebrow-light {
    color: rgba(212, 175, 55, 0.88);
}

.section-title {
    position: relative;
    margin: 0 0 1.5rem;
    padding-bottom: 0.8rem; /* Çizgi ile metin arasındaki boşluk */
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Biraz daha iri ve görkemli */
    font-weight: 700; /* Kalın ve tok bir görünüm */
    line-height: 1.2;
    color: var(--tmc-navy);
}

    /* Otomatik Altın Çizgi */
    .section-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px; /* Çizginin uzunluğu */
        height: 3px; /* Çizginin kalınlığı */
        background: var(--tmc-gold);
        border-radius: 2px;
    }

    /* Başlık ortalandığında altın çizgiyi de ortala */
    .text-center .section-title::after,
    .section-title-center::after,
    .section-title.text-center::after {
        left: 50%;
        transform: translateX(-50%);
    }

.section-title-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Artık manuel gold-line kullanmana gerek kalmadı ama eskileri bozmamak için gizleyebiliriz */
.gold-line {
    display: none;
}

.section-lead {
    max-width: 580px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--tmc-muted);
}


    .gold-line.center {
        margin-left: auto;
        margin-right: auto;
    }

.btn-primary-tmc {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .82rem 1.7rem;
    border: 0;
    border-radius: 8px;
    background: var(--tmc-gold);
    color: #ffffff !important;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

    .btn-primary-tmc:hover {
        background: var(--tmc-gold-dark);
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    }

.btn-outline-tmc {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border: 1.5px solid var(--tmc-border);
    border-radius: 8px;
    background: transparent;
    color: var(--tmc-text);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

    .btn-outline-tmc:hover {
        color: var(--tmc-text);
        border-color: var(--tmc-text);
    }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border: 1.5px solid rgba(255,255,255,.24);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,.88);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

    .btn-outline-light:hover {
        color: #fff;
        border-color: rgba(255,255,255,.55);
    }

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1.5rem;
    border: 0;
    border-radius: 8px;
    background: #166534;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .btn-wa:hover {
        background: #14532d;
        color: #fff;
    }

/* =========================
   MODERN TAILWIND CARDS
   ========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tmc-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--tmc-navy);
    border-left: none;
    border-right: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

    .tmc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        border-top-color: var(--tmc-gold);
    }

    .tmc-card .card-icon {
        color: var(--tmc-gold);
        margin-bottom: 1rem;
        display: inline-flex;
        align-items: center;
    }

        .tmc-card .card-icon i,
        .tmc-card .card-icon svg {
            font-size: 2.25rem;
            width: 36px !important;
            height: 36px !important;
        }

    .tmc-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--tmc-navy);
        margin: 0 0 0.75rem;
    }

    .tmc-card p {
        color: var(--tmc-muted);
        font-size: 0.875rem;
        line-height: 1.6;
        margin: 0;
        flex-grow: 1;
    }

    .tmc-card .card-link {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        margin-top: 1.25rem;
        color: var(--tmc-gold-dark);
        font-size: .85rem;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .tmc-card .card-link:hover {
            color: var(--tmc-gold);
        }

/* =========================
   HOME HERO
   ========================= */
.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100svh;
    background: var(--tmc-navy);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    top: -110px;
    right: -120px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
    padding: .42rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 24px;
    color: var(--tmc-gold-2);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .hero-tag::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--tmc-gold);
    }

.hero-h1 {
    margin-bottom: 1.5rem;
    font-family: var(--serif);
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
}

    .hero-h1 em {
        font-style: normal;
        color: var(--tmc-gold-2);
    }

.hero-sub {
    max-width: 560px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,.67);
    font-size: 1.03rem;
    line-height: 1.9;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3.4rem;
    padding-top: 2.4rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
}

.hero-meta-num {
    font-family: var(--serif);
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.hero-meta-label {
    margin-top: .24rem;
    color: rgba(255,255,255,.45);
    font-size: .76rem;
    letter-spacing: .5px;
}

.hero-card {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.hero-card-title {
    margin-bottom: 1.2rem;
    color: var(--tmc-gold-2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .78rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .hero-card-item:last-child {
        border-bottom: 0;
    }

.hero-card-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tmc-gold);
}

.hero-card-text {
    color: rgba(255,255,255,.72);
    font-size: .89rem;
}

.hero-card-bottom {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.hero-card-bottom-inner {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.hero-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.22);
}

.hero-status-text {
    color: rgba(255,255,255,.55);
    font-size: .82rem;
}

/* =========================
   HOME SECTIONS
   ========================= */
.stats-bar {
    background: var(--tmc-cream);
    border-bottom: 1px solid rgba(20,32,51,.06);
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(20,32,51,.06);
}

    .stat-item:last-child {
        border-right: 0;
    }

.stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--tmc-text);
}

.stat-label {
    margin-top: .3rem;
    color: var(--tmc-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.home-services-section {
    padding: 6rem 0;
}

.why-section {
    padding: 5rem 0;
    background: var(--tmc-cream);
}

.why-item {
    display: flex;
    gap: 1.1rem;
    padding: 1.5rem;
    border: 1px solid rgba(20,32,51,.07);
    border-radius: 12px;
    background: rgba(255,255,255,.55);
    transition: all .22s ease;
}

    .why-item:hover {
        border-color: rgba(212, 175, 55, 0.34);
        background: rgba(212, 175, 55, 0.03);
    }

.why-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.10);
}

    .why-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--tmc-gold);
        fill: none;
    }

.why-text h4 {
    margin: 0 0 .35rem;
    color: var(--tmc-text);
    font-size: .98rem;
    font-weight: 700;
}

.why-text p {
    margin: 0;
    color: var(--tmc-muted);
    font-size: .88rem;
    line-height: 1.7;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: var(--tmc-navy);
}

    .cta-section::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--tmc-gold), transparent);
    }

.cta-title {
    max-width: 620px;
    margin: .5rem auto 1rem;
    font-family: var(--serif);
    font-size: clamp(1.95rem, 4vw, 3.1rem);
    font-weight: 600;
    color: #fff;
}

.cta-text {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,.60);
    font-size: .96rem;
    line-height: 1.9;
}

/* =========================
   FOOTER
   ========================= */
.site-footer,
.site-footer.premium-footer {
    position: relative;
    margin-top: 80px;
    padding-top: 0;
    background: var(--tmc-navy);
    color: rgba(255,255,255,.78);
}

.footer-top-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.55) 50%, transparent 100%);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 28px 0;
}

.footer-brand-block {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-brand-name {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #fff;
}

.footer-brand-sep {
    font-family: var(--serif);
    font-size: 1.9rem;
    color: var(--tmc-gold);
    line-height: 1;
}

.footer-brand-legal {
    font-family: var(--sans);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--tmc-gold-2);
}

.footer-desc {
    max-width: 360px;
    margin: 0 0 22px;
    color: var(--tmc-white-muted);
    font-size: .98rem;
    line-height: 1.9;
}

.footer-wa-wrap {
    margin-top: 1.5rem;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: #25D366;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .footer-wa-btn:hover {
        background: rgba(37,211,102,.08);
        color: #38e27c;
    }

.footer-col h6 {
    margin-bottom: 18px;
    color: var(--tmc-gold-2);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.72);
    font-size: .96rem;
    text-decoration: none;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    line-height: 1.7;
}

    .footer-contact-item i,
    .footer-contact-item svg {
        width: 16px;
        min-width: 16px;
        margin-top: 4px;
        color: var(--tmc-gold);
        stroke: var(--tmc-gold);
        fill: none;
    }

    .footer-contact-item a {
        color: rgba(255,255,255,.72);
        text-decoration: none;
    }

        .footer-contact-item a:hover {
            color: #fff;
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.46);
    font-size: .86rem;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1199px) {
    .nav-links a {
        padding: 10px 12px;
        font-size: .95rem;
    }

    .brand-main {
        font-size: 1.95rem;
    }

    .brand-sub {
        font-size: .8rem;
        letter-spacing: .20em;
    }
}

@media (max-width: 991px) {
    .nav-links,
    .lang-group,
    .tmc-whatsapp,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        height: 84px;
    }

    main {
        padding-top: 84px;
    }

    #mobile-menu {
        top: 84px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 4.25rem 0 3.25rem;
    }
}

@media (max-width: 767px) {
    .nav-inner,
    .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand-main {
        font-size: 1.7rem;
    }

    .brand-sub {
        display: none;
    }

    .hero-h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-meta {
        gap: 1.25rem;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(20,32,51,.06);
    }

        .stat-item:last-child {
            border-bottom: 0;
        }

    .footer-brand-name {
        font-size: 1.7rem;
    }

    .footer-brand-legal {
        font-size: .74rem;
        letter-spacing: .16em;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner > .row > div {
        margin-bottom: 2.25rem;
    }

    .about-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-image-box:hover .about-img {
        transform: scale(1.03);
    }

    .about-img {
        transition: transform 0.4s ease;
    }
}


