﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Montserrat:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400&display=swap');

:root {
    /* --- Base Variables (Default: Dark Mode) --- */

    /* Colors */
    --primary-color: #C5A059;
    /* Default Gold */
    --primary-light: #E5C579;
    --primary-dark: #8A6E30;

    /* Backgrounds */
    --bg-body: #050505;
    --bg-surface: #111111;
    --bg-surface-hover: #161616;
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Text */
    --text-main: #ffffff;
    --text-secondary: #aaaaaa;
    --text-muted: #6c757d;

    /* Borders */
    --border-color: #222222;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);

    /* Gradients - Using primary logo color */
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, color-mix(in srgb, #C5A059, white 20%) 50%, #C5A059 100%);
    --overlay-gradient: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08), transparent 40%);
}

/* --- LIGHT MODE OVERRIDES --- */
[data-theme="light"] {
    --bg-body: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-surface-hover: #e9ecef;
    --bg-glass: rgba(0, 0, 0, 0.03);

    --text-main: #1a1a1a;
    --text-secondary: #495057;
    --text-muted: #868e96;

    --border-color: #e9ecef;
    --border-glass: 1px solid rgba(0, 0, 0, 0.05);

    --overlay-gradient: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15), transparent 40%);
}


html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Layout Helpers */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn,
.hero-subtitle,
.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar-custom {
    background: rgba(var(--bg-body), 0.9) !important;
    /* Needs RGB parsing or fixed val, sticking to glass dark/light specific */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar-custom {
    background: rgba(5, 5, 5, 0.9) !important;
}

[data-theme="light"] .navbar-custom {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Header Logo - Responsive */
.header-logo {
    height: 130px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .header-logo {
        height: 50px;
        max-width: 140px;
    }
}

/* Navbar Toggler (Hamburger Menu) - Theme Aware */
.navbar-toggler {
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.6rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main) !important;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    background-color: var(--bg-body);
}

.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: var(--overlay-gradient);
}

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 20px;
    border-radius: 0;
    background: rgba(197, 160, 89, 0.05);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    border-left: 2px solid var(--primary-color);
    padding-left: 25px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    padding: 16px 40px;
    border-radius: 0;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-gold:hover {
    color: #000;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.2);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 1px solid var(--text-secondary);
    /* Dynamic border */
    color: var(--text-main);
    /* Dynamic text */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

/* Feature Cards */
.feature-card {
    background: var(--bg-glass);
    border: var(--border-glass);
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .feature-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--bg-surface-hover);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Feature Card Link & Logo */
.feature-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.feature-logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.4s ease;
}

[data-theme="light"] .feature-logo-wrapper {
    background: rgba(0, 0, 0, 0.02);
}

.feature-logo-wrapper img {
    max-height: 100%;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-logo-wrapper img {
    transform: scale(1.1);
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.feature-card:hover .visit-link {
    gap: 0.75rem;
}

/* Footer */
footer,
.premium-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 100;
}

.footer-heading {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #000;
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-form .form-control-custom {
    border-radius: 0;
    border-right: none;
}

.newsletter-form .btn-gold {
    padding: 15px 20px;
    border-radius: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
}

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

/* Text Primary for icons */
.text-primary {
    color: var(--primary-color) !important;
}

/* Chat Glow */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

#chat-open-btn {
    animation: pulse-gold 3s infinite;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section {
        padding: 80px 0;
    }
}

/* --- SECTOR SPECIFIC --- */

/* Construction Project Card */
.project-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.project-card:hover .project-card-overlay {
    transform: translateY(0);
}

.project-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.project-loc {
    color: var(--primary-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Insurance Form */
.quote-form-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-control-custom {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 15px;
    border-radius: 0;
}

.form-control-custom:focus {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--text-main);
    box-shadow: none;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-form-wrapper {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 0;
}

[data-theme="light"] .contact-form-wrapper {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper .form-floating>label {
    color: var(--text-muted);
}

.contact-form-wrapper .form-floating>.form-control-custom {
    background: var(--bg-surface);
    border-radius: 0;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

[data-theme="light"] .contact-info-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #000;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h5 {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--primary-color);
}

/* ============================================
   CHAT WIDGET
============================================ */
#chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(197, 160, 89, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-gold 3s infinite;
}

#chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(197, 160, 89, 0.5);
}

#chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    height: 500px;
    max-height: calc(100vh - 150px);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9998;
}

#chat-modal.show {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    padding: 1rem 1.25rem;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h6 {
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
}

.chat-header .btn-close {
    filter: invert(1);
    opacity: 0.6;
}

[data-theme="light"] .chat-header .btn-close {
    filter: none;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot {
    align-self: flex-start;
    background: var(--bg-glass);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--gold-gradient);
    color: #000;
    border-bottom-right-radius: 4px;
}

