/* =============================================================
   NYAYA PATH LEGAL SERVICES — PREMIUM BLACK + GOLD THEME
   Elite Indian Law Firm | Lucknow, Uttar Pradesh
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Color System ── */
:root {
    --color-primary: #0F0F0F;
    --color-primary-light: #1A1A1A;
    --color-primary-dark: #080808;
    --color-accent: #C6A75E;
    --color-accent-hover: #D4B46A;
    --color-accent-dark: #A38745;
    --color-text-light: #F5F5F5;
    --color-text-muted: #CFCFCF;
    --color-text-dark: #111111;
    --color-background: #FFFFFF;
    --color-border: #2A2A2A;
    --color-border-light: #E8E8E8;
    --color-card-bg: #161616;
    --shadow-gold: 0 0 15px rgba(198, 167, 94, 0.25);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.22);
    /* Legacy aliases */
    --primary-navy: #0F0F0F;
    --primary-gold: #C6A75E;
    --secondary-navy: #1A1A1A;
    --text-dark: #111111;
    --text-light: #888888;
    --text-muted: #AAAAAA;
    --text-white: #F5F5F5;
    --border-light: #2A2A2A;
    --bg-light: #1A1A1A;
    --bg-white: #FFFFFF;
    --card-bg: #161616;
    --transition: all 0.3s ease;
    --radius: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --radius-full: 50%;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    top: 0 !important;
    font-size: 16px;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: 2.6rem;
    line-height: 1.25;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.65rem;
    line-height: 1.35;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.05rem;
    font-weight: 600;
}

h6 {
    font-size: 0.95rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Utility ── */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--color-primary-light);
}

.bg-white {
    background: #ffffff;
}

.bg-dark {
    background: var(--color-primary);
}

.text-gold {
    color: var(--color-accent);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* On dark backgrounds */
.bg-dark .section-title,
.bg-light .section-title {
    color: var(--color-text-light);
}

.bg-dark .section-subtitle,
.bg-light .section-subtitle {
    color: var(--color-accent);
}

.bg-dark .section-header p,
.bg-light .section-header p {
    color: var(--color-text-muted);
}

.section-header p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark) !important;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 22px rgba(198, 167, 94, 0.4);
    transform: translateY(-2px);
    color: var(--color-primary-dark) !important;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light) !important;
    border: 1.5px solid rgba(198, 167, 94, 0.4);
}

.btn-outline:hover {
    background: rgba(198, 167, 94, 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-text-dark) !important;
    border: 1.5px solid var(--color-text-dark);
}

.btn-outline-dark:hover {
    background: var(--color-text-dark);
    color: var(--color-text-light) !important;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-cta {
    background: var(--color-accent);
    color: var(--color-primary-dark) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 22px rgba(198, 167, 94, 0.4);
    transform: translateY(-2px);
}

/* ── Google Translate ── */
.goog-te-gadget-icon,
.goog-te-banner-frame,
.goog-te-menu-value span:nth-child(5),
.goog-te-menu-value span:nth-child(3) {
    display: none !important;
}

.google-translate-container {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(198, 167, 94, 0.2);
    padding-right: 15px;
    height: 30px;
    position: relative;
    z-index: 10002;
}

.google-translate-container #google_translate_element {
    line-height: normal;
}

.goog-te-gadget-simple {
    background-color: var(--color-accent) !important;
    border: 1px solid var(--color-accent) !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
    font-size: 0.82rem !important;
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.goog-te-gadget-simple:hover {
    background-color: var(--color-accent-hover) !important;
    border-color: var(--color-accent-hover) !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: var(--color-primary-dark) !important;
    display: flex !important;
    align-items: center;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: var(--color-primary-dark) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    border-left: none !important;
}

.goog-te-gadget-simple img {
    display: none !important;
}

.goog-te-menu-frame {
    z-index: 999999 !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar-wrapper {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10000;
    background: var(--color-primary-dark);
    min-height: 70px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(198, 167, 94, 0.15);
    transition: transform 0.3s ease;
}

.navbar-top {
    background: var(--color-primary-dark);
    border-bottom: 1px solid rgba(198, 167, 94, 0.12);
    color: var(--color-text-muted);
    min-height: 40px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10001;
    font-size: 0.84rem;
    width: 100%;
}

.navbar-top .container,
.navbar-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.82rem;
}

.contact-item:hover {
    color: var(--color-accent);
}

.contact-item i {
    color: var(--color-accent);
    font-size: 0.84rem;
}

.navbar-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.navbar-social {
    display: flex;
    gap: 7px;
    align-items: center;
}

.navbar-social a {
    color: var(--color-primary-dark) !important;
    font-size: 0.82rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 3px;
    background: var(--color-accent) !important;
    text-decoration: none;
    border: none !important;
}

.navbar-social a:hover {
    background: var(--color-accent-hover) !important;
    transform: translateY(-2px);
}

/* Main Nav */
.navbar-main {
    background: var(--color-primary-dark);
    padding: 16px 0;
    display: block;
    position: relative;
    z-index: 10000;
    width: 100%;
}

.navbar-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand */
.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.navbar-brand .logo-image {
    max-height: 48px;
    width: auto;
}

.navbar-brand .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.navbar-menu>li>a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 13px;
    border-radius: 3px;
    transition: all 0.3s;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.navbar-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.navbar-menu>li>a:hover,
.navbar-menu>li.active>a {
    color: var(--color-accent);
}

.navbar-menu>li>a:hover::after,
.navbar-menu>li.active>a::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-primary-light);
    min-width: 240px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    border-top: 2px solid var(--color-accent);
    list-style: none;
    z-index: 100000;
    display: block;
}

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

