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

:root {
    --primary: #d0a95c;
    --primary-dark: #b78f43;
    --dark: #0f1720;
    --dark-2: #17212b;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f4f6f9;
    --white: #ffffff;
    --success-bg: #e7f8ed;
    --success-text: #166534;
    --success-border: #b7ebc6;
    --error-bg: #fdecec;
    --error-text: #991b1b;
    --error-border: #f5c2c2;
    --shadow: 0 10px 30px rgba(15, 23, 32, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(90%, 1180px);
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, p, a, span, li {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    position: relative;
}

.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 56px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.main-nav a {
    color: #222;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
    position: relative;
    transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #c89b3c;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #c89b3c;
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #222;
    cursor: pointer;
    line-height: 1;
}

/* =========================
   HERO / SLIDER
========================= */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
}

section.hero-slider {
    padding: 0 !important;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide picture,
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.50) 0%,
        rgba(0, 0, 0, 0.24) 45%,
        rgba(0, 0, 0, 0.08) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-buttons a {
    min-width: 170px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 32, 0.55);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 5;
}

.slider-btn:hover {
    background: rgba(15, 23, 32, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
}

/* =========================
   BUTTONS
========================= */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #111;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: #fff;
    color: #111;
}

/* =========================
   GENERAL SECTIONS
========================= */
.section {
    padding: clamp(70px, 8vw, 95px) 0;
}

.light-bg {
    background: #f7f7f7;
}

.section-head {
    margin-bottom: 45px;
}

.section-head span {
    display: inline-block;
    color: #b38a3d;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 13px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.25;
    max-width: 760px;
}

.center {
    text-align: center;
}

.center h2 {
    margin: 0 auto;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 34px rgba(15, 23, 32, 0.08);
    overflow-wrap: break-word;
}

.highlight-box ul,
.card ul {
    padding-left: 20px;
    margin-top: 12px;
}

.highlight-box li,
.card li {
    margin-bottom: 10px;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: #b38a3d;
    font-weight: 700;
}

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

/* =========================
   SERVICES / PREMIUM CARDS
========================= */
.service-box {
    text-align: center;
}

.service-card h3,
.service-box h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.premium-service-card,
.premium-project-card,
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-service-card:hover,
.premium-project-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 32, 0.14);
}

.service-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.service-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 18px;
}