.chat-input-wrapper {
    padding: 1rem;
    background: var(--bg-glass);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input-wrapper input {
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    outline: none;
}

.chat-input-wrapper input:focus {
    border-color: var(--primary-color);
}

.chat-input-wrapper button {
    background: var(--gold-gradient);
    border: none;
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input-wrapper button:hover {
    transform: scale(1.05);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   PREMIUM ANIMATIONS
============================================ */
.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: var(--gold-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #C5A059 !important;
    /* Fallback */
}

[data-theme="light"] .gradient-text {
    background: var(--gold-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #8A6E30 !important;
    /* Fallback for light mode */
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Mobile Chat Widget */
@media (max-width: 768px) {
    #chat-modal {
        right: 15px;
        bottom: 90px;
        width: calc(100vw - 30px);
        height: 60vh;
    }

    #chat-widget {
        bottom: 20px;
        right: 20px;
    }
}

/* Stat Cards */
.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Service Cards (Garage) */
.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Project Items (Construction) */
.project-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.project-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.project-item h5 {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.project-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Agency Badges (Insurance) */
.agency-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.agency-badge:hover {
    border-color: var(--primary-color);
    background: rgba(197, 160, 89, 0.1);
}

/* Green Energy Card */
.green-energy-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
}

/* Theme-based Logo Switching */
/* Dark theme (default): show dark logos (-koyu.png) */
.logo-light {
    display: none !important;
}

.logo-dark {
    display: block !important;
}

/* Light theme: show light logos (normal .png) */
html[data-theme="light"] .logo-light,
[data-theme="light"] .logo-light {
    display: block !important;
}

html[data-theme="light"] .logo-dark,
[data-theme="light"] .logo-dark {
    display: none !important;
}

/* ============================================
   INSURANCE SITE - UNIQUE STYLES
============================================ */

/* Insurance Color Variables */
:root {
    --insurance-primary: #C5A059;
    --insurance-secondary: #E5C579;
    --insurance-accent: #C5A059;
    --insurance-trust: #28A745;
    --insurance-gradient: linear-gradient(135deg, #C5A059 0%, #E5C579 50%, #C5A059 100%);
    --insurance-gradient-alt: linear-gradient(135deg, #C5A059 0%, #E5C579 50%, #C5A059 100%);
}

/* Insurance Hero Section */
.insurance-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-body);
}

.insurance-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.insurance-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.insurance-hero-badge i {
    font-size: 1.2rem;
}

.insurance-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.gradient-text-insurance {
    background: var(--insurance-gradient-alt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insurance-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2rem;
}

.insurance-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.insurance-hero-stats .stat-item {
    text-align: center;
}

.insurance-hero-stats .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--insurance-gradient-alt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insurance-hero-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.insurance-hero-stats .stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

.insurance-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Insurance Buttons */
.btn-insurance-primary {
    background: var(--insurance-gradient-alt);
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-insurance-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    color: #000;
}

.btn-insurance-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-insurance-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
}

.btn-insurance-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.btn-insurance-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Visual - Floating Cards */
.insurance-hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    background: var(--insurance-gradient-alt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 5%;
    right: 20%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-card.card-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.shield-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--insurance-gradient-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(197, 160, 89, 0.3);
}

.shield-center i {
    font-size: 4rem;
    color: #000;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Trust Bar */
.insurance-trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trust-label {
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.trust-logos {
    flex: 1;
    overflow: hidden;
}

.logo-scroll {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-scroll img {
    height: 30px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-scroll img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partner Logo Links */
.partner-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partner-logo-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo-link img {
    height: 35px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo-link:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile: show colors on touch/tap */
.partner-logo-link:active img,
.partner-logo-link:focus img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile: always show logos in color for better UX */
@media (max-width: 768px) {
    .partner-logo-link img {
        filter: grayscale(50%);
        opacity: 0.85;
    }

    .partner-logo-link:active img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
}

.logo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logo-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Insurance Products Section */
.insurance-products-section {
    padding: 6rem 0;
    background: var(--bg-body);
}

.section-badge-insurance {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards */
.insurance-product-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    min-height: 320px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background wrapper for full coverage */
.insurance-product-card.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Background Image Overlay for Text Readability */
.insurance-product-card.has-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(17, 17, 17, 0.85) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}


[data-theme="light"] .insurance-product-card.has-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.75) 60%, rgba(255, 255, 255, 0.9) 100%);
}

.insurance-product-card.has-bg:hover::after {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.6) 60%, rgba(17, 17, 17, 0.8) 100%);
}

[data-theme="light"] .insurance-product-card.has-bg:hover::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.85) 100%);
}

.insurance-product-card>* {
    position: relative;
    z-index: 2;
}

/* Product Card Background Images - Applied to ::before */
.insurance-product-card.bg-kasko::before {
    background-image: url('/images/insurance/kasko-bg.png');
}

.insurance-product-card.bg-trafik::before {
    background-image: url('/images/insurance/trafik-bg.png');
}

.insurance-product-card.bg-konut::before {
    background-image: url('/images/insurance/konut-bg.png');
}

.insurance-product-card.bg-dask::before {
    background-image: url('/images/insurance/dask-bg.png');
}

.insurance-product-card.bg-saglik::before {
    background-image: url('/images/insurance/saglik-bg.png');
}

.insurance-product-card.bg-isyeri::before {
    background-image: url('/images/insurance/isyeri-bg.png');
}

