/* =========================================================
   LORDS GROUP - Premium Real Estate Theme
   ========================================================= */

:root {
    --primary: #b8860b;
    --gold: #d4af37;
    --gold-light: #e6c65c;
    --gold-dark: #9a7410;
    --black: #080808;
    --dark: #111111;
    --dark-2: #181818;
    --dark-3: #1d1d1d;
    --white: #ffffff;
    --light: #f8f8f8;
    --light-2: #f2f2f2;
    --gray: #777777;
    --gray-light: #eeeeee;
    --border: #e8e8e8;
    --success: #25d366;
    --shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 18px 50px rgba(0, 0, 0, 0.16);
    --radius: 14px;
    --radius-sm: 9px;
    --transition: all 0.35s ease;
    --font-heading: "Playfair Display", serif;
    --font-body: "Poppins", sans-serif;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: 92%;
    max-width: 1350px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 9px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.top-bar i {
    color: var(--gold);
    margin-right: 6px;
}

.top-bar a {
    color: #ddd;
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar .top-social {
    color: #bbb;
}

.top-bar .top-social:hover {
    color: var(--gold);
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3px 4px;
}

.lang-link {
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #ccc;
}

.lang-link:hover {
    color: var(--gold);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
}

.site-header .navbar {
    width: 100%;
    padding: 13px 0;
    background: transparent;
}

.site-header .navbar-brand {
    padding: 0;
    margin-right: 30px;
}

.site-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    max-height: 62px;
}

.site-header .navbar-nav {
    gap: 2px;
}

.site-header .nav-link {
    position: relative;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 13px !important;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: var(--transition);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--primary);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    width: calc(100% - 26px);
}

.site-header .navbar-toggler {
    border: 1px solid var(--border);
    padding: 8px 10px;
    box-shadow: none !important;
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

/* =========================================================
   NAV BUTTONS
   ========================================================= */

.admin-login-btn,
.whatsapp-nav-btn {
    border-radius: 30px !important;
    padding: 9px 17px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.admin-login-btn {
    border: 1px solid var(--gold) !important;
    color: var(--primary) !important;
    background: transparent;
}

.admin-login-btn:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
}

.whatsapp-nav-btn {
    border: 1px solid var(--success) !important;
    background: var(--success) !important;
    color: #fff !important;
}

.whatsapp-nav-btn:hover {
    background: #1fb957 !important;
    border-color: #1fb957 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35)
        ),
        url("../images/hero.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
}

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

.hero-content {
    max-width: 760px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 18px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(38px, 5.2vw, 66px);
    line-height: 1.12;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--gold);
    position: relative;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 8px;
    background: rgba(212, 175, 55, 0.25);
    z-index: -1;
}

.hero p {
    max-width: 640px;
    margin-bottom: 32px;
    color: #eee;
    font-size: 17px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    flex-wrap: wrap;
}

.hero-stat h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-stat span {
    color: #ccc;
    font-size: 13px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary,
.btn-outline,
.btn-gold,
.btn-dark,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary,
.btn-gold {
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #1a1400;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover,
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--black);
    color: #fff;
}

.btn-dark:hover {
    background: var(--dark-3);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--success);
    color: #fff !important;
}

.btn-whatsapp:hover {
    background: #1fb957;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}

.btn-sm {
    min-height: 42px;
    padding: 10px 22px;
    font-size: 13px;
}

/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 96px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-dark h2 {
    color: #fff;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title h2 {
    margin-bottom: 16px;
    color: #111;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    font-weight: 800;
}

.section-dark .section-title h2 {
    color: #fff;
}

.section-title h2 span {
    color: var(--gold);
    font-style: italic;
}

.section-title p {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
}

.section-dark .section-title p {
    color: #b5b5b5;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.section-head .section-title {
    margin: 0;
    text-align: left;
    max-width: 600px;
}

.section-head .subtitle {
    margin-bottom: 10px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image::before {
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    width: 120px;
    height: 120px;
    border-left: 3px solid var(--gold);
    border-top: 3px solid var(--gold);
    border-radius: 6px;
    z-index: 1;
}

.about-image::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 120px;
    height: 120px;
    border-right: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    border-radius: 6px;
    z-index: 1;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--black);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius);
    padding: 20px 26px;
    text-align: center;
    box-shadow: var(--shadow-hover);
    z-index: 3;
}

.about-experience h3 {
    color: var(--gold);
    font-size: 34px;
    font-family: var(--font-body);
    font-weight: 800;
}

.about-experience span {
    font-size: 13px;
    color: #ccc;
}

