/* ===================================================
   DULY DECORS — CUSTOM STYLESHEET
   Theme: Luxury · Minimal · Modern
=================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --gold:        #ea1307;
    --gold-light:  #c02b11;
    --gold-dark:   #ee523a;
    --beige:       #F4EFE6;
    --beige-dark:  #EDE4D4;
    --dark:        #1A1A2E;
    --dark-2:      #2D2D2D;
    --grey:        #6B6B6B;
    --white:       #FFFFFF;
    --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
    --shadow-md:   0 6px 24px rgba(0,0,0,0.11);
    --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
    --radius:      14px;
    --transition:  all 0.35s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
    font-weight: 700;
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--dark);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; color: #fff;
    letter-spacing: 2px;
}
.loader-brand span { color: var(--gold); }
.loader-bar {
    width: 160px; height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    animation: loaderAnim 1.2s ease-in-out infinite;
    border-radius: 2px;
}
@keyframes loaderAnim {
    0%   { width: 0%;   margin-left: 0; }
    50%  { width: 70%;  margin-left: 30%; }
    100% { width: 0%;   margin-left: 100%; }
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(26,26,46,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem; font-weight: 700;
    color: #fff; letter-spacing: 1px;
}
.nav-logo span { color: var(--gold); }
.nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 0.88rem; font-weight: 500;
    padding: 6px 0; position: relative;
    letter-spacing: 0.3px;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important; padding: 10px 26px !important;
    border-radius: 50px; font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: var(--dark);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: #fff;
}
.mobile-menu a:hover { color: var(--gold); transform: scale(1.05); }
.mobile-menu-close {
    position: absolute; top: 24px; right: 28px;
    color: rgba(255,255,255,0.7); font-size: 1.8rem; cursor: pointer;
}
.mobile-menu-close:hover { color: var(--gold); }

/* ===== SECTION HELPERS ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gold); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before {
    content: ''; display: inline-block;
    width: 28px; height: 2px; background: var(--gold);
}
.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--dark); margin-bottom: 16px;
}
.section-subtitle {
    font-size: 0.98rem; color: var(--grey);
    line-height: 1.85; max-width: 580px;
}
.divider-gold {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px; margin: 16px 0 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; padding: 14px 34px;
    border-radius: 50px; font-weight: 600; font-size: 0.93rem;
    letter-spacing: 0.4px; border: none; cursor: pointer;
    box-shadow: 0 4px 18px rgba(201,168,76,0.4);
    transition: var(--transition);
}
.btn-primary:hover {
    color: #fff; transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201,168,76,0.5);
}
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 13px 33px; border-radius: 50px;
    font-weight: 600; font-size: 0.93rem;
    border: 2px solid rgba(255,255,255,0.7); cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { background: #fff; color: var(--dark); transform: translateY(-3px); }
.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--dark);
    padding: 13px 33px; border-radius: 50px;
    font-weight: 600; font-size: 0.93rem;
    border: 2px solid var(--dark); cursor: pointer;
    transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--gold);
    padding: 13px 33px; border-radius: 50px;
    font-weight: 600; font-size: 0.93rem;
    border: 2px solid var(--gold); cursor: pointer;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold); color: #fff;
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

/* ===== HERO ===== */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center center;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 6s ease;
}
.hero-section.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,46,0.88) 0%,
        rgba(26,26,46,0.65) 55%,
        rgba(26,26,46,0.45) 100%
    );
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light); padding: 8px 22px;
    border-radius: 50px; font-size: 0.82rem; font-weight: 500;
    letter-spacing: 2px; margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    color: #fff; font-weight: 800; line-height: 1.15; margin-bottom: 22px;
}
.hero-title .accent { color: var(--gold); display: block; }
.hero-tags {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.hero-tag {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85); padding: 6px 18px;
    border-radius: 50px; font-size: 0.82rem; font-weight: 500;
    backdrop-filter: blur(6px);
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
    display: flex; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 36px; flex-wrap: wrap;
}
.hero-stat {
    padding: 0 36px 0 0;
    border-right: 1px solid rgba(255,255,255,0.12);
    margin-right: 36px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700;
    color: var(--gold); line-height: 1;
}
.hero-stat-lbl {
    font-size: 0.75rem; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 4px;
}
.hero-scroll-hint {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.72rem;
    letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-icon { font-size: 1.2rem; color: var(--gold); }

/* ===== ABOUT SECTION ===== */
.about-img-wrap {
    position: relative; padding: 24px 0 0 24px;
}
.about-img-wrap::before {
    content: ''; position: absolute;
    top: 0; left: 0;
    width: calc(100% - 24px); height: calc(100% - 24px);
    border: 3px solid var(--gold); border-radius: var(--radius);
    z-index: 0;
}
.about-img-wrap > img {
    position: relative; z-index: 1;
    border-radius: var(--radius);
    width: 100%; height: 520px; object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-experience-badge {
    position: absolute; bottom: -8px; right: -8px; z-index: 2;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; padding: 22px 26px;
    border-radius: var(--radius); text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.about-exp-lbl {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 1.5px; margin-top: 4px; opacity: 0.9;
}
.about-feature {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: var(--beige); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
    transition: var(--transition);
}
.about-feature:hover .about-feature-icon {
    background: var(--gold); color: #fff;
}

/* ===== SERVICES ===== */
.service-card {
    background: #fff; border-radius: var(--radius);
    padding: 44px 32px; text-align: center;
    border: 1px solid rgba(0,0,0,0.07);
    transition: var(--transition); position: relative;
    overflow: hidden; cursor: default;
}
.service-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg); border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
    width: 84px; height: 84px;
    background: var(--beige); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.1rem; color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--gold); color: #fff; transform: scale(1.08) rotate(-5deg);
}
.service-card h3 {
    font-size: 1.3rem; margin-bottom: 14px; color: var(--dark);
}
.service-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.8; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold); font-size: 0.87rem; font-weight: 600;
    margin-top: 20px; transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold-dark); }