.insurance-product-card.bg-ferdi::before {
    background-image: url('/images/insurance/ferdi-kaza-bg.png');
}

.insurance-product-card.bg-seyahat::before {
    background-image: url('/images/insurance/seyahat-bg.png');
}

.insurance-product-card.bg-evcil::before {
    background-image: url('/images/insurance/evcil-bg.png');
}

.insurance-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.insurance-product-card .product-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.insurance-product-card .product-icon.dask {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.insurance-product-card .product-icon.health {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.insurance-product-card .product-icon.business {
    background: rgba(30, 58, 95, 0.15);
    color: #1E3A5F;
}

.insurance-product-card .product-icon.travel {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.insurance-product-card .product-icon.pet {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.insurance-product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.insurance-product-card>p {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.product-features li i {
    color: var(--insurance-trust);
    font-size: 0.85rem;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-product:hover {
    gap: 0.75rem;
    color: var(--primary-light);
}

/* Why Us Section */
.insurance-why-us {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.why-us-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--insurance-gradient-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.why-us-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Quote Section */
.insurance-quote-section {
    padding: 6rem 0;
    background: var(--bg-body);
    position: relative;
}

.quote-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.quote-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.quote-card-header i {
    font-size: 2.5rem;
    background: var(--insurance-gradient-alt);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.quote-card-header p {
    color: var(--text-secondary);
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
}

.quote-form {
    padding: 2rem;
}

.quote-form .form-control {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 8px;
}

.quote-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.quote-form .form-floating>label {
    color: var(--text-muted);
}

.quote-card-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-glass);
    border-top: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.trust-badges i {
    color: var(--insurance-trust);
}

/* FAQ Section */
.insurance-faq {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.insurance-accordion .accordion-item {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.insurance-accordion .accordion-button {
    background: var(--bg-body);
    color: var(--text-main);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.insurance-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
}

.insurance-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(70%) sepia(30%) saturate(500%) hue-rotate(10deg);
}

.insurance-accordion .accordion-body {
    background: var(--bg-body);
    color: var(--text-secondary);
    padding: 1.5rem;
    line-height: 1.7;
}

/* Contact Section */
.insurance-contact {
    padding: 6rem 0;
    background: var(--bg-body);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--insurance-gradient-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #000;
    flex-shrink: 0;
}

.contact-info-item .content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.contact-info-item .content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-item .content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .content a:hover {
    color: var(--primary-color);
}

.quick-contact-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .insurance-hero-title {
        font-size: 2.5rem;
    }

    .insurance-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .insurance-hero-stats .stat-divider {
        width: 50px;
        height: 1px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .insurance-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .trust-bar-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .insurance-hero-cta {
        flex-direction: column;
    }

    .quick-contact-btns {
        flex-direction: column;
    }
}

/* Developer Badge Hover Effect */
.developer-badge:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.developer-badge:hover span {
    color: var(--text-secondary) !important;
}

/* Theme-aware KIO logos */
.kio-logo-dark {
    display: inline;
}

.kio-logo-light {
    display: none;
}

[data-theme="light"] .kio-logo-dark {
    display: none;
}

[data-theme="light"] .kio-logo-light {
    display: inline;
}

/* Footer text visibility in dark theme */
.footer-bottom .text-muted {
    color: #999 !important;
}

/* Newsletter security text fix */
.footer .text-muted {
    color: #888 !important;
}


/* =====================================================
   TENANT: CAMLICA GRUP - Elite / Premium
   ===================================================== */
.tenant-grup {
    --bg-body: #09090f;
    --bg-surface: #0e0e18;
    --overlay-gradient: radial-gradient(ellipse at 70% 10%, rgba(197, 160, 89, 0.12), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(197, 160, 89, 0.05), transparent 50%);
}

[data-theme="light"] .tenant-grup {
    --bg-body: #fafaf8;
    --bg-surface: #f2f0ec;
}

/* Grup: Hero - centered, refined, NO extra height */
.tenant-grup .hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, transparent 60%, var(--bg-body) 100%),
        repeating-linear-gradient(90deg, rgba(197, 160, 89, 0.03) 0px, rgba(197, 160, 89, 0.03) 1px, transparent 1px, transparent 120px),
        repeating-linear-gradient(0deg, rgba(197, 160, 89, 0.02) 0px, rgba(197, 160, 89, 0.02) 1px, transparent 1px, transparent 120px);
    pointer-events: none;
    z-index: 0;
}

.tenant-grup .hero-section {
    background: transparent !important;
}

.tenant-grup .hero-section .row {
    justify-content: center !important;
    text-align: center;
}

.tenant-grup .hero-section .col-lg-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tenant-grup .hero-subtitle {
    margin: 0 auto;
    text-align: center;
    border-left: none !important;
    padding-left: 0 !important;
    opacity: 0.6;
    font-weight: 300;
}

.tenant-grup .hero-section .d-flex.gap-3 {
    justify-content: center;
}

.tenant-grup .hero-title {
    font-weight: 200 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tenant-grup .section-badge {
    letter-spacing: 6px;
    font-size: 0.65rem;
    font-weight: 400;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    background: transparent !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    padding: 0.7rem 2rem;
    backdrop-filter: blur(10px);
}

/* Grup: Feature Cards */
.tenant-grup .feature-card {
    background: rgba(197, 160, 89, 0.03) !important;
    border: 1px solid rgba(197, 160, 89, 0.1) !important;
    border-radius: 0 !important;
    padding: 2.5rem 2rem !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.tenant-grup .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.tenant-grup .feature-card:hover::after {
    transform: scaleX(1);
}

.tenant-grup .feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.3) !important;
    box-shadow: 0 30px 80px rgba(197, 160, 89, 0.08);
}

[data-theme="light"] .tenant-grup .feature-card {
    background: #fff !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

.tenant-grup .feature-card h3 {
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    font-size: 1.05rem !important;
    text-transform: uppercase;
}

.tenant-grup .feature-card p {
    font-size: 0.88rem;
    line-height: 1.8;
    opacity: 0.55;
}

/* Grup: Headlines */
.tenant-grup .display-4 {
    font-weight: 200 !important;
}

.tenant-grup .display-4 span {
    font-weight: 500 !important;
}

/* Grup: Buttons - outlined premium */
.tenant-grup .btn-gold {
    border-radius: 0 !important;
    letter-spacing: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    padding: 1rem 2.5rem !important;
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.tenant-grup .btn-gold:hover {
    background: var(--gold-gradient) !important;
    color: #000 !important;
}

/* Grup: Contact & cards */
.tenant-grup .contact-form-wrapper {
    border: 1px solid rgba(197, 160, 89, 0.1) !important;
    border-radius: 0 !important;
    background: rgba(197, 160, 89, 0.02) !important;
}

[data-theme="light"] .tenant-grup .contact-form-wrapper {
    background: #fff !important;
}

.tenant-grup .form-control-custom {
    border-radius: 0 !important;
}

.tenant-grup .contact-card {
    border-radius: 0 !important;
    border: 1px solid rgba(197, 160, 89, 0.08) !important;
}

.tenant-grup .footer {
    border-top: 1px solid rgba(197, 160, 89, 0.1) !important;
}

.tenant-grup .footer-section h5 {
    letter-spacing: 4px !important;
    font-size: 0.7rem !important;
    text-transform: uppercase;
    font-weight: 400 !important;
}

/* =====================================================
   TENANT: CAMLICA GRUP — Aydem-Style Redesign Components
   ===================================================== */

/* --- Full-Screen Hero --- */
.grup-hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-body);
}

.grup-hero-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 30%, rgba(197, 160, 89, 0.15), transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(197, 160, 89, 0.08), transparent 50%),
        linear-gradient(180deg, transparent 70%, var(--bg-body) 100%);
    z-index: 1;
    pointer-events: none;
}

[data-theme="light"] .grup-hero-fullscreen::before {
    background:
        radial-gradient(ellipse at 60% 30%, rgba(197, 160, 89, 0.20), transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(197, 160, 89, 0.10), transparent 50%),
        linear-gradient(180deg, transparent 70%, var(--bg-body) 100%);
}

/* Grid pattern overlay */
.grup-hero-fullscreen::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(197, 160, 89, 0.03) 0px, rgba(197, 160, 89, 0.03) 1px, transparent 1px, transparent 100px),
        repeating-linear-gradient(0deg, rgba(197, 160, 89, 0.02) 0px, rgba(197, 160, 89, 0.02) 1px, transparent 1px, transparent 100px);
    z-index: 1;
    pointer-events: none;
}

.grup-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.grup-hero-tagline {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 0.7rem 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.grup-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.grup-hero-title strong {
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grup-hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    opacity: 0.7;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.scroll-indicator span {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: var(--primary-color);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Floating particles */
.grup-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.grup-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 15s infinite linear;
}

.grup-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.grup-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.grup-particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.grup-particle:nth-child(4) {
    top: 80%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.grup-particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.grup-particle:nth-child(6) {
    top: 70%;
    left: 45%;
    animation-delay: 3s;
    animation-duration: 19s;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    50% {
        transform: translate(80px, -120px) scale(1.5);
        opacity: 0.15;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
}

/* --- Division Cards (Faaliyet Alanları) --- */
.grup-divisions-section {
    padding: 6rem 0;
    background: var(--bg-body);
    position: relative;
}

.grup-section-header {
    margin-bottom: 4rem;
}

.grup-section-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.grup-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
}

.grup-section-title strong {
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grup-division-card {
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(197, 160, 89, 0.1);
    background: var(--bg-surface);
}

.grup-division-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.03), rgba(197, 160, 89, 0.08));
    transition: all 0.5s ease;
    z-index: 0;
}

.grup-division-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
    z-index: 2;
}

.grup-division-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.grup-division-card:hover::before {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.06), rgba(197, 160, 89, 0.15));
}

