/* Design System Rules from DESIGN.md */
:root {
    --primary: #1a352a;
    --primary-container: #e8f5e1;
    --secondary: #d4af37;
    --secondary-container: #fff9c4;
    --tertiary: #2e7d32;
    --tertiary-container: #e8f5e9;
    --error: #b71c1c;
    --error-container: #ff99bb;
    --surface: #ffffff;
    --surface-variant: #f1f5f9;
    --on-surface: #0f172a;
    --on-surface-variant: #64748b;
    --outline: #cbd5e1;
    --outline-variant: #e2e8f0;
    --header-bg: rgba(255, 255, 255, 0.95);
}

/* Elite Nav Dropdown */
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 11px;
    font-weight: 800;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    background: var(--primary-container);
    color: var(--primary);
    transform: translateX(5px);
}

/* Global Utility Classes for Green Identity */
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-container { background-color: var(--primary-container) !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    overflow-x: hidden;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* --- Premium Header & Nav Styles --- */

.glass-nav {
    background-color: var(--header-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 77, 61, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
    background-color: rgba(252, 252, 251, 0.95);
    box-shadow: 0 20px 40px -20px rgba(0, 77, 61, 0.15);
    border-bottom-color: rgba(0, 77, 61, 0.1);
}

.header-scrolled .top-bar {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.header-scrolled .main-nav {
    height: 60px;
}

/* Navigasyon Linkleri */
.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--on-surface);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 0;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    opacity: 0.85;
}

.nav-link:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 100%;
}

/* Dropdown */
.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px -12px rgba(0, 77, 61, 0.15);
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 77, 61, 0.08);
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(15px) scale(0.95);
    transform-origin: top;
    z-index: 60;
}

.dropdown-group:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: var(--on-surface);
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* Premium Input Fields for Search Hub (Luxury Underline Style) */
.search-field-modern {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(26, 53, 42, 0.05);
    border-radius: 0;
    padding: 0.75rem 0.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
}

.search-field-modern:hover {
    border-bottom-color: rgba(26, 53, 42, 0.2);
}

.search-field-modern:focus {
    background: rgba(26, 53, 42, 0.02);
    border-bottom: 2px solid var(--primary);
    box-shadow: none;
    outline: none;
}