/* ===== PROJECT CARDS ===== */
.project-card {
    border-radius: var(--radius); overflow: hidden;
    background: #fff; box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-img-wrap { position: relative; overflow: hidden; height: 250px; }
.project-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.project-card:hover .project-img-wrap img { transform: scale(1.09); }
.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; padding: 20px;
}
.project-card:hover .project-overlay { opacity: 1; }
.badge-completed {
    position: absolute; top: 14px; left: 14px;
    background: rgba(16,185,129,0.9); color: #fff;
    padding: 5px 14px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase;
}
.badge-ongoing {
    position: absolute; top: 14px; left: 14px;
    background: rgba(201,168,76,0.9); color: #fff;
    padding: 5px 14px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 1.2px;
    text-transform: uppercase;
}
.project-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.project-location {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: var(--grey); margin-bottom: 8px;
}
.project-title { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.project-desc { font-size: 0.87rem; color: var(--grey); line-height: 1.7; flex: 1; }
.project-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; margin-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== STATS COUNTER BAR ===== */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%);
    padding: 70px 0;
}
.stat-item {
    text-align: center; padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; font-weight: 700;
    color: var(--gold); line-height: 1; display: block;
}
.stat-lbl {
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 1.8px;
    margin-top: 8px; display: block;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 26px; border-radius: var(--radius);
    background: #fff; border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.why-icon {
    width: 58px; height: 58px; min-width: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.35rem;
}
.why-card h4 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.why-card p { font-size: 0.87rem; color: var(--grey); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #fff; border-radius: var(--radius);
    padding: 38px 32px; position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition); height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote {
    position: absolute; top: 18px; left: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem; color: var(--gold);
    opacity: 0.15; line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; }
.testimonial-text {
    color: var(--grey); font-style: italic;
    line-height: 1.85; margin-bottom: 26px; font-size: 0.92rem;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 54px; height: 54px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--gold);
}
.testimonial-name { font-weight: 600; font-size: 0.93rem; color: var(--dark); }
.testimonial-place { font-size: 0.78rem; color: var(--grey); }

/* Swiper override */
.swiper-pagination-bullet { background: var(--grey) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
}
.cta-section::after {
    content: ''; position: absolute;
    bottom: -100px; left: -60px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 70%);
}

/* ===== FOOTER ===== */
footer { background: #0D0D1A; }
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem; font-weight: 700; color: #fff;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.85; }
.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.88rem; color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-links a::before {
    content: '›'; color: var(--gold); font-size: 1rem;
}
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.87rem; color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-divider {
    height: 1px; background: rgba(255,255,255,0.07);
    margin: 36px 0;
}
.social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.95rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--gold); border-color: var(--gold);
    color: #fff; transform: translateY(-3px);
}

/* ===== CALL FLOAT ===== */
.call-float {
    position: fixed; bottom: 98px; right: 28px; z-index: 990;
    width: 58px; height: 58px; background: #1A1A2E;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.35rem;
    box-shadow: 0 6px 24px rgba(26,26,46,0.45);
    transition: var(--transition);
    border: 2px solid var(--gold);
}
.call-float:hover {
    background: var(--gold); color: #fff;
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 990;
    width: 58px; height: 58px; background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.55rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}
