@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a1a2e;
    --secondary: #c9a84c;
    --accent: #e8c547;
    --dark: #0f0f1a;
    --light: #f8f5ee;
    --white: #ffffff;
    --text-dark: #1c1c1c;
    --text-muted: #6b6b6b;
    --border: #e0d9cc;
    --success: #2ecc71;
    --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8c547 50%, #c9a84c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.18);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

img,
svg,
iframe {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-muted {
    background: #f2ede2;
}

.section-dark {
    color: var(--white);
    background: var(--gradient-dark);
    position: relative;
}

.section-dark::before,
.page-banner::before,
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(30deg, rgba(201, 168, 76, 0.07) 1px, transparent 1px);
    background-size: 64px 64px, 54px 54px;
    pointer-events: none;
}

.section-dark > *,
.page-banner > *,
.site-footer > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary);
    line-height: 1.2;
}

.text-light,
.section-dark .section-title {
    color: var(--white);
}

.text-soft {
    color: rgba(255, 255, 255, 0.82);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-wide {
    max-width: 100%;
}

.gold-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 15px 0 30px;
    border-radius: 2px;
}

.center {
    text-align: center;
}

.center-divider {
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 14px 32px;
    border: none;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary);
    padding: 12px 30px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
}

.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.header-inner {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-icon,
.footer-brand .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.logo-icon svg,
.footer-brand svg,
.widget-btn svg,
.social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.logo {
    color: var(--secondary);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
}

.logo-text span {
    font-size: 0.78rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    color: var(--white);
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav li.active > a,
.main-nav li.nav-active > a,
.main-nav a:hover {
    color: var(--accent);
    background: transparent;
}

@media (min-width: 769px) {
    .main-nav a:hover {
        background: rgba(0, 0, 0, 0.4);
        font-weight: 700;
        border-radius: 6px;
    }
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: rgba(15, 15, 26, 0.97);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.dropdown li {
    width: 100%;
    display: block;
}

.dropdown a {
    display: block;
    width: 100%;
    padding: 12px 18px;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    background: transparent;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body {
    padding-top: 75px;
}

.hero-section {
    min-height: calc(100vh - 75px);
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(15, 15, 26, 0.92), rgba(26, 26, 46, 0.82)),
        var(--gradient-dark);
    color: var(--white);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 52%, rgba(201, 168, 76, 0.15) 52% 56%, transparent 56% 100%),
        linear-gradient(90deg, transparent 0 15%, rgba(255, 255, 255, 0.07) 15% 18%, transparent 18% 100%),
        linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.05) 58% 60%, transparent 60% 100%),
        linear-gradient(0deg, rgba(232, 197, 71, 0.09) 0 4px, transparent 4px 100%);
    background-size: 100% 100%, 180px 100%, 260px 100%, 100% 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.08;
    max-width: 760px;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 700px;
    font-size: clamp(16px, 2.3vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateX(-50%);
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    30%,
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

.stats-bar {
    background: var(--dark);
    color: var(--white);
}

.stats-grid,
.services-grid,
.feature-grid,
.testimonial-grid,
.package-grid,
.values-grid,
.footer-grid,
.contact-grid,
.split-section,
.timeline-grid {
    display: grid;
    gap: 24px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-icon {
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.stat-item strong {
    display: block;
    font-size: clamp(24px, 3vw, 38px);
    color: var(--accent);
    margin-bottom: 4px;
}

.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.five-col {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.testimonial-card,
.value-card,
.package-card,
.contact-info-card {
    height: 100%;
}

.service-card-top {
    height: 5px;
    background: var(--gradient-gold);
}

.service-card-body,
.testimonial-card,
.value-card,
.package-card,
.proprietor-card,
.contact-info-card {
    padding: 28px;
}

.service-icon,
.value-icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 14px;
}

.inline-link {
    color: var(--secondary);
    font-weight: 700;
}

.split-section {
    grid-template-columns: 1.1fr 0.9fr;
}

.align-center {
    align-items: center;
}

.feature-item,
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 8px;
    padding: 18px;
    color: var(--white);
    backdrop-filter: blur(2px);
}

.feature-card {
    color: var(--text-dark);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.building-illustration,
.story-visual {
    position: relative;
    min-height: 420px;
}

.building-base {
    position: absolute;
    bottom: 40px;
    left: 12%;
    width: 76%;
    height: 26px;
    background: rgba(201, 168, 76, 0.4);
    border-radius: 20px;
}

.building-tower {
    position: absolute;
    bottom: 66px;
    width: 22%;
    background: linear-gradient(180deg, rgba(232, 197, 71, 0.92), rgba(201, 168, 76, 0.35));
    border-radius: 10px 10px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.building-tower::before {
    content: '';
    position: absolute;
    inset: 16px 18%;
    background:
        linear-gradient(90deg, rgba(15, 15, 26, 0.85) 0 12%, transparent 12% 34%, rgba(15, 15, 26, 0.85) 34% 46%, transparent 46% 68%, rgba(15, 15, 26, 0.85) 68% 80%, transparent 80% 100%);
}

.tower-one {
    left: 14%;
    height: 180px;
}

.tower-two {
    left: 39%;
    height: 255px;
}

.tower-three {
    left: 64%;
    height: 220px;
}

.timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    position: relative;
}

.timeline-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 14px;
}

.step-img-wrap {
    position: relative;
    margin: -28px -28px 24px -28px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.step-img {
    display: block;
    width: 100%;
    height: 280px; /* Mobile fallback */
    object-fit: cover;
    transition: transform 0.4s ease;
}

@media (min-width: 901px) {
    .step-img {
        height: 500px;
    }
}

.timeline-step:hover .step-img {
    transform: scale(1.05);
}


.testimonials-section {
    background: linear-gradient(180deg, #fbf8f2 0%, #f3ecdf 100%);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
}

.testimonial-card h3 {
    margin-bottom: 0;
    color: var(--primary);
}

.cta-banner {
    background: linear-gradient(135deg, #121224 0%, #1f2038 42%, #c9a84c 100%);
    color: var(--white);
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-banner {
    padding: 110px 0 70px;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 10px;
}

.breadcrumb,
.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.story-card {
    position: absolute;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(201, 168, 76, 0.28));
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: var(--shadow-strong);
}

.story-card::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 14%, transparent 14% 36%, rgba(255, 255, 255, 0.12) 36% 50%, transparent 50% 72%, rgba(255, 255, 255, 0.12) 72% 86%, transparent 86% 100%),
        linear-gradient(180deg, transparent 0 75%, rgba(232, 197, 71, 0.35) 75% 100%);
}

.story-card-one {
    width: 44%;
    height: 270px;
    left: 8%;
    top: 70px;
}

.story-card-two {
    width: 28%;
    height: 210px;
    right: 22%;
    top: 30px;
}

.story-card-three {
    width: 36%;
    height: 280px;
    right: 6%;
    bottom: 30px;
}

.proprietor-card {
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.proprietor-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.16);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.coverage-strip {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.coverage-strip h2 {
    color: var(--accent);
    font-family: var(--font-heading);
}

.featured-package {
    border-top: 5px solid var(--secondary);
}

.bullet-list {
    padding-left: 20px;
    list-style: disc;
}

.cta-side-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 32px;
    border-radius: 12px;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.style-tags span {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}

.faq-layout {
    max-width: 900px;
}

.faq-category + .faq-category {
    margin-top: 36px;
}

.faq-category h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 18px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.faq-item + .faq-item {
    margin-top: 14px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 20px 54px 20px 20px;
    font: inherit;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 1.5rem;
}

.faq-item.open .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    padding: 0 20px 20px;
}

.contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.contact-form-wrap,
.contact-info-wrap {
    min-width: 0;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group span {
    color: #cc3a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d8d2c7;
    border-radius: 8px;
    font: inherit;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #cc3a3a;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #cc3a3a;
    font-weight: 600;
}

.form-message {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.12);
    color: #157347;
    border: 1px solid rgba(46, 204, 113, 0.35);
}

.form-message.error {
    background: rgba(204, 58, 58, 0.12);
    color: #a12828;
    border: 1px solid rgba(204, 58, 58, 0.25);
}

.contact-info-wrap {
    display: grid;
    gap: 18px;
}

.contact-info-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-info-card a {
    color: var(--secondary);
    font-weight: 700;
}

.contact-info-card .address-block {
    line-height: 1.6;
}

.map-wrap {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.site-footer {
    background: #111320;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    padding-top: 70px;
}

.footer-grid {
    padding-bottom: 36px;
}

@media (min-width: 901px) {
    .site-footer {
        font-size: 0.9rem;
    }
    
    .site-footer h3 {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.25fr;
        gap: 30px;
    }

    .footer-grid > div:nth-child(2) {
        padding-left: 40px; /* Moves Quick Links section slightly to the right */
    }
}

.footer-brand {
    color: var(--accent);
    margin-bottom: 16px;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.site-footer .footer-grid > div:first-child > p {
    text-align: justify;
}

.site-footer h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--accent);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: rgba(201, 168, 76, 0.25);
    color: var(--white);
    transform: scale(1.08);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .address-block {
    display: block;
    line-height: 1.6;
    white-space: pre-line;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-credit-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.footer-credit-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (min-width: 769px) {
    .footer-copyright {
        white-space: nowrap;
    }
}

.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.widget-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.widget-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25d366;
}

.phone-btn {
    background: #c9a84c;
}

.scroll-top-btn {
    background: #1a1a2e;
    display: none;
}

@media (max-width: 900px) {
    .section {
        padding: 65px 0;
    }

    .stats-grid,
    .four-col,
    .three-col,
    .timeline-grid,
    .five-col,
    .split-section,
    .contact-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header {
        background: rgba(15, 15, 26, 0.92);
    }

    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-visual,
    .building-illustration {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .header-inner {
        min-height: 60px;
    }

    .hamburger {
        display: inline-flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 26, 0.98);
        border-top: 1px solid rgba(201, 168, 76, 0.16);
        padding: 10px 20px 18px;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 6px;
    }

    .dropdown {
        position: static;
        min-width: 100%;
        margin-top: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-dropdown:hover .dropdown {
        transform: none;
    }

    .has-dropdown.open .dropdown {
        max-height: 240px;
        padding: 8px 0;
    }

    .dropdown a {
        padding-left: 18px;
        font-size: 0.96rem;
    }

    .hero-section {
        min-height: calc(90vh - 60px);
    }

    .logo-text span {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 50px 0;
    }

    .section-sm {
        padding: 40px 0;
    }

    .stats-grid,
    .four-col,
    .three-col,
    .two-col,
    .split-section,
    .timeline-grid,
    .five-col,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .story-visual,
    .building-illustration {
        min-height: 280px;
    }

    .story-card-one {
        left: 2%;
    }

    .story-card-three {
        right: 2%;
    }

    .service-card-body,
    .testimonial-card,
    .value-card,
    .package-card,
    .proprietor-card,
    .contact-info-card,
    .timeline-step {
        padding: 22px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

    .floating-widgets {
        bottom: 20px;
        right: 14px;
    }

    .widget-btn {
        width: 44px;
        height: 44px;
    }

    .page-banner {
        padding: 92px 0 52px;
    }
}