.grup-division-card:hover::after {
    transform: scaleX(1);
}

[data-theme="light"] .grup-division-card {
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .grup-division-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.grup-division-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.grup-division-card:hover .grup-division-icon {
    transform: scale(1.15);
}

.grup-division-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.grup-division-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.grup-division-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.grup-division-card:hover .grup-division-link {
    gap: 1rem;
}

/* Division card number badge */
.grup-division-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.06;
    line-height: 1;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.grup-division-card:hover .grup-division-number {
    opacity: 0.12;
}

/* --- Stats Bar --- */
.grup-stats-bar {
    padding: 5rem 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    position: relative;
}

.grup-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.grup-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(197, 160, 89, 0.15);
}

.grup-stat-item:last-child::after {
    display: none;
}

.grup-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.grup-stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* --- Blog Section --- */
.grup-blog-section {
    padding: 6rem 0;
    background: var(--bg-body);
}

.grup-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(197, 160, 89, 0.08);
    background: var(--bg-surface);
    transition: all 0.4s ease;
    overflow: hidden;
    text-decoration: none !important;
}

.grup-blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .grup-blog-card {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.grup-blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grup-blog-card:hover .grup-blog-image {
    transform: scale(1.05);
}

.grup-blog-image-wrapper {
    overflow: hidden;
    position: relative;
}

.grup-blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    background: var(--primary-color);
    color: #000;
    z-index: 1;
}