.whatsapp-float::before {
    content: ''; position: absolute;
    width: 100%; height: 100%; border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
    min-height: 420px;
    background: linear-gradient(150deg, var(--dark) 0%, #16213E 100%);
    display: flex; align-items: flex-end; padding-bottom: 64px;
    position: relative; overflow: hidden;
}
.page-hero-pattern {
    position: absolute; inset: 0; opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.83rem; color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.7rem; }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-tab {
    padding: 11px 30px; border-radius: 50px;
    border: 2px solid rgba(0,0,0,0.1);
    background: transparent; color: var(--grey);
    font-family: 'Poppins', sans-serif; font-size: 0.88rem;
    font-weight: 500; cursor: pointer; transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
    background: var(--gold); border-color: var(--gold);
    color: #fff; box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}

/* ===== CONTACT ===== */
.contact-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 26px; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-icon-wrap {
    width: 54px; height: 54px; min-width: 54px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; font-size: 0.85rem; font-weight: 500;
    color: var(--dark); margin-bottom: 8px;
}
.form-control {
    width: 100%; padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px; font-family: 'Poppins', sans-serif;
    font-size: 0.9rem; color: var(--dark); background: #fff;
    transition: var(--transition); outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: rgba(0,0,0,0.3); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ===== TEAM CARDS ===== */
.team-card {
    background: #fff; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.team-img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.team-body { padding: 24px; }
.team-name { font-size: 1.15rem; margin-bottom: 4px; }
.team-role {
    font-size: 0.82rem; color: var(--gold); font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.team-desc { font-size: 0.85rem; color: var(--grey); line-height: 1.7; }
.team-social { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.team-social a {
    width: 34px; height: 34px;
    background: var(--beige); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey); font-size: 0.9rem;
    transition: var(--transition);
}
.team-social a:hover { background: var(--gold); color: #fff; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 44px; }
.timeline::before {
    content: ''; position: absolute;
    left: 10px; top: 6px; bottom: 6px; width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.2));
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute; left: -38px; top: 4px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--gold); border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year {
    display: inline-block;
    background: var(--gold); color: #fff;
    padding: 4px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1px; margin-bottom: 10px;
}
.timeline-title { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.timeline-desc { font-size: 0.87rem; color: var(--grey); line-height: 1.75; }

/* ===== PROGRESS BARS ===== */
.progress-item { margin-bottom: 22px; }
.progress-header {
    display: flex; justify-content: space-between;
    font-size: 0.87rem; font-weight: 500;
    color: var(--dark); margin-bottom: 8px;
}
.progress-track {
    height: 8px; background: var(--beige);
    border-radius: 4px; overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 4px; width: 0;
    transition: width 1.5s ease;
}

/* ===== VALUES GRID ===== */
.value-card {
    padding: 32px 24px; border-radius: var(--radius);
    background: #fff; border: 1px solid rgba(0,0,0,0.06);
    text-align: center; transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.value-icon {
    width: 66px; height: 66px;
    background: var(--beige); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--gold);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--gold); color: #fff; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.95); z-index: 9999;
    align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw; max-height: 88vh;
    object-fit: contain; border-radius: 8px;
}
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    color: rgba(255,255,255,0.7); font-size: 2rem;
    cursor: pointer; transition: var(--transition); line-height: 1;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ===== NOTIFICATION TOAST ===== */
.toast {
    position: fixed; top: 24px; right: 24px; z-index: 9000;
    min-width: 280px; padding: 16px 24px;
    border-radius: 12px; color: #fff;
    font-size: 0.9rem; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: slideIn 0.4s ease; transition: opacity 0.3s ease;
}
.toast.success { background: #10B981; }
.toast.error   { background: #EF4444; }
@keyframes slideIn {
    from { transform: translateX(110%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-img-wrap > img { height: 420px; }
}
@media (max-width: 768px) {
    .hero-stat { padding: 0 20px 0 0; margin-right: 20px; }
    .hero-stat-num { font-size: 1.8rem; }
    .about-img-wrap::before { display: none; }
    .about-img-wrap { padding: 0; }
    .about-img-wrap > img { height: 340px; }
    .about-experience-badge { right: 12px; bottom: 12px; }
    .stat-item {
        border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-bottom: none; }
    .page-hero { min-height: 320px; padding-bottom: 48px; }
}
@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .hero-stats { gap: 12px; }
}

/* ===== MISC UTILITIES ===== */
.bg-beige { background-color: var(--beige); }
.bg-beige-dark { background-color: var(--beige-dark); }
.text-gold { color: var(--gold); }
.border-gold { border-color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