.about-content h2 {
    margin-bottom: 20px;
    color: #111;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.about-content h2 span {
    color: var(--gold);
    font-style: italic;
}

.about-content .lead-text {
    margin-bottom: 16px;
    color: #444;
    font-size: 16px;
}

.about-content p {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 26px 0 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.about-features li i {
    color: var(--gold);
    font-size: 16px;
}

/* =========================================================
   COUNTERS / STATS
   ========================================================= */

.stats-section {
    background:
        linear-gradient(rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.92)),
        url("../images/hero.jpg") center / cover fixed no-repeat;
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    text-align: center;
}

.stat-box .stat-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 24px;
}

.stat-box h3 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.stat-box h3 span {
    color: var(--gold);
}

.stat-box p {
    color: #ccc;
    font-size: 14px;
    margin-top: 6px;
}

/* =========================================================
   PROJECTS
   ========================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.5);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-card .project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 45%);
    opacity: 0.6;
    transition: var(--transition);
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.92);
    color: #1a1400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.project-status.available {
    background: rgba(37, 211, 102, 0.85);
}

.project-status.ongoing {
    background: rgba(212, 175, 55, 0.85);
}

.project-status.completed {
    background: rgba(70, 130, 255, 0.85);
}

.project-status.sold-out {
    background: rgba(220, 53, 69, 0.85);
}

.project-content {
    padding: 26px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    margin-bottom: 10px;
    color: #111;
    font-size: 22px;
    font-weight: 700;
}

.project-content h3 a:hover {
    color: var(--primary);
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    color: #777;
    font-size: 13.5px;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.project-card .project-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card .project-link:hover {
    gap: 13px;
    color: var(--gold-dark);
}

/* =========================================================
   PROJECT DETAILS
   ========================================================= */

.project-hero {
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35)),
        url("../images/hero.jpg") center / cover no-repeat;
    color: #fff;
    padding-bottom: 60px;
    position: relative;
}

.project-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4.5vw, 52px);
    margin-bottom: 8px;
}

.project-hero p {
    color: #ddd;
    font-size: 15px;
}

.project-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.project-gallery-main img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 480px;
    object-fit: cover;
}

.project-info-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.project-info-box-header {
    background: var(--black);
    color: #fff;
    padding: 18px 24px;
}

.project-info-box-header h3 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
}

.project-info-list {
    padding: 10px 24px;
}

.project-info-list li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}

.project-info-list li:last-child {
    border-bottom: 0;
}

.project-info-list span {
    color: #999;
}

.project-info-list strong {
    color: #111;
    text-align: right;
}

.project-info-actions {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-info-actions .btn {
    width: 100%;
}

.project-body h2 {
    font-size: 28px;
    margin: 34px 0 16px;
    color: #111;
}

.project-body h2:first-child {
    margin-top: 0;
}

.project-body h2 span {
    color: var(--gold);
}

.project-body p {
    color: #555;
    line-height: 1.95;
    margin-bottom: 14px;
}

.project-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.project-body ul li {
    padding: 6px 0 6px 26px;
    position: relative;
    color: #555;
}

.project-body ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

.project-body img {
    border-radius: var(--radius);
    margin: 10px 0 20px;
}

.project-body iframe {
    width: 100%;
    border: 0;
    border-radius: var(--radius);
    min-height: 320px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    position: relative;
    padding: 42px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 36px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition);
}

.service-box:hover .service-icon {
    background: var(--gold);
    color: #1a1400;
    transform: rotateY(180deg);
}

.service-box h3 {
    margin-bottom: 12px;
    color: #111;
    font-size: 21px;
    font-weight: 700;
}

.service-box p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
   WHY CHOOSE / FEATURES
   ========================================================= */

.feature-box {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-box .feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 24px;
}

.feature-box h4 {
    color: #111;
    font-size: 18px;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 700;
}

.feature-box p {
    color: #777;
    font-size: 13.5px;
    margin: 0;
}

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

/* =========================================================
   LEADERSHIP / TEAM
   ========================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-card-link {
    display: block;
    text-decoration: none;
}

.team-card-link:hover {
    text-decoration: none;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 50%);
}

.team-card-social {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-card-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-card-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1400;
    font-size: 15px;
}

.team-card-social a:hover {
    background: #fff;
}

.team-content {
    padding: 26px 22px;
}

.team-content h3 {
    color: #111;
    font-size: 23px;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-content .team-role {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.team-content .team-message {
    color: #777;
    font-size: 14px;
    margin-top: 14px;
    line-height: 1.85;
}

/* =========================================================
   LEADERSHIP MESSAGE (founder/ceo pages)
   ========================================================= */

.leader-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.leader-photo {
    position: relative;
}