.grup-blog-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.grup-blog-date {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.grup-blog-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.grup-blog-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.6;
    flex: 1;
}

.grup-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.grup-blog-card:hover .grup-blog-read {
    gap: 1rem;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .grup-hero-title {
        font-size: 3.2rem;
        letter-spacing: 1px;
    }

    .grup-division-card {
        height: 300px;
    }

    .grup-section-title {
        font-size: 2.2rem;
    }

    .grup-stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .grup-hero-title {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .grup-hero-desc {
        font-size: 0.95rem;
    }

    .grup-hero-tagline {
        letter-spacing: 4px;
        font-size: 0.6rem;
        padding: 0.5rem 1.5rem;
    }

    .grup-division-card {
        height: 260px;
        padding: 2rem;
    }

    .grup-division-number {
        font-size: 3.5rem;
    }

    .grup-stat-number {
        font-size: 2.5rem;
    }

    .grup-stat-label {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}


/* =====================================================
   TENANT: CAMLICA INSAAT - Clean / Strong
   ===================================================== */
.tenant-insaat {
    --bg-body: #0a0a08;
    --bg-surface: #141410;
}

[data-theme="light"] .tenant-insaat {
    --bg-body: #faf9f6;
    --bg-surface: #f0ede6;
}

/* Insaat: Topbar offset */
.tenant-insaat .navbar-insaat {
    top: 32px !important;
}

/* Insaat: Hero */
.tenant-insaat .hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1;
}

.tenant-insaat .hero-title {
    font-weight: 900 !important;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.tenant-insaat .hero-subtitle {
    border-left: 4px solid var(--primary-color) !important;
    padding-left: 1.2rem !important;
}

.tenant-insaat .section-badge {
    background: var(--primary-color) !important;
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
    font-weight: 900 !important;
    letter-spacing: 3px;
    border: none !important;
    border-radius: 0 !important;
}

/* Insaat: Stats */
.tenant-insaat .stat-card {
    border-radius: 0 !important;
    border: none !important;
    border-left: 4px solid var(--primary-color) !important;
    background: rgba(197, 160, 89, 0.05) !important;
    text-align: left !important;
    padding: 1.5rem !important;
}

[data-theme="light"] .tenant-insaat .stat-card {
    background: #f5f0e5 !important;
}

.tenant-insaat .stat-number {
    font-weight: 900 !important;
    letter-spacing: -1px;
}

.tenant-insaat .stat-label {
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.65rem !important;
}

/* Insaat: Headlines */
.tenant-insaat .display-4 {
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Insaat: Project items */
.tenant-insaat .project-item {
    border-radius: 0 !important;
    border: none !important;
    border-left: 4px solid var(--primary-color) !important;
    background: rgba(197, 160, 89, 0.04) !important;
    padding: 1.5rem 1.5rem 1.5rem 2rem !important;
    transition: all 0.3s ease;
}

.tenant-insaat .project-item:hover {
    transform: translateX(6px);
    background: rgba(197, 160, 89, 0.08) !important;
}

[data-theme="light"] .tenant-insaat .project-item {
    background: #f5f0e5 !important;
}

.tenant-insaat .project-item h5 {
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Insaat: Buttons */
.tenant-insaat .btn-gold {
    border-radius: 0 !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
}

.tenant-insaat .btn-outline-light {
    border-width: 2px !important;
}

/* Insaat: Contact */
.tenant-insaat .contact-form-wrapper {
    border-radius: 0 !important;
    border: none !important;
    border-top: 4px solid var(--primary-color) !important;
}

[data-theme="light"] .tenant-insaat .contact-form-wrapper {
    background: #fff !important;
}

.tenant-insaat .form-control-custom {
    border-radius: 0 !important;
}

.tenant-insaat .contact-card {
    border-radius: 0 !important;
    border: none !important;
    border-left: 3px solid var(--primary-color) !important;
}

.tenant-insaat .footer {
    border-top: 4px solid var(--primary-color) !important;
}

.tenant-insaat .footer-section h5 {
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem !important;
}


/* =====================================================
   TENANT: CAMLICA GARAJ - Rounded / Friendly
   ===================================================== */
.tenant-garaj .service-card {
    border-radius: 16px !important;
}

.tenant-garaj .service-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.tenant-garaj .service-icon {
    border-radius: 14px !important;
}

.tenant-garaj .btn-gold {
    border-radius: 50px !important;
}

.tenant-garaj .stat-card {
    border-radius: 16px !important;
}

.tenant-garaj .contact-form-wrapper {
    border-radius: 20px !important;
}

.tenant-garaj .contact-card {
    border-radius: 14px !important;
}

.tenant-garaj .form-control-custom {
    border-radius: 10px !important;
}

.tenant-garaj .section-badge {
    border-radius: 50px !important;
}

.tenant-garaj .hero-subtitle {
    border-left: none !important;
    padding-left: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .tenant-grup .hero-title {
        font-size: 2.5rem;
    }

    .tenant-insaat .hero-title {
        font-size: 2.2rem;
    }

    .tenant-insaat .navbar-insaat {
        top: 0 !important;
    }

    .tenant-insaat .insaat-topbar {
        display: none !important;
    }
}

/* =====================================================
   INSAAT: Premium Project Card Components
   ===================================================== */
.insaat-project-card {
    background: var(--bg-surface);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.insaat-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.insaat-project-card:hover::before {
    transform: scaleY(1);
}

.insaat-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(197, 160, 89, 0.25);
}

[data-theme="light"] .insaat-project-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .insaat-project-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.insaat-project-featured {
    border-left: 4px solid var(--primary-color);
}

.insaat-project-featured::before {
    display: none;
}

.insaat-project-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: var(--primary-color);
    color: #000;
    margin-bottom: 1.2rem;
}

.insaat-project-body h3,
.insaat-project-body h4 {
    color: var(--text-main);
}

.insaat-project-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.insaat-project-detail i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.insaat-project-detail strong {
    color: var(--text-main);
    margin-right: 4px;
}

.insaat-project-mini {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.insaat-project-mini:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
}

.insaat-project-mini strong {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insaat-project-mini span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

[data-theme="light"] .insaat-project-mini {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
}

.insaat-value-card {
    padding: 2rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    background: var(--bg-surface);
    transition: all 0.3s ease;
    height: 100%;
}

.insaat-value-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .insaat-value-card {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

/* İnşaat hero stat column styling */
.insaat-hero-stats {
    padding-left: 3rem;
    border-left: 1px solid rgba(197, 160, 89, 0.15);
}

/* =====================================================
   İNŞAAT: Turner-Inspired Construction Site Design
   ===================================================== */

/* --- Image Hero --- */
.insaat-hero-fullscreen {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.insaat-hero-overlay-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.insaat-hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 6rem;
}

.insaat-hero-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.insaat-hero-title-v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.insaat-hero-desc-v2 {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 1rem;
}

.insaat-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: all 0.4s;
}

.insaat-hero-cta:hover {
    background: #d4b970;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.35);
    color: #000;
}

.insaat-hero-cta i {
    transition: transform 0.3s;
}

.insaat-hero-cta:hover i {
    transform: translateX(5px);
}

/* --- Value Strip (3 col below hero) --- */
.insaat-value-strip {
    background: #1a1a1a;
    padding: 0;
    border-bottom: 3px solid var(--primary-color);
}

[data-theme="light"] .insaat-value-strip {
    background: #f5f1ec;
    border-bottom-color: var(--primary-color);
}

.insaat-value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.insaat-value-item:hover {
    background: rgba(197, 160, 89, 0.06);
}

[data-theme="light"] .insaat-value-item {
    border-right-color: rgba(0, 0, 0, 0.06);
}

.insaat-value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.insaat-value-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

[data-theme="light"] .insaat-value-item h4 {
    color: #1a1a1a;
}

.insaat-value-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
    line-height: 1.4;
}

[data-theme="light"] .insaat-value-item p {
    color: rgba(0, 0, 0, 0.45);
}

/* --- Section Tags & Headings --- */
.insaat-section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insaat-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0;
}

.insaat-section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 450px;
    margin-bottom: 0;
}

/* --- Image Project Cards --- */
.insaat-projects-v2 {
    padding: 6rem 0;
    background: var(--bg-body);
}

.insaat-project-img-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
}

