/* =============================================
   DAGGER UNIFORMS - Professional Multi-Page Styles
   Color Palette: #1c3d2e, #3d5e4c, #9b6b43, #0f7b6c
   ============================================= */

:root {
    --green-dark: #1c3d2e;
    --green-mid: #3d5e4c;
    --green-footer: #14291f;
    --bronze: #9b6b43;
    --bronze-hover: #7a5333;
    --tan: #c9b39a;
    --tan-light: #d8c1a9;
    --teal: #0f7b6c;
    --sage: #6b8e75;
    --warm-brown: #a67c52;
    --white: #fff;
    --off-white: #f8f6f2;
    --gray-light: #f7f7f7;
    --text-dark: #222;
    --text-muted: #666;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(28, 61, 46, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    transition: padding 0.3s;
}

header.scrolled {
    padding: 10px 5%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-link img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    transition: transform 0.3s;
}

.logo-link:hover img {
    transform: scale(1.08);
}

.logo-link h2 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--bronze);
    background: rgba(255, 255, 255, 0.08);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--bronze);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== PAGE HERO BANNER ========== */
.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/Images/welcome.png') center/cover no-repeat;
    opacity: 0.15;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 107, 67, 0.2), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 0.8s ease forwards;
}

.page-hero .breadcrumb {
    font-size: 13px;
    color: var(--tan);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.page-hero .breadcrumb a {
    color: var(--tan);
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero h1 {
    font-size: 44px;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-hero h1 span {
    color: var(--bronze);
}

.page-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SECTIONS ========== */
section {
    padding: 70px 5%;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--bronze);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.title {
    text-align: center;
    font-size: 36px;
    color: var(--green-dark);
    margin-bottom: 16px;
    font-weight: 800;
}

.title span {
    color: var(--bronze);
}

.section-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: var(--bronze);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--bronze-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 107, 67, 0.35);
}

.btn.secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn.secondary:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-3px);
}

.btn.outline {
    border: 2px solid var(--bronze);
    color: var(--bronze);
    background: transparent;
}

.btn.outline:hover {
    background: var(--bronze);
    color: var(--white);
    transform: translateY(-3px);
}

.btn.teal {
    background: linear-gradient(135deg, var(--teal), var(--green-dark));
    color: var(--white);
}

.btn.teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 123, 108, 0.35);
}

/* ========== HOME HERO ========== */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    background: url('/Images/welcome.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
    animation: zoomBg 18s ease-in-out infinite alternate;
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(28, 61, 46, 0.88), rgba(61, 94, 76, 0.78));
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--white);
}

.hero-text .brand {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--tan);
    margin-bottom: 14px;
    text-transform: uppercase;
    animation: fadeDown 1s ease forwards;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 800;
    animation: fadeUp 1.2s ease forwards;
}

.hero-text h1 span {
    color: var(--bronze);
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeUp 1.4s ease forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1.6s ease forwards;
}

.hero-stats-float {
    position: absolute;
    right: 5%;
    bottom: 60px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 22px;
    border-radius: 16px;
    text-align: center;
    animation: fadeUp 1.8s ease forwards;
}

.hero-stat-box h3 {
    font-size: 28px;
    color: var(--bronze);
    font-weight: 800;
}

.hero-stat-box p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* ========== STATS BAR ========== */
.stats {
    background: linear-gradient(90deg, var(--green-dark), var(--green-mid));
    color: var(--white);
    padding: 40px 5%;
}

.stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.stats h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bronze);
}

.stats p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-top: 6px;
}

/* ========== CARDS ========== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--bronze);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -100%;
    left: -100%;
    background: linear-gradient(120deg, transparent, rgba(155, 107, 67, 0.2), transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    top: 100%;
    left: 100%;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--off-white), #eef4ef);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.card:hover .card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.card h4 {
    font-size: 18px;
    color: var(--green-dark);
    margin-bottom: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    transition: 0.3s;
}

.card:hover h4,
.card:hover p {
    color: var(--white);
}

.card .card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bronze);
    text-decoration: none;
    transition: 0.3s;
}

.card:hover .card-link {
    color: var(--tan);
}

/* ========== FEATURE STRIP ========== */
.strip {
    background: var(--gray-light);
    padding: 40px 5%;
}

.strip-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.strip-badge {
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    transition: transform 0.3s;
}

.strip-badge:hover {
    transform: translateY(-4px) scale(1.03);
}

/* ========== ABOUT GRID ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s;
}

.about-grid img:hover {
    transform: scale(1.03);
}

.about-content p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-content strong {
    color: var(--green-dark);
}

/* ========== VALUES GRID ========== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--off-white);
    padding: 32px 24px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--bronze);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.value-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 17px;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(var(--bronze), var(--green-mid));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--bronze);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--bronze);
}

.timeline-item h4 {
    font-size: 17px;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CATEGORY DETAIL ========== */
.category-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--off-white);
    border-radius: 24px;
}

.category-detail:nth-child(even) {
    direction: rtl;
}

.category-detail:nth-child(even) > * {
    direction: ltr;
}