.leader-photo img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.leader-photo::before {
    content: "";
    position: absolute;
    left: -16px;
    top: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

.leader-content .leader-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.leader-content h1 {
    font-size: clamp(32px, 4vw, 46px);
    color: #111;
    margin-bottom: 6px;
    font-weight: 800;
}

.leader-content .leader-role {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.leader-content .leader-message {
    color: #555;
    font-size: 15.5px;
    line-height: 2;
    white-space: pre-line;
}

.leader-content .leader-message p {
    margin-bottom: 16px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    right: 26px;
    font-family: var(--font-heading);
    font-size: 90px;
    line-height: 1;
    color: rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-card p {
    color: #555;
    font-size: 14.5px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-user h5 {
    font-family: var(--font-body);
    font-size: 16px;
    margin: 0;
    color: #111;
}

.testimonial-user span {
    color: var(--gray);
    font-size: 13px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.09);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item .gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1400;
    font-size: 18px;
    opacity: 0;
    z-index: 3;
    transition: var(--transition);
}

.gallery-item:hover::after,
.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.gallery-item:hover .gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 92%;
    max-height: 86vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    z-index: 2;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: #1a1400;
}

/* =========================================================
   BLOG
   ========================================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.07);
}

.blog-card-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    margin-bottom: 10px;
    color: #111;
    font-size: 20px;
    font-weight: 700;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    flex: 1;
}

.blog-card .project-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card .project-link:hover {
    gap: 13px;
    color: var(--gold-dark);
}

/* Blog detail */

.blog-detail {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 34px;
    box-shadow: var(--shadow);
}

.blog-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-detail h1 {
    font-size: clamp(28px, 4vw, 42px);
    color: #111;
    margin-bottom: 14px;
    font-weight: 800;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.blog-detail-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.blog-detail .blog-content {
    color: #555;
    font-size: 16px;
    line-height: 2;
}

.blog-detail .blog-content p {
    margin-bottom: 18px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-item i {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 18px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-item h4 {
    margin-bottom: 4px;
    color: #111;
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 700;
}

.contact-item p,
.contact-item a {
    color: #777;
    font-size: 14px;
    word-break: break-word;
}

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

.contact-form .form-control,
.contact-form .form-select {
    min-height: 52px;
    border: 1px solid #ddd;
    border-radius: 9px;
    box-shadow: none;
    padding: 12px 16px;
    background: #fafafa;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
    background: #fff;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 7px;
}

/* Map */

.map-section iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.6);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 26px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    font-family: var(--font-body);
}

.faq-question .faq-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--gold);
    color: #1a1400;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 26px 22px;
    color: #666;
    font-size: 14.5px;
    line-height: 1.9;
}

/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    min-height: 46vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url("../images/hero.jpg") center / cover no-repeat;
    color: #fff;
    text-align: center;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.page-hero .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 12px;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 800;
}

.page-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.page-hero p {
    color: #ddd;
    font-size: 15.5px;
    max-width: 620px;
    margin: 0 auto;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: #ccc;
    font-size: 13px;
}

.breadcrumb-custom a {
    color: var(--gold);
}

.breadcrumb-custom a:hover {
    color: #fff;
}

/* =========================================================
   PROJECT FILTER
   ========================================================= */

.project-filter {
    padding: 26px;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.project-filter form {
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-filter input,
.project-filter select {
    width: 100%;
    min-height: 50px;
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 9px;
    background: #fafafa;
    color: #333;
    outline: none;
    transition: var(--transition);
}

.project-filter input:focus,
.project-filter select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
    background: #fff;
}

.project-filter button {
    min-height: 50px;
    padding: 12px 28px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #1a1400;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding: 90px 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
        url("../images/hero.jpg") center / cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 340px;
    height: 340px;
    border: 3px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-content .subtitle {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 10px;
    font-weight: 800;
}

.cta-content h2 span {
    color: var(--gold);
}

.cta-content p {
    margin: 0;
    color: #ccc;
    font-size: 15px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #080808;
    color: #fff;
    position: relative;
}

.site-footer .container {
    padding-top: 76px;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    max-height: 68px;
    object-fit: contain;
}

.footer-description {
    max-width: 420px;
    margin-bottom: 22px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.9;
}

.footer-title {
    position: relative;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 10px;
    font-family: var(--font-body);
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    color: #aaa;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    font-size: 11px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 50%;
    color: #bbb;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #1a1400;
    transform: translateY(-3px);
}

.footer-contact {
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 16px;
    color: #aaa;
    font-size: 13.5px;
}

.footer-contact i {
    width: 20px;
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a {
    color: #aaa;
}

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

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid #252525;
}

.footer-bottom p {
    margin: 0;
    color: #777;
    font-size: 13px;
}

.footer-bottom a {
    color: #777;
    font-size: 13px;
}

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

.footer-divider {
    margin: 0 10px;
    color: #444;
}

.footer-admin-link {
    color: var(--gold) !important;
    font-weight: 600;
}

.footer-admin-link:hover {
    color: #fff !important;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--success);
    color: #fff !important;
    font-size: 30px;
    z-index: 9000;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    color: #fff !important;
    transform: scale(1.1);
    background: #1fb957;
}

/* =========================================================
   CHATBOT
   ========================================================= */

.chatbot {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 9500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.08);
}

.chat-toggle .chat-toggle-close {
    display: none;
    position: absolute;
}

.chat-toggle.active .chat-toggle-close {
    display: inline-block;
    font-size: 24px;
}

.chat-toggle.active > .fa-headset {
    display: none;
}

.chat-box {
    position: fixed;
    right: 25px;
    bottom: 170px;
    width: 360px;
    max-width: calc(100vw - 30px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid var(--border);
    animation: chatIn 0.3s ease;
}

.chat-box.show {
    display: flex;
}

@keyframes chatIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--dark), var(--black));
    color: #fff;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-header strong {
    font-size: 14px;
    display: block;
    color: #fff;
    font-family: var(--font-body);
}