.insaat-project-img-card-large {
    height: 500px;
}

.insaat-project-img-card:not(.insaat-project-img-card-large):not(.insaat-project-img-card-sm) {
    height: 380px;
}

.insaat-project-img-card-sm {
    height: 280px;
}

.insaat-project-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.insaat-project-img-card:hover .insaat-project-img {
    transform: scale(1.08);
}

.insaat-project-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 1;
    transition: background 0.4s;
}

.insaat-project-img-card:hover .insaat-project-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.insaat-project-badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.insaat-project-img-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.insaat-project-img-card-sm .insaat-project-img-overlay h3 {
    font-size: 1.1rem;
}

.insaat-project-img-card-sm .insaat-project-img-overlay {
    padding: 1.5rem;
}

.insaat-project-img-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.insaat-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.insaat-project-meta span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.insaat-project-meta i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

/* --- Why Us / Image + Text Split --- */
.insaat-why-section {
    padding: 6rem 0;
    background: var(--bg-surface);
}

[data-theme="light"] .insaat-why-section {
    background: #faf9f7;
}

.insaat-why-image {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.insaat-why-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 6px;
    background: var(--primary-color);
}

.insaat-why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.insaat-why-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: flex-start;
}

[data-theme="dark"] .insaat-why-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.insaat-why-item:last-child {
    border-bottom: none;
}