.dropdown::after {
    content: '';
    position: absolute;
    height: 18px;
    width: 100%;
    bottom: -18px;
    left: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.dropdown-menu li a:hover {
    background: rgba(198, 167, 94, 0.08);
    color: var(--color-accent);
    padding-left: 26px;
}

.dropdown-menu li.view-all a {
    color: var(--color-accent);
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
    padding-top: 12px;
}

/* Cart */
.cart-icon {
    position: relative;
    padding: 10px;
    color: var(--color-text-muted);
    font-size: 1.15rem;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: 0.68rem;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Mobile Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.navbar-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   MOBILE ASIDE MENU — BLACK + GOLD
   ============================================================ */

.mobile-aside-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 90%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-primary-light);
    z-index: 100002;
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.mobile-aside-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(6px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.mobile-menu-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary-dark);
    border-bottom: 2px solid var(--color-accent);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo-wrapper .logo-image {
    max-height: 44px;
    width: auto;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: rgba(198, 167, 94, 0.1);
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 3px;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.mobile-close:hover {
    background: rgba(198, 167, 94, 0.2);
    border-color: var(--color-accent);
    transform: rotate(90deg);
}

.mobile-menu-list {
    padding: 6px 0;
    margin: 0;
    list-style: none;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu-list::-webkit-scrollbar {
    width: 3px;
}

.mobile-menu-list::-webkit-scrollbar-thumb {
    background: rgba(198, 167, 94, 0.3);
    border-radius: 10px;
}

.mobile-menu-list>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu-list>li:last-child {
    border-bottom: none;
}

.mobile-menu-list>li>a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.mobile-menu-list .dropdown-toggle::after {
    display: none !important;
}

.mobile-menu-list>li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-list>li>a:hover,
.mobile-menu-list>li>a:active {
    background: rgba(198, 167, 94, 0.05);
    color: var(--color-accent);
}

.mobile-menu-list>li>a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-list>li>a i {
    color: var(--color-accent);
    font-size: 0.97rem;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--color-accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
    padding: 5px 0;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    padding: 11px 24px 11px 36px;
    color: #888;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-submenu li a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-submenu li a:hover {
    background: rgba(198, 167, 94, 0.06);
    color: var(--color-accent);
    padding-left: 40px;
}

.mobile-submenu li a:hover::before {
    opacity: 1;
}

.btn-cta-mobile {
    background: var(--color-accent);
    color: var(--color-primary-dark) !important;
    text-align: center;
    border-radius: 3px;
    margin: 14px 24px;
    padding: 14px !important;
    display: block;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-mobile:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 22px rgba(198, 167, 94, 0.4);
    transform: translateY(-2px);
}

.cart-badge-mobile {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
    margin-left: 8px;
}

.mobile-menu-footer {
    padding: 20px 24px;
    background: var(--color-primary-dark);
    border-top: 1px solid rgba(198, 167, 94, 0.2);
    margin-top: auto;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 9px 11px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-contact-item:hover {
    border-color: var(--color-accent);
    background: rgba(198, 167, 94, 0.06);
}

.mobile-contact-item i {
    color: var(--color-primary-dark);
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.mobile-social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.mobile-translate-section {
    display: flex;
    justify-content: center;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 992px) {

    .mobile-aside-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================================
   HERO SECTION — BLACK + GOLD
   ============================================================ */

.home-hero {
    background: var(--color-primary);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: var(--color-text-light);
}

/* Subtle diagonal lines pattern */
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            rgba(198, 167, 94, 0.025) 60px,
            rgba(198, 167, 94, 0.025) 61px);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.4;
}

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

.hero-content {
    color: var(--color-text-light);
}

.hero-badge {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(198, 167, 94, 0.1);
    color: var(--color-accent);
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 22px;
    border: 1px solid rgba(198, 167, 94, 0.25);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 3.6rem;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--color-text-light) !important;
    letter-spacing: 0.5px;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    font-family: 'Inter', sans-serif;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(198, 167, 94, 0.18);
}

.stat-item h3 {
    font-size: 1.9rem;
    color: var(--color-accent);
    margin-bottom: 4px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.home-hero-image-wrapper,
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.home-hero-image-wrapper::before,
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40px;
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 3px;
    z-index: 1;
    transform: rotate(2.5deg);
    transition: all 0.5s ease;
}

.home-hero-image-wrapper:hover::before,
.hero-image-wrapper:hover::before {
    transform: rotate(0);
    border-color: rgba(198, 167, 94, 0.55);
}

.home-hero-img,
.hero-img {
    position: relative;
    z-index: 2;
    border-radius: 3px;
    box-shadow: var(--shadow-gold), 0 24px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(198, 167, 94, 0.15);
    transition: transform 0.5s ease;
    width: 100%;
}

.home-hero-img:hover,
.hero-img:hover {
    transform: translateY(-8px);
}

/* ============================================================
   ABOUT / SERVICE HERO — BLACK + GOLD
   ============================================================ */

.about-hero,
.service-detail-hero {
    background: var(--color-primary);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--color-text-light);
}

.about-hero::before,
.service-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(198, 167, 94, 0.02) 60px, rgba(198, 167, 94, 0.02) 61px);
}

.about-hero .hero-content,
.service-detail-hero .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero .breadcrumb,
.service-detail-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.875rem;
}

.about-hero .breadcrumb a,
.service-detail-hero .breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-hero .breadcrumb a:hover,
.service-detail-hero .breadcrumb a:hover {
    color: var(--color-accent);
}

.about-hero .breadcrumb span,
.service-detail-hero .breadcrumb span {
    color: var(--color-accent);
    font-weight: 600;
}

.about-hero .hero-title,
.service-detail-hero .hero-title {
    font-size: 3.2rem;
    color: var(--color-text-light);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.about-hero .hero-title .highlight,
.about-hero .hero-title i,
.service-detail-hero .hero-title i {
    color: var(--color-accent);
}

.about-hero .hero-subtitle,
.service-detail-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-hero .hero-description,
.service-detail-hero .hero-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

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

.hero-btn-group .btn {
    border-radius: 3px;
}

.about-hero-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.about-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40px;
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 3px;
    z-index: 1;
    transform: rotate(2.5deg);
    transition: all 0.5s ease;
}

.about-hero-image-wrapper:hover::before {
    transform: rotate(0);
    border-color: rgba(198, 167, 94, 0.55);
}

.about-main-img,
.service-hero-img {
    position: relative;
    z-index: 2;
    border-radius: 3px;
    box-shadow: var(--shadow-gold), 0 20px 48px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(198, 167, 94, 0.15);
    transition: transform 0.5s ease;
    width: 100%;
}

.about-main-img:hover,
.service-hero-img:hover {
    transform: translateY(-8px);
}