.chat-header small {
    color: #bbb;
    font-size: 11.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chat-close {
    background: none;
    border: none;
    color: #bbb;
    font-size: 20px;
}

.chat-close:hover {
    color: var(--gold);
}

.chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 16px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bot-msg,
.user-msg {
    max-width: 82%;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.6;
    word-wrap: break-word;
}

.bot-msg {
    background: #fff;
    color: #333;
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.bot-msg a {
    color: var(--primary);
    font-weight: 600;
}

.user-msg {
    background: var(--gold);
    color: #1a1400;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    font-weight: 500;
}

.chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 10px 14px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.chat-quick {
    padding: 7px 13px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.chat-quick:hover {
    background: var(--gold);
    color: #1a1400;
}

.chat-input-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: #fff;
}

.chat-input-row input {
    flex: 1;
    min-height: 42px;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 9px 16px;
    outline: none;
    font-size: 13.5px;
    background: #fafafa;
}

.chat-input-row input:focus {
    border-color: var(--gold);
}

.chat-input-row button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #1a1400;
    font-size: 15px;
    flex: 0 0 42px;
    transition: var(--transition);
}

.chat-input-row button:hover {
    background: var(--gold-dark);
    color: #fff;
}

/* =========================================================
   ALERTS
   ========================================================= */

.alert {
    border-radius: 10px;
}

.alert-success {
    background: #e9f9ef;
    border: 1px solid #bfe8cf;
    color: #155724;
}

.alert-danger {
    background: #fdecec;
    border: 1px solid #f3c1c1;
    color: #721c24;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 9px;
    margin-bottom: 22px;
    font-size: 14px;
}

.form-alert.success {
    background: #e9f9ef;
    border: 1px solid #bfe8cf;
    color: #155724;
}

.form-alert.error {
    background: #fdecec;
    border: 1px solid #f3c1c1;
    color: #721c24;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.empty-state {
    padding: 64px 24px;
    text-align: center;
    background: #fafafa;
    border: 1px dashed #ddd;
    border-radius: var(--radius);
}

.empty-state i {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 46px;
}

.empty-state h3 {
    margin-bottom: 8px;
    color: #333;
}

.empty-state p {
    margin: 0 0 18px;
    color: #888;
}

/* =========================================================
   404
   ========================================================= */

.error-page {
    text-align: center;
    padding: 110px 0;
}

.error-page .error-code {
    font-size: clamp(90px, 16vw, 180px);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-background-clip: text;
    background-image: linear-gradient(135deg, var(--gold), var(--gold-dark));
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.error-page h1 {
    font-size: clamp(26px, 4vw, 40px);
    color: #111;
    margin-bottom: 14px;
}

.error-page p {
    color: var(--gray);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 30px;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 45px;
}

.pagination-custom a,
.pagination-custom span {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    transition: var(--transition);
}

.pagination-custom a:hover,
.pagination-custom .current {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1400;
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 26px;
    color: #111;
    margin: 34px 0 14px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h2 span {
    color: var(--gold);
}

.legal-content p {
    color: #555;
    line-height: 1.95;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: none;
    margin: 0 0 18px;
}

.legal-content ul li {
    padding: 7px 0 7px 28px;
    position: relative;
    color: #555;
}

.legal-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