.insaat-why-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 40px;
    line-height: 1;
    padding-top: 2px;
}

.insaat-why-item:hover .insaat-why-num {
    opacity: 0.7;
}

.insaat-why-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.insaat-why-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.7;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .insaat-hero-title-v2 {
        font-size: 3.2rem;
    }

    .insaat-section-heading {
        font-size: 2.2rem;
    }

    .insaat-project-img-card-large {
        height: 350px;
    }

    .insaat-why-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .insaat-hero-title-v2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .insaat-hero-desc-v2 {
        font-size: 0.95rem;
    }

    .insaat-hero-label {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .insaat-value-item {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .insaat-project-img-card-large {
        height: 280px;
    }

    .insaat-project-img-card:not(.insaat-project-img-card-large):not(.insaat-project-img-card-sm) {
        height: 260px;
    }

    .insaat-project-img-card-sm {
        height: 200px;
    }

    .insaat-project-img-overlay {
        padding: 1.2rem;
    }

    .insaat-project-img-overlay h3 {
        font-size: 1.1rem;
    }

    .insaat-project-img-overlay p {
        display: none;
    }

    .insaat-why-image {
        height: 250px;
    }

    .insaat-why-item {
        gap: 1rem;
    }

    .insaat-section-heading {
        font-size: 1.8rem;
    }
}

/* --- İnşaat Transparent Overlay Navbar --- */
.navbar-insaat-overlay {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 1.2rem 0 !important;
    transition: all 0.4s ease;
    z-index: 1030;
}

.navbar-insaat-overlay.scrolled {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 0 !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2) !important;
}

.navbar-insaat-overlay .nav-link {
    color: #fff !important;
    transition: color 0.3s, opacity 0.3s;
    opacity: 0.85;
}

.navbar-insaat-overlay .nav-link:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

.navbar-insaat-overlay .navbar-brand {
    -webkit-text-fill-color: unset !important;
    background: none !important;
}

/* --- İnşaat Gradient Backgrounds (no external images) --- */
.insaat-hero-grad {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #533483 100%) !important;
}

.insaat-hero-grad::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.02) 60px, rgba(255, 255, 255, 0.02) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.02) 60px, rgba(255, 255, 255, 0.02) 61px);
    z-index: 0;
}