.about-placeholder-visual,
.service-placeholder-visual {
    background: rgba(198, 167, 94, 0.06);
    border: 1px solid rgba(198, 167, 94, 0.25);
    border-radius: 3px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--color-accent);
}

/* ============================================================
   ABOUT SECTION — WHITE BG
   ============================================================ */

.about-overview {
    padding: 80px 0;
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.4rem;
    color: var(--color-text-dark);
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
}

.overview-content p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 18px;
}

/* Gold accent divider for about section */
.overview-content .section-divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 0 28px;
    display: block;
}

.story-highlights {
    margin-top: 28px;
}

.highlight-item {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    align-items: start;
}

.highlight-item i {
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-top: 4px;
}

.highlight-item h4 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.93rem;
    color: #555;
    margin: 0;
}

.stats-card {
    background: var(--color-card-bg);
    padding: 24px;
    border-radius: 3px;
    box-shadow: var(--shadow-gold);
    border-left: 2px solid var(--color-accent);
}

.stat-box .stat-number {
    font-size: 2.4rem;
    color: var(--color-accent);
    font-weight: 800;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.stat-box .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.stat-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--color-accent);
    border-radius: 2px;
    transition: width 1s ease;
}

/* ============================================================
   PRACTICE AREAS — DARK CARDS
   ============================================================ */

.features-grid,
.services-grid,
.products-grid,
.portfolio-grid,
.blog-grid,
.testimonials-grid {
    display: grid;
    gap: 26px;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.portfolio-grid,
.blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}

