:root {
    --bg: #faf8f3;
    --card: #ffffff;
    --text: #2c2416;
    --muted: #6b5b47;
    --brand: #d4a574;
    --brand-dark: #b8956f;
    --brand-light: #f4e6d4;
    --accent: #3d5a4b;
    --secondary: #8b7355;
    --line: #f0e6d6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
    --glass: rgba(255, 255, 255, 0.85);
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #b8956f 100%);
    --gradient-secondary: linear-gradient(135deg, #3d5a4b 0%, #2c3e35 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

.topbar {
    background: #1f332d;
    color: #f3ede0;
    font-size: 0.88rem;
    padding: 10px 0;
}

.topbar .container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: space-between;
}

.topbar a {
    color: #f9ddab;
    text-decoration: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(250, 248, 243, 0.95);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(250, 248, 243, 0.98);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo small {
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0;
    font-size: 0.9rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

nav a:hover::before {
    opacity: 0.1;
}

nav a:hover,
nav a.active {
    background: var(--brand-light);
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.btn-link {
    display: inline-block;
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.btn-link:hover {
    transform: translateX(5px);
    text-decoration: underline;
}


.hero-slider {
    width: 100%;
    height: clamp(550px, 75vh, 800px);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    background-color: #1f332d;
}

.hero-figure {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-figure-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.visual-badge {
    position: absolute;
    top: 20px;
    left: 24px;
    background: var(--brand);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.03em;
}

.swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #1f332d;
}

.slide-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 1s ease;
}

.swiper-slide-active .slide-bg {
    animation: kenBurns 15s linear forwards;
}

.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 31, 28, 0.9) 0%, rgba(20, 31, 28, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fffaf0;
    max-width: 800px;
    padding: 0 80px;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 2rem + 4vw, 4.8rem);
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin: 0 0 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #f1e6d4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease both 0.3s;
}

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

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

@keyframes kenBurns {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.25);
    }
}

.swiper-pagination-bullet {
    background: #f2cb86 !important;
    opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 5px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f2cb86 !important;
    transform: scale(0.8);
}

.hero {
    padding: 50px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.hero-main {
    background: var(--gradient-secondary);
    color: #f9f6ef;
    border-radius: 26px;
    padding: 38px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23d4a574" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.5;
}

.hero-main h1 {
    font-family: var(--font-heading);
    margin: 0 0 24px;
    font-size: clamp(2rem, 1.5rem + 3vw, 3.8rem);
    line-height: 1.1;
    font-weight: 700;
}

.hero-main p {
    margin: 0 0 20px;
    color: #e9dfcf;
}

.hero-list {
    margin: 0;
    padding-left: 18px;
    color: #f5ddaf;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #35240f;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--brand);
    color: #35240f;
    transform: translateY(-2px);
}

.hero-side {
    background: var(--card);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    align-content: start;
}

.side-title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.kpi {
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #f9f5eb 100%);
    border: 1px solid rgba(212, 165, 116, 0.15);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.kpi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.kpi:hover {
    transform: translateX(6px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #fff 0%, #faf0e3 100%);
}

.kpi:hover::before {
    transform: scaleY(1);
}

.kpi-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--brand);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.kpi-icon svg {
    width: 22px;
    height: 22px;
}

.kpi-text strong {
    display: block;
    color: var(--brand-dark);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.visual-stage {
    margin-top: 20px;
    min-height: 280px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.visual-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 90, 75, 0.3) 0%, rgba(44, 62, 53, 0.5) 100%);
    z-index: 1;
}

.visual-stage:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.visual-label {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--gradient-primary);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-stage::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.visual-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    color: #fff;
}

.visual-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.visual-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

section {
    padding: 30px 0;
}