.category-detail img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-detail h3 {
    font-size: 26px;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.category-detail h3 span {
    color: var(--bronze);
}

.category-detail p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.product-tags span {
    background: var(--green-mid);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ========== GALLERY ========== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid var(--green-dark);
    background: transparent;
    color: var(--green-dark);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-dark);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(28, 61, 46, 0.85));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

/* Gallery Slider */
.gallery-slider-wrap {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

#imgSlider {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

#imgSlider img {
    height: 420px;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    padding: 14px 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    transition: all 0.3s;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--bronze);
    color: var(--white);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}

/* ========== CLIENTS ========== */
.elite-client-zone {
    background: radial-gradient(circle at top right, rgba(155, 107, 67, 0.12), transparent 30%),
                radial-gradient(circle at bottom left, rgba(28, 61, 46, 0.1), transparent 25%),
                linear-gradient(135deg, var(--off-white), var(--white));
}

.elite-client-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.elite-client-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.45s;
    position: relative;
    overflow: hidden;
}

.elite-client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.elite-logo-circle {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white), #f1ece7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 6px rgba(155, 107, 67, 0.08);
}

.elite-logo-circle img {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
    transition: transform 0.4s;
}

.elite-client-card:hover img {
    transform: scale(1.1);
}

.elite-client-card h3 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--green-dark);
    font-weight: 700;
}

.elite-client-card .location {
    font-size: 12px;
    color: var(--bronze);
    margin-top: 8px;
}

/* Reviews */
.review-profile-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-review {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.4s;
}

.profile-review:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.profile-review img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.profile-content {
    padding: 22px 18px;
}

.profile-content h3 {
    font-size: 16px;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.profile-content .role {
    font-size: 12px;
    color: var(--bronze);
    margin-bottom: 12px;
}

.profile-content p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
}

.stars {
    margin-top: 12px;
    color: var(--teal);
    letter-spacing: 2px;
    font-size: 14px;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-info-card {
    background: var(--off-white);
    padding: 28px;
    border-radius: 18px;
    border-left: 4px solid var(--bronze);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-info-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-info-card h4 {
    font-size: 17px;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--bronze);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--bronze);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    padding: 60px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(155, 107, 67, 0.15);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.cta-banner h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.cta-banner h2 span {
    color: var(--bronze);
}

.cta-banner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    position: relative;
}

.cta-banner .btn {
    position: relative;
}

/* ========== PREVIEW SECTIONS (Home) ========== */
.preview-section {
    background: var(--off-white);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.preview-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.preview-card-content {
    padding: 24px;
}

.preview-card-content h4 {
    font-size: 18px;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.preview-card-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bronze), var(--warm-brown));
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 18px;
}

.process-step h4 {
    font-size: 16px;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Vision Box */
.vision-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-card {
    padding: 36px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.vision-card.light {
    background: linear-gradient(135deg, var(--off-white), #eef4ef);
    border-left: 6px solid var(--bronze);
}

.vision-card.dark {
    background: var(--green-dark);
    color: var(--white);
}

.vision-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
}

.vision-card.light h4 {
    color: var(--green-dark);
}

.vision-card p {
    font-size: 14px;
    line-height: 1.8;
}

.vision-card.light p {
    color: var(--text-muted);
}

.vision-card.dark p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========== FOOTER ========== */
footer {
    background: var(--green-footer);
    color: var(--white);
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 5% 40px;
}

.footer-brand img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--bronze);
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--bronze);
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 5%;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== FLOATING BUTTON ========== */
.floating-enquire {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--teal), var(--green-dark));
    color: var(--white);
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
    animation: pulseFloat 3s infinite ease-in-out;
}

.floating-enquire::before {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    top: -120%;
    left: -120%;
    transform: rotate(25deg);
    animation: shineMove 4s linear infinite;
}

.floating-enquire:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.float-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    animation: ring 2s infinite;
}

.float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.float-text small {
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.float-text span {
    font-size: 14px;
    font-weight: 700;
}

/* ========== ANIMATIONS ========== */
.fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomBg {
    from { background-size: 100%; }
    to { background-size: 110%; }
}

@keyframes pulseFloat {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-6px); }
}

@keyframes shineMove {
    0% { top: -120%; left: -120%; }
    100% { top: 120%; left: 120%; }
}

@keyframes ring {
    0%, 50%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-12deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-8deg); }
}

@keyframes floaty {
    50% { transform: translateY(-8px); }
}

@keyframes floaty2 {
    50% { transform: translateY(8px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .elite-client-wall,
    .review-profile-wrap {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .preview-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats-float {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    nav.open {
        right: 0;
    }

    nav a {
        font-size: 16px;
        padding: 14px 16px;
        width: 100%;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .about-grid,
    .category-detail,
    .contact-grid,
    .vision-box {
        grid-template-columns: 1fr;
    }

    .category-detail:nth-child(even) {
        direction: ltr;
    }

    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .elite-client-wall,
    .review-profile-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 28px;
    }

    .floating-enquire {
        right: 12px;
        padding: 12px 14px;
    }

    .hero {
        animation: none;
    }
}

@media (max-width: 480px) {
    .stats-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .elite-client-wall {
        grid-template-columns: 1fr;
    }
}