/* Feature Card — Dark */
.feature-card-modern {
    background: var(--color-card-bg);
    padding: 32px 26px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(198, 167, 94, 0.1);
    color: var(--color-accent);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.feature-card-modern:hover .feature-icon {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.feature-card-modern h3 {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card-modern p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.92rem;
}

/* Service Card Modern — Dark */
.service-card-modern {
    background: var(--color-card-bg);
    padding: 36px 28px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--color-accent);
    margin-bottom: 22px;
    transition: all 0.3s;
}

.service-card-modern:hover .service-icon-wrapper {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.service-card-modern h3 {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-modern p {
    color: var(--color-text-muted);
    margin-bottom: 18px;
    flex-grow: 1;
    font-size: 0.93rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    margin-bottom: 7px;
    font-size: 0.875rem;
}

.service-features-list i {
    color: var(--color-accent);
}

.service-btn {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
}

.service-btn:hover {
    color: var(--color-accent-hover);
    gap: 11px;
}

/* Legacy service-card */
.service-card {
    background: var(--color-card-bg);
    padding: 28px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.service-image {
    margin: -28px -28px 18px -28px;
    height: 190px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(198, 167, 94, 0.1);
    color: var(--color-accent);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: var(--transition);
}

/* Product Card — Dark */
.product-card-modern {
    background: var(--color-card-bg);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.product-thumb {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #111;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-modern:hover .product-thumb img {
    transform: scale(1.08);
}

.badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c0392b;
    color: white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-icon:hover {
    background: var(--color-accent-hover);
}

.product-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.72rem;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.product-title a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--color-accent);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.current-price {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
}

.old-price {
    text-decoration: line-through;
    color: #555;
    font-size: 0.88rem;
    margin-right: 5px;
}

.btn-view {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

/* Portfolio & Blog Cards — Dark */
.portfolio-card-modern,
.blog-card-modern {
    background: var(--color-card-bg);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.portfolio-card-modern:hover,
.blog-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.portfolio-thumb,
.blog-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #111;
}

.portfolio-thumb img,
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card-modern:hover .portfolio-thumb img,
.blog-card-modern:hover .blog-thumb img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.portfolio-card-modern:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-details,
.blog-details {
    padding: 22px;
}

.category-tag {
    background: rgba(198, 167, 94, 0.1);
    color: var(--color-accent);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 4px 11px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
}

.portfolio-details h3,
.post-title {
    margin-top: 8px;
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-weight: 700;
}

.post-title a {
    color: var(--color-text-light);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--color-accent);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 13px;
}

.tech-stack span {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-muted);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
}

.post-meta {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 8px;
}

.read-more-link {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
    font-size: 0.875rem;
}

.read-more-link:hover {
    gap: 10px;
    color: var(--color-accent-hover);
}

/* Testimonials — Dark */
.testimonial-card {
    background: var(--color-card-bg);
    padding: 30px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-gold);
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 14px;
}

.testimonial-text {
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.testimonial-author h4 {
    color: var(--color-text-light);
    font-weight: 700;
    margin: 0;
    font-size: 1.02rem;
}

.testimonial-author p {
    color: #666;
    margin: 0;
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--color-primary);
    text-align: center;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(198, 167, 94, 0.02) 60px, rgba(198, 167, 94, 0.02) 61px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--color-accent);
    font-size: 1.9rem;
}

/* ============================================================
   FOOTER — BLACK + GOLD
   ============================================================ */

.footer-wrapper {
    background: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-column h4 {
    color: var(--color-accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.6;
}

.footer-description {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 0.9rem;
}

.footer-logo {
    max-height: 46px;
    margin-bottom: 18px;
}

.footer-logo-fix {
    filter: none !important;
    opacity: 1 !important;
    max-width: 170px;
    height: auto;
    display: inline-block;
    mix-blend-mode: normal !important;
}

.footer-logo-wrapper {
    margin-bottom: 18px;
    display: block;
}

.footer-brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
}

.footer-social-icons {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-circle:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
}

.footer-menu a::before {
    content: '›';
    color: var(--color-accent);
    font-size: 1.05rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-menu a:hover {
    color: var(--color-accent);
}

.footer-menu a:hover::before {
    opacity: 1;
}

.footer-newsletter-form .form-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 3px;
    margin-bottom: 16px;
}

.footer-newsletter-form input {
    background: transparent !important;
    border: none;
    flex-grow: 1;
    padding: 9px 14px;
    color: var(--color-text-light);
    outline: none;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.footer-newsletter-form input::placeholder {
    color: #555;
}

.footer-newsletter-form button {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-form button:hover {
    background: var(--color-accent-hover);
}

.footer-contact-mini p {
    font-size: 0.85rem;
    margin-bottom: 7px;
    color: var(--color-text-muted);
}

.footer-contact-mini i {
    color: var(--color-accent);
    width: 18px;
    text-align: center;
    margin-right: 5px;
}

.footer-contact-mini a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-mini a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #444;
}

.legal-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--color-accent);
}

.separator {
    margin: 0 9px;
    color: #333;
}

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */

.floating-widgets {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    left: auto;
    background: var(--color-primary-light);
    color: var(--color-text-light);
    border: 1px solid rgba(198, 167, 94, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.widget-btn {
    width: 46px;
    height: 46px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.whatsapp-float {
    background: #25D366;
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 1.6rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.tooltip-text {
    position: absolute;
    left: 56px;
    background: var(--color-primary-light);
    color: var(--color-text-light);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
    font-weight: 500;
    border: 1px solid rgba(198, 167, 94, 0.2);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    left: 60px;
}

/* ============================================================
   CONSENT BANNER — DARK
   ============================================================ */

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(22, 22, 22, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(198, 167, 94, 0.3);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    display: none;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.consent-text h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.consent-text p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.consent-buttons {
    display: flex;
    gap: 10px;
}

.btn-optimize {
    padding: 9px 20px;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-accept {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-accept:hover {
    background: var(--color-accent-hover);
    box-shadow: var(--shadow-gold);
}

.btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text-light);
}

/* ============================================================
   LEGAL PAGE HERO — DARK
   ============================================================ */

.legal-page-hero {
    background: var(--color-primary);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.legal-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(198, 167, 94, 0.02) 60px, rgba(198, 167, 94, 0.02) 61px);
}

.legal-page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.legal-page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.875rem;
}

.legal-page-hero .breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-page-hero .breadcrumb a:hover {
    color: var(--color-accent);
}

.legal-page-hero .breadcrumb span {
    color: var(--color-accent);
    font-weight: 600;
}

.legal-page-hero .hero-title {
    font-size: 3.2rem;
    color: var(--color-text-light);
    font-weight: 800;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 18px;
}

.legal-page-hero .hero-title i {
    color: var(--color-accent);
}

.legal-page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ============================================================
   LEGAL CONTENT — DARK/MIXED
   ============================================================ */

.legal-content-section {
    padding: 80px 0;
    background: var(--color-primary-light);
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.company-info-box {
    background: var(--color-card-bg);
    padding: 28px;
    border-radius: 3px;
    box-shadow: var(--shadow-gold);
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    border-left: 2px solid var(--color-accent);
}

.company-info-box .info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.company-info-box .info-item i {
    width: 42px;
    height: 42px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(198, 167, 94, 0.2);
}

.company-info-box .info-item strong {
    display: block;
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info-box .info-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
    font-weight: 500;
}

.legal-content {
    background: var(--color-card-bg);
    padding: 56px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-section {
    margin-bottom: 44px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-heading {
    font-size: 2rem;
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.lead-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.content-section {
    margin-bottom: 44px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.7rem;
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.3);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
}

.content-section h2 .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 3px;
    font-size: 1.05rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.content-section h2 i {
    color: var(--color-accent);
}

.content-section h3 {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin: 28px 0 18px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.content-section h3 i {
    color: var(--color-accent);
}

.content-section h4 {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin: 18px 0 13px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.content-section h4 i {
    color: var(--color-accent);
}

.content-section p {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.content-section p strong {
    color: var(--color-text-light);
    font-weight: 600;
}

.service-list,
.obligation-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.service-list li,
.obligation-list li {
    padding: 11px 0 11px 38px;
    position: relative;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.service-list li i,
.obligation-list li i {
    position: absolute;
    left: 0;
    top: 13px;
    color: var(--color-accent);
    font-size: 1.05rem;
}

.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.numbered-list li {
    counter-increment: item;
    padding: 11px 0 11px 48px;
    position: relative;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 10px;
    width: 32px;
    height: 32px;
    background: rgba(198, 167, 94, 0.12);
    color: var(--color-accent);
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
}

.info-box {
    background: rgba(198, 167, 94, 0.06);
    padding: 22px;
    border-radius: 3px;
    border-left: 2px solid var(--color-accent);
    margin: 22px 0;
}

.info-box h4 {
    margin-top: 0;
    color: var(--color-text-light);
}

.info-box ul,
.info-box ol {
    margin: 14px 0 0;
    padding-left: 22px;
}

.info-box li {
    margin-bottom: 9px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.warning-box {
    background: rgba(240, 165, 0, 0.07);
    border-left: 2px solid #c0870a;
    padding: 22px;
    border-radius: 3px;
    margin: 22px 0;
}

.warning-box h4 {
    color: #d4960c;
    margin-top: 0;
}

.warning-box p,
.warning-box li {
    color: #b8840a;
}

.info-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 28px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: 22px 0;
    transition: all 0.3s;
}

.info-category:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.info-category h3 {
    color: var(--color-text-light);
    margin-top: 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin: 28px 0;
}

.usage-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 26px;
    border-radius: 3px;
    border-top: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.usage-card:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.usage-card .icon {
    width: 52px;
    height: 52px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

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

.usage-card h4 {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin: 0 0 13px;
    font-weight: 700;
}

.usage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-card ul li {
    padding: 7px 0 7px 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.usage-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.sharing-list,
.rights-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 28px 0;
}

.share-item,
.right-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    border-left: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.share-item:hover,
.right-item:hover {
    box-shadow: var(--shadow-gold);
}

.share-icon,
.right-icon {
    width: 48px;
    height: 48px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.share-content h4,
.right-content h4 {
    color: var(--color-text-light);
    margin: 0 0 11px;
    font-weight: 600;
}

.share-content p,
.right-content p {
    color: var(--color-text-muted);
    margin-bottom: 9px;
    font-size: 0.92rem;
}

.share-content ul,
.right-content ul {
    list-style: none;
    padding: 0;
    margin: 9px 0 0;
}

.share-content ul li,
.right-content ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.share-content ul li::before,
.right-content ul li::before {
    content: "•";
    position: absolute;
    left: 7px;
    color: var(--color-accent);
    font-weight: 700;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.security-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 22px 18px;
    border-radius: 3px;
    text-align: center;
    border-top: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.security-item:hover {
    box-shadow: var(--shadow-gold);
}

.security-item i {
    font-size: 2.3rem;
    color: var(--color-accent);
    margin-bottom: 13px;
    display: block;
}

.security-item h4 {
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 0 0 7px;
    font-weight: 600;
    display: block;
}

.security-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.retention-table {
    overflow-x: auto;
    margin: 22px 0;
}

.retention-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-card-bg);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.retention-table thead {
    background: rgba(198, 167, 94, 0.1);
}

.retention-table thead th {
    color: var(--color-accent);
    padding: 15px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.92rem;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid rgba(198, 167, 94, 0.3);
}

.retention-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.retention-table tbody tr:last-child {
    border-bottom: none;
}

.retention-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.retention-table tbody td {
    padding: 15px 18px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.retention-table tbody td:first-child {
    font-weight: 600;
    color: var(--color-text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin: 28px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 26px;
    border-radius: 3px;
    text-align: center;
    border-top: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-gold);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.contact-card .icon i {
    color: var(--color-accent);
    font-size: 1.85rem;
}

.contact-card .details h4 {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin: 0 0 11px;
    font-weight: 600;
    display: block;
}

.contact-card .details p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 4px 0;
}

.contact-card .details a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.contact-card .details small {
    display: block;
    color: #555;
    font-size: 0.82rem;
    margin-top: 4px;
}

.acknowledgment-box {
    background: rgba(198, 167, 94, 0.06);
    border: 1px solid rgba(198, 167, 94, 0.2);
    color: var(--color-text-light);
    padding: 36px;
    border-radius: 3px;
    margin-top: 44px;
    text-align: center;
}

.acknowledgment-box h3 {
    color: var(--color-text-light);
    font-size: 1.65rem;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
}

.acknowledgment-box h3 i {
    color: var(--color-accent);
}

.acknowledgment-box p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    line-height: 1.82;
    margin-bottom: 13px;
}

.acknowledgment-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--color-accent);
}

.legal-cta-section {
    padding: 80px 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.legal-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(198, 167, 94, 0.02) 60px, rgba(198, 167, 94, 0.02) 61px);
}

.legal-cta-section .cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.legal-cta-section h2 {
    font-size: 2.6rem;
    color: var(--color-text-light);
    margin-bottom: 13px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.legal-cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

/* Refund & process styles */
.refund-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 22px 0;
}

.stage-item {
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s;
}

.stage-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.stage-header {
    background: rgba(198, 167, 94, 0.08);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.2);
}

.stage-percent {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: 'Playfair Display', serif;
}

.stage-label {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.stage-content {
    padding: 18px;
}

.stage-content p {
    margin: 7px 0;
    font-size: 0.9rem;
}

.stage-content p strong {
    display: block;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.refund-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin: 28px 0;
}

.reason-card {
    background: var(--color-card-bg);
    padding: 26px;
    border-radius: 3px;
    text-align: center;
    border-top: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.reason-card:hover {
    box-shadow: var(--shadow-gold);
}

.reason-card .icon {
    width: 58px;
    height: 58px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.reason-card .icon i {
    color: var(--color-accent);
    font-size: 1.85rem;
}

.reason-card h4 {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin: 0 0 11px;
    font-weight: 600;
    display: block;
}

.reason-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.digital-policy {
    background: rgba(198, 167, 94, 0.05);
    padding: 22px;
    border-radius: 3px;
    margin: 18px 0;
    border-left: 2px solid var(--color-accent);
}

.digital-policy h4 {
    color: var(--color-text-light);
    margin-top: 0;
}

.process-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    margin-bottom: 22px;
    background: var(--color-card-bg);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 37px;
    bottom: -22px;
    width: 2px;
    height: 22px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(198, 167, 94, 0.1);
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.process-step .step-content h4 {
    color: var(--color-text-light);
    margin: 0 0 11px;
    font-weight: 600;
}

.process-step .step-content p {
    color: var(--color-text-muted);
    margin-bottom: 9px;
    font-size: 0.92rem;
}

.process-step .step-content ul {
    margin: 9px 0 0;
    padding-left: 18px;
}

.process-step .step-content li {
    color: var(--color-text-muted);
    margin-bottom: 7px;
    line-height: 1.6;
    font-size: 0.92rem;
}

.process-step .step-content strong {
    color: var(--color-text-light);
}

.dispute-steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 28px 0;
}

.dispute-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--color-card-bg);
    border-radius: 3px;
    border-left: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.dispute-item:hover {
    box-shadow: var(--shadow-gold);
}

.dispute-icon {
    width: 48px;
    height: 48px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dispute-content h4 {
    color: var(--color-text-light);
    margin: 0 0 11px;
    font-weight: 600;
}

.dispute-content p {
    color: var(--color-text-muted);
    margin-bottom: 9px;
    font-size: 0.92rem;
}

.dispute-content strong {
    color: var(--color-text-light);
}

.alternatives-grid,
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 22px 0;
}

.alt-card,
.guarantee-item {
    background: var(--color-card-bg);
    padding: 22px 18px;
    border-radius: 3px;
    text-align: center;
    border-top: 2px solid var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--color-accent);
    transition: all 0.3s;
}

.alt-card:hover,
.guarantee-item:hover {
    box-shadow: var(--shadow-gold);
}

.alt-card i,
.guarantee-item i {
    font-size: 2.3rem;
    color: var(--color-accent);
    margin-bottom: 13px;
    display: block;
}

.alt-card h5,
.guarantee-item h5 {
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 0 0 9px;
    font-weight: 600;
}

.alt-card p,
.guarantee-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.warranty-box {
    background: rgba(198, 167, 94, 0.05);
    padding: 26px;
    border-radius: 3px;
    border-left: 2px solid var(--color-accent);
    margin: 28px 0;
}

.warranty-box h4 {
    color: var(--color-text-light);
    margin-top: 0;
}

.warranty-note {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 3px;
    margin-top: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    border-left: 2px solid #c0870a;
}

.ip-section {
    background: rgba(198, 167, 94, 0.04);
    padding: 22px;
    border-radius: 3px;
    margin: 18px 0;
    border-left: 2px solid var(--color-accent);
}

.ip-section h4 {
    margin-top: 0;
    color: var(--color-text-light);
}

.ip-section ul {
    margin: 13px 0 0;
    padding-left: 22px;
}

.ip-section li {
    margin-bottom: 9px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================================
   PRODUCT DETAIL — DARK
   ============================================================ */

.breadcrumb-container {
    background: var(--color-primary-light);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-nav a:hover {
    color: var(--color-accent);
}

.breadcrumb-nav .separator {
    color: #444;
    font-size: 0.78rem;
}

.breadcrumb-nav .current {
    color: var(--color-text-light);
    font-weight: 500;
}

.product-detail-section {
    padding: 56px 0;
    background: var(--color-primary-light);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.product-left-col {
    position: relative;
}

.main-product-image {
    position: relative;
    background: var(--color-card-bg);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-placeholder {
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-card-bg);
    color: #555;
}

.product-placeholder i {
    font-size: 5rem;
    margin-bottom: 13px;
    opacity: 0.4;
}

.product-placeholder p {
    font-size: 1.02rem;
    font-weight: 500;
}

.discount-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #c0392b;
    color: white;
    padding: 8px 15px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.88rem;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 8px 15px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 18px;
}

.info-card {
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.product-tabs-section {
    background: var(--color-card-bg);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--color-primary-dark);
}

.tab-btn {
    flex: 1;
    padding: 15px 18px;
    background: transparent;
    border: none;
    color: #666;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover {
    color: var(--color-accent);
    background: rgba(198, 167, 94, 0.04);
}

.tab-btn.active {
    color: var(--color-accent);
    background: var(--color-card-bg);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeInTab 0.35s ease;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.description-content {
    color: var(--color-text-muted);
    line-height: 1.82;
    font-size: 0.97rem;
}

.description-content h1,
.description-content h2,
.description-content h3 {
    color: var(--color-text-light);
    margin-top: 26px;
    margin-bottom: 13px;
}

.description-content p {
    margin-bottom: 13px;
}

.feature-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-items li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.feature-items li:last-child {
    border-bottom: none;
}

.feature-items i {
    color: var(--color-accent);
    font-size: 1rem;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.product-tag {
    background: rgba(198, 167, 94, 0.08);
    color: var(--color-text-muted);
    padding: 6px 15px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(198, 167, 94, 0.15);
    transition: all 0.3s ease;
}

.product-tag:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.reviews-section {
    max-width: 100%;
}

.reviews-summary {
    background: rgba(198, 167, 94, 0.05);
    padding: 26px;
    border-radius: 3px;
    margin-bottom: 26px;
    border: 1px solid rgba(198, 167, 94, 0.15);
}

.rating-score .score-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stars {
    margin: 9px 0;
    font-size: 1.35rem;
    color: var(--color-accent);
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    padding: 22px;
    margin-bottom: 13px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 1rem;
}

.review-stars {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-top: 4px;
}

.review-date {
    color: #555;
    font-size: 0.82rem;
}

.review-text {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.92rem;
}

.purchase-card-sticky {
    position: sticky;
    top: 88px;
    background: var(--color-card-bg);
    border-radius: 3px;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(198, 167, 94, 0.15);
    overflow: hidden;
}

.purchase-header {
    padding: 26px 26px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-title {
    font-size: 1.6rem;
    color: var(--color-text-light);
    margin-bottom: 11px;
    line-height: 1.3;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.product-subtitle {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.price-section {
    padding: 20px 26px;
    background: rgba(198, 167, 94, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.price-original {
    font-size: 1.3rem;
    color: #444;
    text-decoration: line-through;
}

.save-badge {
    background: rgba(39, 174, 96, 0.15);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 600;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.price-note i {
    color: var(--color-accent);
}

.action-buttons {
    padding: 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-add-cart:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 0 22px rgba(198, 167, 94, 0.4);
    transform: translateY(-2px);
    color: var(--color-primary-dark);
}

.btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 3px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--color-text-light);
}

.btn-buy-now:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.secure-payment-notice {
    padding: 12px 26px;
    background: rgba(39, 174, 96, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whats-included {
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.included-list i {
    color: var(--color-accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.product-meta {
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #555;
    font-size: 0.875rem;
    font-weight: 500;
}

.meta-label i {
    color: var(--color-accent);
    width: 16px;
    text-align: center;
}

.meta-value {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.875rem;
}

.trust-badges {
    padding: 20px 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    text-align: center;
    padding: 13px 9px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.trust-badge i {
    display: block;
    font-size: 1.6rem;
    color: var(--color-accent);
    margin-bottom: 7px;
}

.trust-badge span {
    display: block;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.share-section {
    padding: 20px 26px;
}

.share-title {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 13px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 9px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.features-highlights-section {
    padding: 80px 0;
    background: var(--color-primary-light);
}

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

.highlight-card {
    background: var(--color-card-bg);
    padding: 30px 22px;
    border-radius: 3px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent);
}

.highlight-icon {
    width: 68px;
    height: 68px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--color-accent);
    font-size: 1.85rem;
}

.highlight-card h3 {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 11px;
    font-weight: 700;
}

.highlight-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 0;
    background: var(--color-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDownFAQ 0.3s ease;
}

@keyframes slideDownFAQ {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 300px;
    }
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.faq-question i {
    color: var(--color-accent);
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h4 {
    color: var(--color-text-light);
    font-size: 1.02rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.faq-answer {
    display: none;
    margin-top: 13px;
    padding-left: 38px;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Column Alignment */
.footer-column.info-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-wrapper {
    margin: 0 auto 18px auto;
    display: inline-block;
}

.footer-description {
    text-align: center;
    margin-bottom: 22px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-icons {
    justify-content: center;
    margin-top: 4px;
    width: 100%;
    display: flex;
}

/* ============================================================
   RESPONSIVE — BLACK + GOLD
   ============================================================ */

@media (max-width: 992px) {
    .navbar-top {
        display: block !important;
        padding: 5px 0;
    }

    .navbar-top-content {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }

    .navbar-contact {
        justify-content: center;
        width: 100%;
        gap: 14px;
    }

    .contact-item {
        font-size: 0.78rem;
    }

    .navbar-right-group {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        margin-left: 0;
    }

    .navbar-social {
        display: flex;
        gap: 13px;
        justify-content: center;
    }

    .google-translate-container {
        display: none !important;
    }

    .navbar-menu {
        display: none !important;
    }

    .navbar-toggle {
        display: flex !important;
        margin-left: auto;
    }

    .home-hero {
        padding: 110px 0 72px;
        text-align: center;
        min-height: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 28px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "info info" "links services" "newsletter newsletter";
        gap: 26px;
    }

    .info-col {
        grid-area: info;
    }

    .links-col:nth-of-type(2) {
        grid-area: links;
    }

    .links-col:nth-of-type(3) {
        grid-area: services;
    }

    .newsletter-col {
        grid-area: newsletter;
    }

    .home-hero-image-wrapper,
    .hero-image-wrapper {
        margin-top: 36px;
        padding: 10px;
    }

    .home-hero-image-wrapper::before,
    .hero-image-wrapper::before {
        left: 18px;
    }

    .about-hero,
    .service-detail-hero {
        padding: 100px 0 56px;
        text-align: center;
    }

    .about-hero .hero-title,
    .service-detail-hero .hero-title {
        font-size: 2.4rem;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .purchase-card-sticky {
        position: static;
    }

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

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

    #mobile-translate-top {
        display: block;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    h3 {
        font-size: 1.45rem;
        line-height: 1.4;
    }

    h4 {
        font-size: 1.15rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-page-hero {
        padding: 110px 0 56px;
    }

    .legal-page-hero .hero-title {
        font-size: 2.3rem;
    }

    .legal-content {
        padding: 32px 24px;
    }

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

    .company-info-box {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .usage-grid,
    .contact-grid,
    .security-grid,
    .refund-stages,
    .refund-reasons,
    .alternatives-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .legal-cta-section h2 {
        font-size: 1.9rem;
    }

    .product-detail-section {
        padding: 32px 0;
    }

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

    .tabs-header {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tabs-content {
        padding: 20px 16px;
    }

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

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

    .feature-card-modern {
        padding: 20px 16px;
        text-align: center;
    }

    .feature-card-modern .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .consent-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .consent-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .whatsapp-float {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.95rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .legal-page-hero .hero-title {
        font-size: 1.9rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-content {
        padding: 22px 16px;
    }

    .content-section h2 {
        font-size: 1.32rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .content-section h2 .section-number {
        width: 36px;
        height: 36px;
        font-size: 0.97rem;
    }

    .mobile-aside-menu {
        max-width: 310px;
    }
}

@media (min-width: 992px) {
    #mobile-translate-top {
        display: none;
    }
}

@media print {

    .legal-page-hero,
    .legal-cta-section,
    .cta-section,
    .floating-widgets,
    .navbar-wrapper,
    #consent-banner {
        display: none;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
        background: white;
    }

    body {
        background: white;
        color: #111;
    }
}

/* ============================================================
   HOMEPAGE — BG-LIGHT SECTION OVERRIDES
   Override dark-theme colors for white-background sections
   ============================================================ */

/* bg-light utility */
.bg-light {
    background: #f8f9fa !important;
}

/* Section titles on white backgrounds */
.bg-light .section-title,
.bg-light h2,
.bg-light h3,
.consultation-section .section-title,
.consultation-section h2 {
    color: var(--color-text-dark) !important;
}

.bg-light .section-subtitle,
.consultation-section .section-subtitle {
    color: var(--color-accent) !important;
}

.bg-light p,
.bg-light .section-header p {
    color: #444 !important;
}

/* Trust Bar / Why We section */
.trust-bar {
    background: #f8f9fa;
}

.trust-bar .section-header p {
    color: #555;
}

/* Stats Band on white bg */
.home-stats-row {
    background: #f4f4f4 !important;
}

.stat-band-item i {
    color: var(--color-accent);
}

/* Blog cards on bg-light */
.bg-light .blog-card-modern {
    background: #fff;
    border: 1px solid #e8e8e8;
}

.bg-light .blog-card-modern .post-title a {
    color: var(--color-text-dark);
}

.bg-light .blog-card-modern .post-title a:hover {
    color: var(--color-accent-dark);
}

.bg-light .blog-card-modern .post-meta {
    color: #777;
}

.bg-light .blog-card-modern .read-more-link {
    color: var(--color-accent-dark);
}

.bg-light .blog-card-modern .read-more-link:hover {
    color: var(--color-text-dark);
}

/* Consultation section (bg-light override) */
.consultation-section {
    background: #f8f9fa !important;
}

.consult-features .cf-item {
    color: #333;
}

.consultation-form-card label {
    color: #555;
}

.consultation-form-card h3 {
    color: var(--color-text-dark) !important;
}

/* ── Footer Contact Mini ── */
.footer-contact-mini p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.87rem;
    margin-bottom: 8px;
    line-height: 1.55;
}

.footer-contact-mini p i {
    color: var(--color-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-mini a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-mini a:hover {
    color: var(--color-accent);
}

/* ── Floating WhatsApp ── */
.floating-widgets {
    position: fixed;
    bottom: 90px;
    right: 22px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    border: none;
}

.whatsapp-float {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover {
    background: #22b85a;
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.back-to-top {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-gold);
    position: fixed;
    bottom: 24px;
    right: 22px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
}

.tooltip-text {
    position: absolute;
    right: 62px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: 'Inter', sans-serif;
}

.widget-btn:hover .tooltip-text {
    opacity: 1;
}

/* ── Service Features List (inside service cards) ── */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.service-features-list li i {
    color: var(--color-accent);
    font-size: 0.75rem;
}

/* ── Testimonials background override ── */
.testimonials-grid .testimonial-card {
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials-grid .testimonial-rating i {
    color: var(--color-accent);
}

.testimonials-grid .testimonial-text {
    color: var(--color-text-muted);
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #0A0A0A, #111111);
    border-top: 1px solid rgba(198, 167, 94, 0.15);
    border-bottom: 1px solid rgba(198, 167, 94, 0.15);
    padding: 80px 0;
    text-align: center;
}

.cta-content .cta-icon {
    font-size: 3.2rem;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.cta-content h2 {
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.cta-content p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ── Blog Card Modern ── */
.blog-card-modern {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
}

.blog-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.blog-card-modern:hover .blog-thumb img {
    transform: scale(1.06);
}

.category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 700;
}

.blog-details {
    padding: 22px;
}

.post-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.12rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: var(--color-accent-dark);
}

.read-more-link {
    color: var(--color-accent-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

/* ── Mobile Menu Styles ── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1198;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-aside-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: 86%;
    max-width: 340px;
    height: 100vh;
    background: var(--color-primary-light);
    border-left: 1px solid rgba(198, 167, 94, 0.2);
    z-index: 1199;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-aside-menu.active {
    right: 0;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.mobile-close:hover {
    color: var(--color-accent);
}

.mobile-menu-list {
    list-style: none;
    padding: 12px 0;
    flex: 1;
}

.mobile-menu-list>li>a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    color: #ccc;
    font-size: 0.97rem;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 2px solid transparent;
}

.mobile-menu-list>li>a:hover {
    color: var(--color-accent);
    background: rgba(198, 167, 94, 0.04);
    border-left-color: var(--color-accent);
}

.mobile-menu-list>li>a i:first-child {
    width: 20px;
    text-align: center;
    color: var(--color-accent);
    font-size: 1rem;
}

.btn-cta-mobile {
    background: var(--color-accent) !important;
    color: var(--color-primary-dark) !important;
    border-radius: 3px;
    margin: 12px 22px !important;
    padding: 13px 22px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    justify-content: center;
    border-left: none !important;
}

.btn-cta-mobile:hover {
    background: var(--color-accent-hover) !important;
}

.mobile-dropdown .dropdown-toggle {
    cursor: pointer;
}

.mobile-dropdown .dropdown-toggle .fa-chevron-down,
.mobile-dropdown .dropdown-toggle .fa-chevron-up {
    margin-left: auto;
    font-size: 0.75rem;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 600px;
}

.mobile-submenu li a {
    display: block;
    padding: 9px 22px 9px 52px;
    color: #aaa;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.3s;
    border-left: none;
}

.mobile-submenu li a:hover {
    color: var(--color-accent);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.85rem;
    text-decoration: none;
}

.mobile-contact-item i {
    color: var(--color-accent);
    width: 18px;
    text-align: center;
}

.mobile-contact-item:hover {
    color: var(--color-accent);
}

.mobile-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.mobile-social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.mobile-logo-wrapper .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-logo-wrapper .logo-text {
    color: var(--color-text-light);
    font-weight: 700;
}

.mobile-translate-section {
    margin-top: 4px;
}

/* ============================================================
   DARK/LIGHT SECTION HELPERS
   Apply to sections based on background color
   ============================================================ */

/* Force white text on dark-background sections */
.dark-section .section-title,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--color-text-light) !important;
}

.dark-section .section-subtitle {
    color: var(--color-accent) !important;
}

.dark-section .section-header p,
.dark-section>.container>.section-header>p {
    color: var(--color-text-muted) !important;
}

.dark-section p {
    color: var(--color-text-muted);
}

/* Force dark text on light-background sections */
.light-section .section-title,
.light-section h2:not(.force-gold),
.light-section h3:not(.force-gold) {
    color: var(--color-text-dark) !important;
}

.light-section .section-subtitle {
    color: var(--color-accent) !important;
}

.light-section .section-header p {
    color: #444 !important;
}

/* CTA Section text overrides */
.cta-section h2 {
    color: var(--color-text-light) !important;
}

.cta-section p {
    color: #aaa !important;
}

/* Stats items - dark bg */
.stats-band .stat-band-item h3 {
    color: var(--color-text-dark) !important;
}

/* ============================================================
   ABOUT US PAGE — WHY GRID / MISSION-VISION CARDS
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.why-card {
    background: var(--color-card-bg);
    border-radius: 4px;
    padding: 30px 24px;
    border-top: 3px solid var(--color-accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.why-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   ABOUT US PAGE — TESTIMONIALS GRID
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

/* ============================================================
   ABOUT US PAGE — LAWYERS / TEAM GRID
   ============================================================ */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.lawyer-card {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lawyer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lawyer-photo {
    position: relative;
    overflow: hidden;
}

.lawyer-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s;
}

.lawyer-card:hover .lawyer-photo img {
    transform: scale(1.05);
}

.lawyer-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 14px 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.lawyer-card:hover .lawyer-socials {
    opacity: 1;
}

.lawyer-socials a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.3s;
}

.lawyer-socials a:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.lawyer-info {
    padding: 20px 18px;
}

.lawyer-info h3 {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    margin: 0 0 4px;
}

.lawyer-designation {
    color: var(--color-accent-dark);
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lawyer-spec {
    font-size: 0.83rem;
    margin: 0 0 10px;
    line-height: 1.5;
}

.lawyer-exp {
    display: inline-block;
    background: rgba(198, 167, 94, 0.1);
    color: var(--color-accent-dark);
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================================
   HOVER CARD EFFECT (global)
   ============================================================ */
.hover-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Focus state for form inputs */
.form-input:focus {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.12) !important;
    outline: none;
}

/* Blog read-more link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 10px;
    color: var(--color-accent);
}

/* ============================================================
   BLOG CARDS (consistent across blog.php, blog-details.php related section)
   ============================================================ */
.blog-card-modern {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.blog-card-modern:hover .blog-thumb img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-details {
    padding: 22px;
    background: #fff;
}

.post-meta {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.post-title {
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: var(--color-accent-dark);
}

/* ============================================================
   CONSULTATION FORM CARD (service-details, index)
   ============================================================ */
.consultation-form-card {
    background: var(--color-card-bg);
    border: 1px solid rgba(198, 167, 94, 0.15);
    border-radius: 4px;
    padding: 32px;
}

.consultation-form-card label {
    display: block;
    color: #aaa;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-form-card .form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #ddd;
    outline: none;
    transition: border-color 0.3s;
}

.consultation-form-card .form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.1);
}

/* ============================================================
   RESPONSIVE — ABOUT US / TEAM / BLOG GRIDS
   ============================================================ */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .lawyers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

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

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