.section-title {
    font-family: var(--font-heading);
    margin: 0 0 20px;
    font-size: clamp(1.8rem, 1.4rem + 2vw, 2.8rem);
    color: var(--brand-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

.section-intro {
    margin: 0 0 40px;
    color: #666;
    max-width: 85ch;
    line-height: 1.6;
    font-size: 1.05rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    margin-top: 0;
    font-size: 1.15rem;
    color: var(--brand-dark);
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.card p {
    margin-bottom: 0;
    color: #4f4a3f;
}

.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.step {
    background: #fffdf9;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    position: relative;
}

.step:before {
    counter-increment: step;
    content: counter(step);
    display: inline-grid;
    place-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: #efe5d4;
    color: #4e3a21;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    border: 1px solid #decfb6;
}

/* Terminology Matrix */
.matrix {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.matrix table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.matrix th {
    background: var(--brand-dark);
    color: #fff;
    text-align: left;
    padding: 18px 24px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.matrix td {
    padding: 20px 24px;
    border-bottom: 1px solid #f0e6d6;
    font-size: 0.98rem;
    color: #444;
}

.matrix tr:last-child td {
    border-bottom: none;
}

.matrix tr:nth-child(even) td {
    background: #fdfaf5;
}

.matrix strong {
    color: var(--brand-dark);
    display: block;
}

.matrix .status-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f1e6d4;
    color: #714c20;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
}

details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
}

summary {
    cursor: pointer;
    font-weight: 700;
    color: #403526;
}

details+details {
    margin-top: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.gallery-card {
    min-height: 400px;
    height: 400px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    transition: var(--transition);
    border: 1px solid var(--line);
    background: #2e2922;
}

.gallery-card:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(20, 31, 28, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}

.gallery-content {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    margin: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: calc(100% - 40px);
    transition: var(--transition);
    transform: translateY(0);
}

.gallery-card:hover .gallery-content {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.gallery-content strong {
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 8px;
    font-size: 1.6rem;
    color: #f2cb86;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gallery-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cta {
    background: linear-gradient(140deg, #2b443c, #406357);
    color: #f9f2e4;
    border-radius: 22px;
    padding: 32px;
}

.cta a {
    color: #ffd992;
}

/* Main Footer Styles */
footer {
    background: #0d1412;
    color: #e0e0e0;
    padding: 80px 0 40px;
    position: relative;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-top-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.footer-top-head h4 {
    color: var(--brand);
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.city-group {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.city-group:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 116, 0.3);
    transform: translateY(-5px);
}

.city-group h5 {
    color: #fff;
    margin: 0 0 18px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-group h5::before {
    content: "";
    width: 3px;
    height: 15px;
    background: var(--brand);
    border-radius: 2px;
}

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

.city-service-list li {
    margin-bottom: 10px;
}

.city-service-list a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-block;
}

.city-service-list a:hover {
    color: var(--brand);
    transform: translateX(5px);
}

.city-chips-wrap {
    margin: 40px 0 60px;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.city-chip:hover {
    background: var(--brand);
    color: #0d1412;
    border-color: var(--brand);
    transform: scale(1.05);
    font-weight: 600;
}

.footer-main-meta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

.footer-about h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 20px;
}

.footer-about p {
    color: #a0a0a0;
    line-height: 1.8;
    max-width: 600px;
}

.footer-contact-info h3 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-detail {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.contact-icon {
    color: var(--brand);
    width: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-text strong {
    display: block;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 0.6;
}

.contact-text a,
.contact-text span {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-text a:hover {
    color: var(--brand);
}

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

.copy-text {
    font-size: 0.85rem;
    color: #707070;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: #808080;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--brand);
}

@media (max-width: 991px) {
    .footer-main-meta {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 0 40px;
    }

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

    .footer-nav {
        justify-content: center;
    }
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--brand);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Location Tags */
.loc-tag {
    font-size: 0.8rem;
    color: var(--brand);
    background: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #f2e6d6;
    font-weight: 600;
}

/* Blog Premium UI */
.featured-post {
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #f2e6d6;
}

.featured-img {
    flex: 1 1 500px;
    min-height: 400px;
}

.featured-content {
    flex: 1 1 400px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #fdfaf5 100%);
}

.featured-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.featured-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.premium-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(135, 99, 58, 0.08);
    border-color: var(--brand);
}

.card-img-wrap {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--brand-dark);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-summary {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.nav-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.nav-chip {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-chip:hover,
.nav-chip.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 5px 15px rgba(135, 99, 58, 0.2);
}

@media (max-width: 768px) {
    .featured-content {
        padding: 40px;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .hero-grid,
    .grid,
    .steps,
    .city-grid,
    .gallery {
        grid-template-columns: 1fr;
    }
}

.footer-meta {
    grid-template-columns: 1fr;
}

.hero {
    padding-top: 48px;
}

.hero-main,
.hero-side,
.cta {
    padding: 24px;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.hero-image .container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
}

.hero-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-image h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 1.5rem + 4vw, 4rem);
    margin: 0 0 16px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    color: #ffffff !important;
}

.hero-image p {
    font-size: 1.25rem;
    max-width: 750px;
    color: #f1e6d4;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    font-weight: 500;
}

/* Contact Page Premium UI */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fields label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

.fields input,
.fields select,
.fields textarea {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fields input:focus,
.fields select:focus,
.fields textarea:focus {
    border-color: var(--brand);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(135, 99, 58, 0.1);
}

.fields textarea {
    height: 150px;
    resize: none;
}

.office-card {
    background: var(--brand-dark);
    color: #fff;
    padding: 40px;
    border-radius: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.office-card h3 {
    color: var(--brand);
    margin-top: 0;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 30px;
}

.info-item strong {
    display: block;
    color: var(--brand);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.info-item div,
.info-item a {
    font-size: 1rem;
    line-height: 1.6;
    color: #eee;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--brand);
}

/* Showcase Panels on Contact */
.showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 80px;
}

.showcase-card {
    height: 350px;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
    z-index: 1;
}

.showcase-card div {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    line-height: 1.6;
}

.showcase-card strong {
    font-family: var(--font-heading);
    display: block;
    font-size: 1.6rem;
    color: #f2cb86;
    margin-bottom: 10px;
    font-weight: 600;
}

.showcase-card.one {
    background-image: url('../img/gallery/dome.png');
}

.showcase-card.two {
    background-image: url('../img/gallery/stone.png');
}

.showcase-card.three {
    background-image: url('../img/gallery/interior.png');
}

/* FAQ Card styling */
.faq-card {
    background: #fdfaf5;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #efe4d5;
    margin-bottom: 80px;
}

.faq-card details {
    border-bottom: 1px solid #efe4d5;
    padding: 20px 0;
}

.faq-card summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.faq-card p {
    margin-top: 15px;
    color: #666;
    line-height: 1.7;
}

/* Premium Button Styles - Global High-End Design */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: var(--brand-dark) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    /* More architectural/sharp look */
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid var(--brand);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
    cursor: pointer;
}

.btn-premium span {
    position: relative;
    z-index: 2;
}

.btn-premium .arrow {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 1.2rem;
    line-height: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--brand);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-premium:hover {
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.btn-premium:hover::before {
    width: 100%;
}

.btn-premium:hover .arrow {
    transform: translateX(8px);
}

/* Secondary variant for grid cards */
.btn-premium.secondary {
    padding: 12px 28px;
    font-size: 0.88rem;
    border-width: 1.5px;
    color: var(--brand-dark);
    letter-spacing: 0.05em;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.8s ease;
    z-index: 3;
}

.btn-premium:hover::after {
    left: 100%;
}

@media (max-width: 992px) {

    .contact-grid,
    .showcase {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Premium Author Card Styles */
.author-card {
    margin-top: 50px;
    padding: 35px;
    background: #fff;
    border: 1px solid #efe4d5;
    border-radius: 4px;
    /* Architectural sharp corners */
    display: block;
    position: relative;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.05);
}

.author-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    pointer-events: none;
}

.author-img {
    width: 90px;
    height: 90px;
    border-radius: 0;
    /* Square for more architectural look, or 50% for standard */
    background: url('/assets/img/blog/tyana_editor_group_avatar.png') center/cover no-repeat;
    flex-shrink: 0;
    border: 1px solid var(--brand);
    position: relative;
    z-index: 2;
}

.author-info {
    position: relative;
    z-index: 2;
}

.author-info h4 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.author-info p {
    margin: 8px 0 0;
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .author-img {
        margin-bottom: 10px;
    }
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }

    .whatsapp-btn span {
        display: none;
    }
}

/* --- Mobile Navigation Fixes --- */

/* Nav Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: absolute;
    transition: var(--transition);
}

.nav-toggle span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle span::before {
    content: "";
    top: -8px;
    left: 0;
}

.nav-toggle span::after {
    content: "";
    top: 8px;
    left: 0;
}

.nav-toggle.active span {
    background: transparent;
}

.nav-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .topbar .container {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .topbar span:first-child {
        font-weight: 700;
        font-size: 0.75rem;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg);
        z-index: 1000;
        padding: 100px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-radius: 12px;
        font-size: 1.1rem;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hero Slider Mobile Adjustments */
    .hero-slider {
        height: 450px;
        border-radius: 20px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-actions {
        justify-content: center;
    }

    .expert-blocks {
        padding: 40px 0;
    }

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

    .hero-main {
        padding: 30px 20px;
    }

    .hero-main h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo small {
        font-size: 0.75rem;
    }

    .hero-slider {
        height: 400px;
    }
}

/* --- Services Page Mobile Refinements --- */

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.service-premium-card {
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    border: 1px solid #f2e6d6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.1);
}

.service-premium-card .card-icon {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 20px;
}

.service-premium-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.service-premium-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-premium-card .sub-tags {
    margin-bottom: 25px;
}

.service-premium-card .sub-tag {
    display: inline-block;
    background: #f9f5ef;
    color: var(--brand-dark);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 0 4px 6px 0;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #efe3cf;
    transition: var(--transition);
}

.service-premium-card .sub-tag:hover {
    background: var(--brand-light);
    border-color: var(--brand);
}

.service-premium-card .card-link {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.service-premium-card .card-link span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-premium-card .card-link:hover span {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-premium-catalog h1 {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .service-premium-card {
        padding: 25px;
        border-radius: 20px;
    }

    /* Terminology Matrix Mobile Scroll */
    .matrix {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .matrix table {
        min-width: 600px;
        /* Force scroll instead of squishing */
    }
}
/* MEEN Signature Styles */
/* MEEN Signature Styles - Robust Version */
.meen-signature-final {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px 0 !important;
    margin: 40px 0 0 !important;
    border-top: 1px solid rgba(212, 165, 116, 0.1) !important;
    overflow: hidden !important;
    background: #1a2a24 !important; /* Dark matching the footer theme */
    width: 100% !important;
    clear: both !important;
}

.meen-signature-final .meen-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 2 !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none !important;
    background: none !important;
}

.meen-signature-final .meen-wrapper:hover {
    transform: scale(1.05) !important;
}

.meen-signature-final .meen-diamond-icon {
    width: 20px !important;
    height: 20px !important;
    background: #d4a574 !important;
    transform: rotate(45deg) !important;
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.4) !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.meen-signature-final .meen-diamond-icon::after {
    content: '' !important;
    position: absolute !important;
    inset: 3px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.meen-signature-final .meen-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    line-height: 1.2 !important;
}

.meen-signature-final .m-desc {
    display: block !important;
    font-size: 9px !important;
    letter-spacing: 0.2em !important;
    color: rgba(255, 245, 223, 0.6) !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
}

.meen-signature-final .m-url {
    display: block !important;
    font-size: 13px !important;
    letter-spacing: 0.05em !important;
    color: #fff5df !important;
    font-weight: 800 !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.meen-signature-final .meen-flash {
    position: absolute !important;
    width: 150px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #d4a574, transparent) !important;
    opacity: 0.2 !important;
}

.meen-signature-final .meen-f-left {
    right: 50% !important;
    margin-right: 100px !important;
    animation: flashLeft 4s infinite ease-in-out !important;
}

.meen-signature-final .meen-f-right {
    left: 50% !important;
    margin-left: 100px !important;
    animation: flashRight 4s infinite ease-in-out !important;
}

@keyframes flashLeft {
    0%, 100% { transform: translateX(0); opacity: 0.1; }
    50% { transform: translateX(-40px); opacity: 0.3; }
}

@keyframes flashRight {
    0%, 100% { transform: translateX(0); opacity: 0.1; }
    50% { transform: translateX(40px); opacity: 0.3; }
}

@media (max-width: 768px) {
    .meen-signature-final .meen-flash {
        display: none !important;
    }
}