.insaat-grad-1 {
    background: linear-gradient(135deg, #2c3e50, #3498db) !important;
}

.insaat-grad-2 {
    background: linear-gradient(135deg, #0f3460, #16213e) !important;
}

.insaat-grad-3 {
    background: linear-gradient(135deg, #1a1a2e, #e2725b) !important;
}

.insaat-grad-4 {
    background: linear-gradient(135deg, #2d3436, #636e72) !important;
}

.insaat-grad-5 {
    background: linear-gradient(135deg, #3d3d3d, #c5a059) !important;
}

.insaat-grad-6 {
    background: linear-gradient(135deg, #2c3e50, #27ae60) !important;
}

.insaat-grad-7 {
    background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
}

.insaat-grad-8 {
    background: linear-gradient(135deg, #434343, #000000) !important;
}

.insaat-grad-why {
    background: linear-gradient(135deg, #0f3460, #c5a059 80%) !important;
}

.insaat-grad-why::after {
    background: var(--primary-color) !important;
}

/* =====================================================
   GRUP PRESTIGE REDESIGN (Feb 2026)
   ===================================================== */

/* Typography */
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Animations */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Hero Section */
.grup-hero-prestige {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
}

/* Light Theme Override for Hero */
[data-theme="light"] .grup-hero-prestige .grup-prestige-title,
[data-theme="light"] .grup-hero-prestige .lead {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    /* Keep text readable over image */
}

.grup-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Use a dramatic architectural shot */
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2670&auto=format&fit=crop');
    animation: kenBurns 20s ease-out infinite alternate;
    z-index: 0;
}

.grup-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.grup-hero-content-prestige {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.grup-prestige-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.grup-prestige-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    display: block;
}

/* About / Vision Section */
.grup-about-prestige {
    padding: 8rem 0;
    background: #080808;
    color: #fff;
}

[data-theme="light"] .grup-about-prestige {
    background: #ffffff;
}

[data-theme="light"] .grup-about-prestige h2 {
    color: #111 !important;
}

[data-theme="light"] .about-prestige-text {
    color: #444;
}

[data-theme="light"] .stat-min-number {
    color: var(--primary-color);
}

[data-theme="light"] .stat-min-label {
    color: #666;
}

.about-prestige-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 300;
}

.about-stat-minimal {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.stat-min-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.stat-min-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Wide Cards (Subsidiaries) */
.grup-wide-card-section {
    padding: 0;
    background: #050505;
}

.grup-wide-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 500px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    text-decoration: none !important;
    transition: background 0.3s;
}

[data-theme="light"] .grup-wide-card {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.grup-wide-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.grup-wide-image {
    flex: 1 1 50%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.grup-wide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.grup-wide-card:hover .grup-wide-bg {
    transform: scale(1.05);
}

.grup-wide-content {
    flex: 1 1 50%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.wide-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wide-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .wide-card-title {
    color: #111;
}

.wide-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

[data-theme="light"] .wide-card-desc {
    color: #555;
}

.wide-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

[data-theme="light"] .wide-card-link {
    color: #111;
}

.grup-wide-card:hover .wide-card-link {
    gap: 15px;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .grup-prestige-title {
        font-size: 3.5rem;
    }

    .grup-wide-card {
        flex-direction: column;
    }

    .grup-wide-content {
        padding: 3rem;
    }

    .grup-wide-image {
        min-height: 300px;
    }
}

/* ============================================
   ULTRA-PREMIUM GARAGE THEME (Çamlıca Garaj)
   ============================================ */

/* Tenant Specific Variables */
.tenant-garaj {
    --garage-gold: #E5C07B;
    /* Elegant Gold */
    --garage-gold-glow: #F4C430;
    /* Brighter for neon effects */
    --garage-black: #050505;
    /* Deep Space Black */
    --garage-surface: rgba(20, 20, 20, 0.6);
    /* Glass surface */
    --garage-border: rgba(229, 192, 123, 0.2);
    --garage-text-main: #FFFFFF;
    --garage-text-muted: #B0B0B0;

    --bg-body: var(--garage-black);
    --bg-surface: var(--garage-black);
    --text-main: var(--garage-text-main);
    --primary-color: var(--garage-gold);

    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
    --neon-shadow: 0 0 10px rgba(229, 192, 123, 0.3), 0 0 20px rgba(229, 192, 123, 0.1);
}

.tenant-garaj body {
    background-color: var(--garage-black);
    font-family: 'Inter', sans-serif;
    /* Clean modern body */
}

/* Glassmorphism Utilities */
.garage-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar Transparent to Glass */
.tenant-garaj .navbar-custom {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.tenant-garaj .navbar-custom.scrolled {
    background: rgba(5, 5, 5, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--garage-gold);
}

.tenant-garaj .footer-brand span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
    /* Tech/Futuristic */
}

/* Cinematic Hero with Video */
.garage-ultra-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -85px;
}

.garage-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
}

.garage-ultra-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #050505 100%);
    z-index: 1;
}

.garage-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 180px;
}

.hero-subtitle-ultra {
    font-family: 'Orbitron', sans-serif;
    color: var(--garage-gold);
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(229, 192, 123, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-title-ultra {
    font-family: 'Orbitron', sans-serif;
    font-size: 5.5rem;
    /* Massive */
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff 20%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(229, 192, 123, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(229, 192, 123, 0.5);
    }

    100% {
        box-shadow: 0 0 5px rgba(229, 192, 123, 0.2);
    }
}

/* Ultra Buttons */
.btn-ultra-gold {
    background: transparent;
    color: var(--garage-gold);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 50px;
    border: 1px solid var(--garage-gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 0 15px rgba(229, 192, 123, 0.1);
}

.btn-ultra-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-ultra-gold:hover::before {
    left: 0;
}

.btn-ultra-gold:hover {
    color: #000;
    box-shadow: 0 0 30px rgba(229, 192, 123, 0.6);
    border-color: transparent;
}

/* Services (Glass Cards) */
.ultra-section {
    padding: 150px 0;
    background: #050505;
    position: relative;
}

.ultra-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 50px 30px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.ultra-card:hover {
    transform: translateY(-15px);
    border-color: var(--garage-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.card-icon-ultra {
    font-size: 3rem;
    color: var(--garage-text-muted);
    margin-bottom: 30px;
    transition: all 0.5s;
    filter: drop-shadow(0 0 0 transparent);
}

.ultra-card:hover .card-icon-ultra {
    color: var(--garage-gold);
    filter: drop-shadow(0 0 10px rgba(229, 192, 123, 0.8));
    transform: scale(1.1);
}

.card-title-ultra {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-desc-ultra {
    color: #999;
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats (Minimal) */
.stat-number-ultra {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

/* Form (Glass) */
.ultra-form-container {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px;
    position: relative;
}

.ultra-form-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, var(--garage-gold), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.form-control-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px;
    font-family: 'Inter', sans-serif;
}

.form-control-ultra:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--garage-gold);
    box-shadow: 0 0 15px rgba(229, 192, 123, 0.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-ultra {
        font-size: 3rem;
    }

    .ultra-form-container {
        padding: 30px;
    }
}