.search-field-modern::placeholder {
    color: rgba(26, 53, 42, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-field-modern:focus::placeholder {
    transform: translateX(10px);
    opacity: 0;
}

/* Social Icons */
.social-icon-header {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon-header:hover {
    background: var(--secondary);
    transform: translateY(-3px) rotate(8deg);
}

/* --- Hero & Search HUB Custom Premium Styles --- */

.hero-overlay {
    background: linear-gradient(180deg, rgba(0, 45, 35, 0.5) 0%, rgba(0, 45, 35, 0.2) 50%, rgba(0, 45, 35, 0.7) 100%);
}

.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave-divider svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.hero-wave-divider .shape-fill {
    fill: var(--surface);
}

.search-hub-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 53, 42, 0.08);
    box-shadow: 0 40px 100px -20px rgba(26, 53, 42, 0.15);
    transition: all 0.5s ease;
    z-index: 20;
}

.search-tab {
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.search-tab.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
}

.floating-badge {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.stat-pill {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 53, 42, 0.1);
    box-shadow: 0 15px 30px rgba(26, 53, 42, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    backface-visibility: hidden;
    transform: perspective(1000px) translate3d(0,0,0);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    animation: floating-pill 6s ease-in-out infinite;
}

@keyframes floating-pill {
    0%, 100% { transform: perspective(1000px) translate3d(0, 0, 0) rotate(0.1deg); }
    50% { transform: perspective(1000px) translate3d(0, -15px, 0) rotate(-0.1deg); }
}

.hero-title-glitch {
    position: relative;
    text-shadow: 0 10px 30px rgba(26, 53, 42, 0.2);
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary), #234a3b);
    box-shadow: 0 15px 35px -10px rgba(26, 53, 42, 0.3);
}

/* --- Top Bar & Announcement Styles --- */
.top-bar {
    background: linear-gradient(to right, #1a352a, #234a3b, #1a352a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffd700;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.announcement-text-slider {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.announcement-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-text 25s linear infinite;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes marquee-text {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.social-icon-header {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon-header:hover {
    background: var(--secondary);
    transform: translateY(-2px) rotate(8deg);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-icon-header img {
    filter: brightness(0) invert(1);
    width: 12px;
    height: 12px;
}


.hero-btn-primary:hover {
    box-shadow: 0 20px 45px -12px rgba(26, 53, 42, 0.4);
    transform: translateY(-3px);
}

/* Custom Grid for Search Hub */
/* --- Custom Smart Search Dropdown Styles --- */

#city-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.city-item {
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.city-item:hover {
    background: rgba(26, 53, 42, 0.05);
    color: var(--secondary);
    padding-left: 1.5rem;
}

.city-item span {
    font-size: 1.1rem;
    opacity: 0.3;
}

/* Custom Thin Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 77, 61, 0.1);
    border-radius: 10px;
}

/* --- Ultra-Premium Hero Interactive Styles --- */

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.booking-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 53, 42, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(26, 53, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transform: translateY(200%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.booking-toast.active {
    transform: translateY(0);
}

.booking-toast .icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-chip {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 176, 57, 0.2);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-chip:hover {
    background: #d4b039;
    border-color: #d4b039;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 176, 57, 0.3);
}

.quick-chip span.material-symbols-outlined {
    font-size: 16px;
    opacity: 0.7;
}

.chip-premium {
    border-color: rgba(212, 176, 57, 0.5);
    animation: quick-chip-pulse 3s infinite;
    background: rgba(212, 176, 57, 0.05);
}

@keyframes quick-chip-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 176, 57, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(212, 176, 57, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 176, 57, 0); }
}

.word-rotator-text {
    display: inline-block;
    color: var(--secondary);
    min-width: 200px;
    text-align: left;
}

@keyframes wordFadeSlide {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.parallax-layer {
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* --- Marketplace Ad Vitrin Styles --- */
.vitrin-grid-tours {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .vitrin-grid-tours { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .vitrin-grid-tours { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.tour-card {
    background: #ffffff;
    border: 1px solid rgba(26, 53, 42, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(26, 53, 42, 0.05), 0 2px 4px -1px rgba(26, 53, 42, 0.03);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(26, 53, 42, 0.15), 0 15px 30px -10px rgba(26, 53, 42, 0.1);
    border-color: rgba(26, 53, 42, 0.1);
    z-index: 10;
}

.tour-label {
    background: var(--primary);
    color: #e6be8a; /* Gold text */
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(230, 190, 138, 0.2);
    display: block;
}

.tour-img-container {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    position: relative;
}

.tour-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.quota-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ffcc00;
    color: #000;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    z-index: 10;
}

.distance-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary); /* Theme Green Background */
    color: #e6be8a; /* Gold Text */
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(230, 190, 138, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 8px 0 4px 18px;
    width: fit-content;
}

.distance-pill .material-symbols-outlined {
    font-size: 14px;
    color: #e6be8a; /* Gold Icon */
}

.hotel-star-yellow {
    color: #f1c40f !important;
}

.tour-seller-bar {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, rgba(26, 53, 42, 0.03), transparent);
    border-bottom: 1px solid rgba(26, 53, 42, 0.03);
}

.tour-seller-logo {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6be8a; /* Gold text */
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(26, 53, 42, 0.2);
}

.tour-seller-name {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.tour-body {
    padding: 12px 18px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-logistics {
    font-size: 11px;
    font-weight: 900;
    color: #000000 !important;
    opacity: 1 !important;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.tour-distance-highlight {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-top: 1px;
}

.tour-distance-highlight .material-symbols-outlined {
    font-size: 14px;
    color: #bfa17a; /* Gold Accent */
}

.tour-category {
    font-size: 10px;
    font-weight: 900;
    color: #9b7e51; /* Deeper Gold */
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.rating-count {
    font-size: 10px;
    font-weight: 900;
    color: #000000 !important;
    opacity: 1 !important;
    letter-spacing: -0.02em;
}

.tour-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.4;
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 34px;
    transition: all 0.3s ease;
}

.tour-card:hover .tour-title {
    color: #1a352a;
}

.tour-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.tour-price-area {
    padding-top: 8px; /* Tight gap */
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.tour-price-new {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.tour-price-old {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.25;
    text-decoration: line-through;
}

/* --- Showcase Premium Details (Elite Upgrades) --- */

.distance-text {
    font-size: 9px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #e6be8a; /* Gold Verified */
    color: var(--primary);
    border-radius: 4px;
    font-size: 10px;
    margin-left: 4px;
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
}

.service-icons-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(26, 53, 42, 0.05);
    margin-top: 5px;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.tour-card:hover .service-icons-row {
    opacity: 0.9;
}

.service-icon-box {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--primary);
}

.service-icon-box span.material-symbols-outlined {
    font-size: 14px;
}

.service-label {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- Standard Category Listing Styles (4-Column Grid) --- */
.tour-grid-standard {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .tour-grid-standard { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
    .tour-grid-standard { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.category-section {
    padding-bottom: 80px;
}

.category-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(26, 53, 42, 0.05);
    padding-bottom: 15px;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.category-view-all {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.category-view-all:hover {
    opacity: 1;
    color: var(--secondary);
}

/* --- Marketplace Rating Styles --- */
.tour-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.rating-score {
    font-size: 13px;
    font-weight: 950;
    color: var(--primary);
}

.rating-star {
    color: #fbbf24; /* Vibrant Amber Gold */
    font-size: 15px !important;
}

.rating-dot {
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
}

.rating-count {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.4;
}

/* --- Elite Workflow (How it Works) Next-Gen Styles --- */
.workflow-section {
    background: #ffffff;
    padding: 100px 0 60px;
    position: relative;
}

.workflow-container {
    position: relative;
    z-index: 2;
}

.workflow-card-modern {
    background: #ffffff;
    border: 1px solid rgba(26, 53, 42, 0.04);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    height: 100%;
}

.workflow-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(26, 53, 42, 0.08);
    border-color: rgba(230, 190, 138, 0.3);
}

.step-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #e6be8a;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(230, 190, 138, 0.4);
    z-index: 3;
}

.workflow-icon-glow {
    width: 80px;
    height: 80px;
    background: rgba(230, 190, 138, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary);
    transition: all 0.5s ease;
}

.workflow-card-modern:hover .workflow-icon-glow {
    background: #e6be8a;
    transform: rotate(10deg);
}

.workflow-icon-glow span {
    font-size: 36px !important;
}

.workflow-title-modern {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.workflow-desc-modern {
    font-size: 14px;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1.7;
    font-weight: 500;
}

/* Connector Path (Desktop Only) */
@media (min-width: 1024px) {
    .connector-path {
        position: absolute;
        top: 50%;
        width: 100px;
        height: 2px;
        border-top: 2px dashed rgba(230, 190, 138, 0.3);
        z-index: 1;
        right: -50px;
    }
}

/* --- Premium Testimonial Slider (Next-Gen) Styles --- */
.testimonial-section {
    background: #ffffff;
    padding: 40px 0 0 !important;
    position: relative;
    overflow: hidden;
}

.footer-cta-ribbon {
    margin-top: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.testimonial-card-premium {
    background: #ffffff;
    border: 1px solid rgba(26, 53, 42, 0.04);
    border-radius: 28px;
    padding: 35px 30px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(26, 53, 42, 0.08);
    border-color: rgba(230, 190, 138, 0.3);
}

.quote-decorator {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 50px;
    color: var(--primary);
    opacity: 0.04;
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.guest-profile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.guest-info h4 {
    font-size: 14px;
    font-weight: 950;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-info span {
    font-size: 10px;
    font-weight: 800;
    color: #e6be8a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Linear Infinite Glide Effect */
.testimonialSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.testimonial-text-premium {
    font-size: 16px;
    color: var(--primary);
    opacity: 0.7;
    line-height: 1.8;
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
    background: #e6be8a !important;
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* --- Elite Full-Scale Corporate Footer Styles --- */
.footer-cta-ribbon {
    background: linear-gradient(135deg, #c5a059 0%, #e6be8a 100%);
    padding: 25px 0;
    text-align: center;
    border-radius: 30px 30px 0 0;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.cta-ribbon-text {
    color: #1a352a;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-ribbon-btn {
    background: #1a352a;
    color: #e6be8a;
    padding: 8px 25px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-ribbon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.elite-footer {
    background: #1a352a;
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-subtitle-full {
    font-size: 11px;
    font-weight: 900;
    color: #e6be8a;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px; /* Compacted */
    display: block;
}

.footer-link {
    color: rgba(255, 255, 255, 0.45); /* Muted Harmony */
    font-size: 13px;
    font-weight: 400; /* Elegant weight */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 8px; /* Tighter list */
}

.footer-link:hover {
    color: #e6be8a;
    opacity: 1;
    transform: translateX(4px);
}

.footer-link span {
    font-size: 11px !important;
    opacity: 0.6;
}

.footer-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.popular-tag {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    color: #e6be8a;
    border-color: rgba(230, 190, 138, 0.3);
    background: rgba(230, 190, 138, 0.03);
}

.support-badge-footer {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.support-badge-footer:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(230, 190, 138, 0.2);
}

.support-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(230, 190, 138, 0.1);
    color: #e6be8a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-content-wrap span {
    display: block;
}

.support-label {
    font-size: 10px;
    font-weight: 800;
    opacity: 0.4;
    text-transform: uppercase;
}

.support-value {
    font-size: 14px;
    font-weight: 700;
}

.trust-grid-ribbon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0; /* Radically compacted */
}

.trust-card-footer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.trust-card-footer:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(230, 190, 138, 0.15);
    transform: translateY(-3px);
}

.trust-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(230, 190, 138, 0.08);
    color: #e6be8a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-box span {
    font-size: 16px !important;
}

.trust-info-box span {
    display: block;
}

.trust-title {
    font-size: 8px;
    font-weight: 800;
    color: #e6be8a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.trust-desc {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .trust-grid-ribbon {
        grid-template-columns: 1fr;
    }
}

.footer-bottom-full {
    margin-top: 20px; /* Snapped up */
    padding: 24px 0; /* Compacted */
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Refined Social & Legal Muted Styles --- */
.footer-social-box {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-box img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(13%) saturate(1131%) hue-rotate(345deg) brightness(94%) contrast(92%); /* Corporate Gold */
    width: 18px;
    height: 18px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-social-box:hover {
    background: rgba(230, 190, 138, 0.15);
    transform: translateY(-3px);
}

.footer-social-box:hover img {
    opacity: 1;
}

.bottom-legal-link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3); /* Muted Legal Bar */
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.bottom-legal-link:hover {
    color: #e6be8a;
    opacity: 1;
}

/* --- Grid Precision: Row Span for Gap Elimination --- */
@media (min-width: 1024px) {
    .footer-support-col {
        grid-row: span 2 / span 2;
    }
}





/* --- Elite Agency Showcase (Firmalar) Styles --- */
.agency-page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, rgba(26, 53, 42, 0.02) 0%, transparent 100%);
    text-align: center;
}

.agency-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 60px;
    padding-bottom: 120px;
}

@media (min-width: 768px) {
    .agency-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .agency-grid { grid-template-columns: repeat(3, 1fr); }
}

.agency-card {
    background: #ffffff;
    border: 1px solid rgba(26, 53, 42, 0.05);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.agency-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(26, 53, 42, 0.08);
    border-color: var(--secondary);
}

.agency-logo-box {
    width: 100px;
    height: 100px;
    background: #f8fafc;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid rgba(26, 53, 42, 0.03);
    transition: all 0.5s ease;
}

.agency-card:hover .agency-logo-box {
    transform: scale(1.05) rotate(-2deg);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.agency-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.agency-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.agency-tursab {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.6;
}

.agency-stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.agency-stat {
    background: rgba(26, 53, 42, 0.03);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-agency {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.btn-agency:hover {
    background: var(--secondary);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.verified-seal {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- Elite Auth Portal (Login & Register) Entegre --- */
.auth-integrated-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 160px 20px 100px !important;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 53, 42, 0.9) 0%, rgba(26, 53, 42, 0.7) 100%);
    backdrop-filter: blur(8px);
}

.auth-glass-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 480px;
    background: rgba(252, 252, 251, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px 45px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255,255,255,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.auth-glass-card:hover {
    transform: translateY(-5px);
}

.auth-input-group {
    margin-bottom: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
}

.auth-label {
    display: block !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 12px !important;
    opacity: 0.6 !important;
}

.auth-input {
    width: 100% !important;
    padding: 16px 20px !important;
    background: #f1f5f9 !important;
    border: 1px solid transparent !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
}

.auth-input:focus {
    background: #ffffff !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12) !important;
    outline: none !important;
    transform: scale(1.01);
}

/* --- Luxury Custom Checkbox --- */
.custom-checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox-container input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    background: #f1f5f9;
    border-radius: 7px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 53, 42, 0.05);
}

.custom-checkbox-container:hover .checkmark {
    background: #ffffff;
    border-color: var(--secondary);
}

.custom-checkbox-container input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(26, 53, 42, 0.2);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.custom-checkbox-container input:checked + .checkmark::after {
    display: block;
}

.checkbox-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* --- Elite Toast Notification System --- */
.elite-toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.elite-toast {
    min-width: 320px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border-left: 5px solid var(--secondary);
}

@keyframes toastSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-icon {
    width: 35px;
    height: 35px;
    background: rgba(26, 53, 42, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.toast-content {
    flex: 1;
}

.toast-title {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.toast-message {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.6;
    margin-top: 2px;
}

/* --- Ultra-Refined Specular Glow --- */
.auth-glass-card.focused {
    box-shadow: 0 50px 100px rgba(212, 175, 55, 0.1), inset 0 0 0 1px rgba(212, 175, 55, 0.2);
    transform: scale(1.005) translateY(-5px);
}

.btn-auth {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(26, 53, 42, 0.2);
}

.btn-auth:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.auth-footer-link {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.auth-footer-link a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 900;
}

.auth-footer-link:hover {
    opacity: 1;
}

/* --- Elite Dashboard v2 (Ground-Up Rebuild) Styles --- */
:root {
    --db-sidebar-w: 280px;
    --db-header-h: 80px;
    --db-bg: #f8fafc;
    --db-glass: rgba(255, 255, 255, 0.85);
}

.dashboard-v2-wrapper {
    background: var(--db-bg);
    min-height: 100vh;
    display: flex;
}

/* Glass-Shadow Sidebar */
.sidebar-v2 {
    width: var(--db-sidebar-w);
    background: #ffffff;
    border-right: 1px solid rgba(26, 53, 42, 0.04);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 50px rgba(26, 53, 42, 0.02);
}

.sidebar-v2-header {
    height: var(--db-header-h);
    display: flex;
    align-items: center;
    padding: 0 35px;
    border-bottom: 1px solid rgba(26, 53, 42, 0.03);
}

.sidebar-v2-nav {
    flex-grow: 1;
    padding: 30px 20px;
}

.nav-link-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 18px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.5;
}

.nav-link-v2:hover {
    opacity: 1;
    background: rgba(26, 53, 42, 0.02);
    transform: translateX(5px);
}

.nav-link-v2.active {
    background: var(--primary);
    color: white;
    opacity: 1;
    box-shadow: 0 10px 25px rgba(26, 53, 42, 0.15);
}

.nav-link-v2 .material-symbols-outlined {
    font-size: 22px;
    font-variation-settings: 'FILL' 1;
}

/* Sticky Header v2 */
.header-v2 {
    height: var(--db-header-h);
    background: var(--db-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 53, 42, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.main-v2 {
    margin-left: var(--db-sidebar-w);
    flex-grow: 1;
    padding: 0;
}

.content-v2 {
    padding: 40px 50px;
    max-width: 1450px;
}

/* BI-Bento Cards v2 */
.grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 24px;
    margin-bottom: 40px;
}

.card-v2 {
    background: #ffffff;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid rgba(26, 53, 42, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.card-v2.span-2 { grid-column: span 2; }

.stat-v2-label {
    display: block;
    font-size: 10px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.4;
    margin-bottom: 12px;
}

.stat-v2-value {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-v2-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(26, 53, 42, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-variation-settings: 'FILL' 1;
}

/* Activity Feed & Table v2 */
.section-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.section-v2-title {
    font-size: 11px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.5;
}

.table-v2 {
    background: #ffffff;
    border-radius: 35px;
    padding: 12px;
    border: 1px solid rgba(26, 53, 42, 0.03);
}

.row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.row-v2:hover {
    background: rgba(26, 53, 42, 0.02);
}

.row-v2-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.row-v2-img {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.row-v2-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.row-v2-meta {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2px;
}

.btn-v2-action {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 53, 42, 0.02);
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-v2-action:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-v2-add {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(26, 53, 42, 0.1);
}

.btn-v2-add:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

/* Badges */
.badge-v2 {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-v2-success { 
    background: rgba(16, 185, 129, 0.1); 
    color: #059669; 
}