.service-badge-icon {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.service-icon-wrap {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(208, 169, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b78f43;
}

.service-svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #b78f43;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-badge-icon .service-svg {
    width: 26px;
    height: 26px;
    stroke: #111;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon-wrap .service-svg {
    width: 42px;
    height: 42px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon {
    font-size: 30px;
    line-height: 1;
}

/* =========================
   STATS
========================= */
.stats-section {
    background: #111822;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box h3 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #f1f1f1;
}

.stats-icon-wrap {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(208, 169, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #d0a95c;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================
   CTA / PAGE BANNER
========================= */
.cta-section {
    background: linear-gradient(135deg, #0f1720, #1b2733);
    color: #fff;
    text-align: center;
}

.cta-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 10px 0;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 14px;
    color: #fff;
}

.cta-box p {
    margin-bottom: 24px;
    color: #d6d6d6;
    font-size: 17px;
    line-height: 1.7;
}

.page-banner {
    background: linear-gradient(135deg, #101720, #283444);
    color: #fff;
    padding: 90px 0;
}

.small-banner h1 {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 10px;
}

/* =========================
   PROJECTS / MAP
========================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-card h3 {
    margin: 16px 0 10px;
}

.project-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.project-image {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.large-project-photo {
    height: 420px;
    object-fit: cover;
    margin-bottom: 24px;
}

.placeholder-box {
    background: #d9dde3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: 700;
}

.map-box {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* =========================
   FORMS / ALERTS
========================= */
.contact-details p {
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d5dbe3;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 14px;
}

textarea {
    resize: vertical;
    min-height: 140px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #c79b48;
    box-shadow: 0 0 0 4px rgba(199, 155, 72, 0.12);
}

.full-btn {
    width: 100%;
    cursor: pointer;
}

.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
}

.success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid var(--success-border);
}

.error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid var(--error-border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.form-card {
    max-width: 900px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* =========================
   FOOTER / WHATSAPP
========================= */
.site-footer {
    background: var(--dark);
    color: #e7e7e7;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 30px;
    padding-bottom: 35px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    color: #bfbfbf;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 9999;
}

.whatsapp-float:hover {
    opacity: 0.92;
}

/* =========================
   ADMIN PANEL
========================= */
.admin-body {
    background: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: #111827;
    color: #fff;
    padding: 24px 18px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-sidebar-brand {
    text-align: center;
    margin-bottom: 28px;
}

.admin-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.admin-sidebar-logo {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    padding: 8px;
    border-radius: 14px;
}

.admin-sidebar h2 {
    font-size: 18px;
    line-height: 1.4;
    margin: 10px 0 14px;
    color: #fff;
}

.visit-site-btn {
    display: inline-block;
    text-decoration: none;
    background: #c89b3c;
    color: #111827;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.visit-site-btn:hover {
    opacity: 0.9;
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar-nav a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 10px;
    transition: 0.3s ease;
    font-weight: 500;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: #1f2937;
    color: #fff;
}

.admin-sidebar-nav .logout-link {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar-nav .logout-link:hover {
    background: #7f1d1d;
    color: #fff;
}

.admin-content {
    padding: 32px;
    background: var(--bg);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.admin-topbar h1 {
    font-size: 30px;
    line-height: 1.2;
    color: #111827;
    margin: 0;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 34px rgba(15, 23, 32, 0.08);
    border: 1px solid #eef2f6;
}

.admin-form {
    width: 100%;
}

.admin-preview-image {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 4px;
}

.admin-btn {
    color: #111 !important;
    text-decoration: none;
}

.admin-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--dark);
    color: var(--dark) !important;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.admin-btn-outline:hover {
    background: var(--dark);
    color: #fff !important;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: #fff;
}

.admin-table thead th {
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    padding: 16px 14px;
    border-bottom: 1px solid #e9eef3;
    white-space: nowrap;
}

.admin-table tbody td {
    padding: 16px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #edf1f5;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
}

.admin-table tbody tr:hover td {
    background: #fafbfd;
}

.admin-table td img {
    border-radius: 12px;
    object-fit: cover;
    width: 100px;
    height: 72px;
    border: 1px solid #e5e7eb;
}

.admin-empty-state {
    padding: 28px;
    text-align: center;
    color: #64748b;
    font-weight: 700;
}

.admin-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-link-edit,
.admin-link-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.admin-link-edit {
    background: #e6f7f5;
    color: #0f766e !important;
    border-color: #bfe8e3;
}

.admin-link-edit:hover {
    background: #0f766e;
    color: #ffffff !important;
}

.admin-link-delete {
    background: #fdecec;
    color: #b91c1c !important;
    border-color: #f5c2c2;
}

.admin-link-delete:hover {
    background: #b91c1c;
    color: #ffffff !important;
}

.dark-btn {
    border-color: var(--dark) !important;
    color: var(--dark) !important;
}

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

/* =========================
   ADMIN LOGIN
========================= */
.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(rgba(10, 18, 28, 0.84), rgba(10, 18, 28, 0.84)),
        url('../images/hero.jpg') center/cover no-repeat;
}

.admin-login-card {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}

.admin-login-card h2 {
    margin: 0 0 8px;
    font-size: 30px;
    color: #111827;
}

.admin-subtitle {
    margin-bottom: 22px;
    color: #6b7280;
}

/* =========================
   DARK TESTIMONIAL SECTION
========================= */
.dark-luxury-section {
    background: linear-gradient(135deg, #101720, #1b2733);
    color: #fff;
}

.dark-luxury-section .section-head span {
    color: #d8b46b;
}

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

.testimonial-photo {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 3px solid rgba(208, 169, 92, 0.35);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 6px;
    box-sizing: border-box;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-align: center;
    min-height: 250px;
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-message {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #f1f1f1;
    position: relative;
    padding: 0 10px;
}

.testimonial-message::before {
    content: '"';
    font-size: 28px;
    color: #d0a95c;
    margin-right: 4px;
}

.testimonial-message::after {
    content: '"';
    font-size: 28px;
    color: #d0a95c;
    margin-left: 4px;
}

.testimonial-card h4 {
    margin-bottom: 4px;
    color: #fff;
    font-size: 20px;
}

.testimonial-card span {
    color: #d0a95c;
    font-size: 14px;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 5;
}

.testimonial-btn:hover {
    background: rgba(208, 169, 92, 0.8);
    color: #111;
}

.testimonial-btn.prev {
    left: 0;
}

.testimonial-btn.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.testimonial-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.25s ease;
}

.testimonial-dot.active {
    background: #d0a95c;
}

.luxury-card {
    border-top: 4px solid var(--primary);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .two-col,
    .card-grid,
    .project-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        width: 100%;
        min-height: auto;
    }

    .admin-sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .admin-sidebar-nav a {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        max-width: 100%;
    }

    .hero-content {
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-wrap {
        min-height: 74px;
        gap: 12px;
        padding: 10px 0;
        flex-wrap: nowrap;
    }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .logo img {
        max-height: 46px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        margin-left: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
        gap: 14px;
        border-top: 1px solid #ececec;
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 8px 0;
        white-space: normal;
    }

    .main-nav a::after {
        display: none;
    }

    .two-col,
    .card-grid,
    .project-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 0;
    }

    .hero-content {
        bottom: 30px;
        padding: 0 16px;
    }

    .hero-buttons,
    .admin-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons a,
    .btn-primary,
    .btn-secondary,
    .admin-btn-outline {
        width: 100%;
        min-width: 0;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 16px;
    }

    .card,
    .admin-card {
        padding: 20px;
    }

    .page-banner {
        padding: 70px 0;
    }

    .admin-content {
        padding: 18px;
    }

    .admin-login-card {
        padding: 24px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .admin-topbar h1 {
        font-size: 24px;
    }

    .testimonial-card {
        min-height: 230px;
        padding: 24px 18px;
    }

    .testimonial-message {
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .admin-sidebar-nav a {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .nav-wrap {
        gap: 10px;
    }

    .logo img {
        max-height: 40px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .stat-box {
        padding: 22px 16px;
        min-height: 130px;
    }

    .admin-sidebar h2 {
        font-size: 20px;
    }

    .admin-card {
        padding: 16px;
    }

    .admin-table thead th,
    .admin-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .hero-slider {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 0;
    }

    .hero-content {
        bottom: 22px;
    }

    .hero-buttons {
        max-width: 280px;
    }
}

/* =========================
   SERVICES PAGE PREMIUM
========================= */
.services-hero {
    background:
        linear-gradient(rgba(10, 18, 28, 0.72), rgba(10, 18, 28, 0.72)),
        url('../images/hero.jpg') center/cover no-repeat;
    padding: 110px 0;
}

.services-hero-content {
    max-width: 760px;
    color: #fff;
}

.services-mini-title {
    display: inline-block;
    margin-bottom: 12px;
    color: #d8b46b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.services-hero-content h1 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.services-hero-content p {
    max-width: 680px;
    color: #e5e7eb;
    font-size: 17px;
    line-height: 1.8;
}

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

.service-premium-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 23, 32, 0.08);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(15, 23, 32, 0.14);
}

.service-premium-image-wrap {
    position: relative;
    overflow: hidden;
}

.service-premium-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-premium-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b78f43;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.service-premium-image-wrap .service-premium-icon {
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.service-premium-icon-top {
    margin: 24px 24px 0;
    background: rgba(208, 169, 92, 0.10);
    box-shadow: none;
}

.service-premium-body {
    padding: 24px;
}

.service-premium-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.service-premium-body p {
    color: #6b7280;
    line-height: 1.75;
    font-size: 15px;
}

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

.services-feature-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 32, 0.08);
    border: 1px solid #eef2f6;
}

.services-feature-box h3 {
    margin: 14px 0 10px;
    font-size: 22px;
}

.services-feature-box p {
    color: #6b7280;
}

@media (max-width: 992px) {
    .services-premium-grid,
    .services-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0;
    }

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

    .service-premium-image {
        height: 220px;
    }

    .service-premium-body {
        padding: 20px;
    }
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.project-gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

.gallery-public-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(15, 23, 32, 0.08);
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-public-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 32, 0.14);
}

.gallery-public-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-public-body {
    padding: 20px;
}

.gallery-public-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111827;
}

.gallery-public-body p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 992px) {
    .gallery-public-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-public-grid {
        grid-template-columns: 1fr;
    }

    .gallery-public-image {
        height: 220px;
    }
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-btn:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-btn.prev {
    left: 30px;
}

.lightbox-btn.next {
    right: 30px;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-btn:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-btn.prev {
    left: 30px;
}

.lightbox-btn.next {
    right: 30px;
}

/* =========================
   WHATSAPP CLEAN (SMALL + NO ANIMATION)
========================= */
.whatsapp-pro {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.whatsapp-pro .whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Tooltip (desktop only) */
.whatsapp-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #111827;
    color: #fff;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.whatsapp-pro:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-pro {
        width: 44px;
        height: 44px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-pro .whatsapp-icon {
        width: 18px;
        height: 18px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
