/*
 * THE SHOLI LANDING PAGE STYLESHEET
 * Brand Theme: Luxury Real Estate
 * Primary Color: #352a26 | Secondary Color: #efd8c2 | Menu Highlight: #a88765
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #352a26;
    --color-secondary: #efd8c2;
    --color-accent: #a88765;
    --color-dark-gray: #241c19;
    --color-light-gray: #473a35;
    --color-white: #ffffff;
    --color-text-light: #f5eae1;
    --color-text-dark: #352a26;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.3);
    --border-luxury: 1px solid rgba(239, 216, 194, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(40px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* H2 accent line underneath */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    opacity: 0.9;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* --- Layout Elements --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
    border-bottom: var(--border-luxury);
}

.section-dark {
    background-color: var(--color-primary);
}

.section-light-dark {
    background-color: var(--color-dark-gray);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #bd1c24; /* Màu đỏ sang trọng */
    color: var(--color-white); /* Chữ trắng */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    border: 2px solid #bd1c24;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(189, 28, 36, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Shiny effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn:hover::before {
    left: 125%;
}

.btn:hover {
    background-color: transparent;
    color: #efd8c2;
    border-color: #efd8c2;
    box-shadow: 0 6px 20px rgba(239, 216, 194, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #bd1c24;
    color: var(--color-white);
    border-color: #bd1c24;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(53, 42, 38, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: var(--border-luxury);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    background-color: rgba(36, 28, 25, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo-wrapper img {
    height: 38px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
    transform-origin: left center;
}

/* Hamburger Open State */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.hamburger.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

/* Mobile Drawer Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-dark-gray);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 1005;
    padding: 6rem 2.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.open {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    display: block;
    border-bottom: 1px solid rgba(239, 216, 194, 0.05);
    padding-bottom: 0.8rem;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-menu-footer {
    border-top: var(--border-luxury);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--color-accent);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-banner-wrapper {
    display: none;
}

/* --- Section 1: Hero Banner --- */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(53, 42, 38, 0.75), rgba(53, 42, 38, 0.95)),
                url('https://thesholii.com/admin/uploads/posts/1780182605_theSholi_V02_OVERVIEWNIGHT_FINAL1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero h2 {
    color: var(--color-secondary);
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 400;
    border: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.hero h2::after {
    display: none;
}

/* --- Section 2: Brand Story --- */
.story-image-wrap {
    position: relative;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-image-wrap:hover img {
    transform: scale(1.05);
}

.brand-story-accent-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(36, 28, 25, 0.85);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-left: 4px solid var(--color-accent);
    border-radius: 0 4px 4px 0;
}

.brand-story-accent-box h4 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

/* Dual images layout */
.image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.collage-item {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-luxury);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collage-item:hover img {
    transform: scale(1.05);
}

/* No crop utility for images in Section 9 & 12 */
.collage-item.no-crop, .story-image-wrap.no-crop {
    height: auto !important;
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.collage-item.no-crop img, .story-image-wrap.no-crop img {
    height: auto !important;
    object-fit: contain !important;
    border-radius: 4px;
}

/* --- Section 3: Overview --- */
.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.overview-table tr {
    border-bottom: 1px solid rgba(239, 216, 194, 0.1);
}

.overview-table tr:last-child {
    border-bottom: none;
}

.overview-table td {
    padding: 1.2rem 0;
    vertical-align: top;
}

.overview-table td.label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
    width: 35%;
}

.overview-table td.val {
    color: var(--color-white);
}

/* --- Section 4: Location Map --- */
.map-container {
    width: 100%;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 3px solid rgba(168, 135, 101, 0.3);
}

.map-container.no-crop {
    height: auto !important;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.map-container.no-crop img {
    height: auto !important;
    object-fit: contain !important;
}

.map-container:hover img {
    transform: scale(1.02);
}

/* --- Section 5: Infrastructure Connectivity --- */
.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(168, 135, 101, 0.3);
    margin-bottom: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: calc(-2rem - 6px);
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px var(--color-accent);
}

.timeline-time {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Section 6: Utilities --- */
.utility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.utility-card {
    background-color: var(--color-dark-gray);
    border: var(--border-luxury);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.utility-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.utility-icon {
    font-size: 2rem;
    color: var(--color-accent);
}

.utility-card h4 {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.utility-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Section 7: Gallery Preview --- */
.gallery-section {
    text-align: center;
}

.gallery-viewer {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    height: 520px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 2px solid rgba(168, 135, 101, 0.4);
    position: relative;
    background-color: var(--color-dark-gray);
}

.gallery-viewer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.30s ease-in-out, transform 0.5s ease;
}

.gallery-viewer img.fade-out {
    opacity: 0;
}

.gallery-thumbnails-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* Styled scrollbar for thumbnails */
.gallery-thumbnails-container::-webkit-scrollbar {
    height: 6px;
}
.gallery-thumbnails-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}
.gallery-thumbnails-container::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
}

.gallery-thumb {
    flex: 0 0 90px;
    height: 60px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
    box-shadow: 0 0 10px rgba(168, 135, 101, 0.5);
    transform: scale(1.05);
}

/* --- Section 8: Spatial Layouts --- */
.layout-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.layout-card {
    background-color: var(--color-dark-gray);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-luxury);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.layout-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
}

.layout-image {
    height: 250px;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
}

.layout-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.layout-card:hover .layout-image img {
    transform: scale(1.05);
}

.layout-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.layout-info h4 {
    color: var(--color-secondary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.layout-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Section 9: Business Potential --- */
.usp-list-commercial {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.commercial-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.commercial-bullet {
    background-color: rgba(168, 135, 101, 0.2);
    color: var(--color-accent);
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.commercial-text h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.commercial-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Section 10: Construction & Delivery --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: var(--border-luxury);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Section 12: USPs --- */
.usps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.usp-card {
    background: linear-gradient(135deg, rgba(71, 58, 53, 0.4) 0%, rgba(36, 28, 25, 0.6) 100%);
    border-left: 3px solid var(--color-accent);
    padding: 1.5rem;
    border-radius: 0 4px 4px 0;
    transition: var(--transition-smooth);
}

.usp-card:hover {
    background: linear-gradient(135deg, rgba(71, 58, 53, 0.6) 0%, rgba(36, 28, 25, 0.8) 100%);
    transform: translateX(5px);
}

.usp-card h4 {
    color: var(--color-secondary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usp-card h4 span {
    color: var(--color-accent);
    font-weight: 800;
}

.usp-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Floating Call to Action Bar --- */
.floating-box {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Căn thẳng hàng lề phải */
    gap: 0.8rem;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Telephone shake button */
.floating-phone {
    background-color: #27ae60;
    color: var(--color-white);
    animation: wiggle 2.5s infinite;
}

.floating-phone svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

/* Zalo button */
.floating-zalo {
    background-color: var(--color-white);
    overflow: hidden;
}

.floating-zalo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating brochure button */
.floating-download {
    width: auto;
    height: auto;
    border-radius: 30px;
    background-color: #bd1c24; /* Màu đỏ sang trọng */
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 1.4rem;
    box-shadow: 0 6px 15px rgba(189, 28, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.floating-download:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-3px) scale(1.05);
}

/* --- Popup Register Modal --- */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-wrapper.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 28, 25, 0.85);
    backdrop-filter: blur(6px);
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    z-index: 2005;
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.modal-wrapper.open .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-card .form-group label {
    color: var(--color-white);
}

.form-control {
    width: 100%;
    background-color: var(--color-dark-gray);
    border: 1px solid rgba(239, 216, 194, 0.2);
    border-radius: 4px;
    padding: 0.9rem 1.2rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(168, 135, 101, 0.2);
}

/* --- Footer --- */
footer {
    background-color: var(--color-dark-gray);
    padding: 4rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-info ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-info li {
    display: flex;
    gap: 0.8rem;
}

.footer-info li span.label {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-disclaimer {
    border-top: 1px solid rgba(239, 216, 194, 0.08);
    padding-top: 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-secondary);
    opacity: 0.65;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* --- Footer CTA Section --- */
.footer-cta-section {
    background-color: var(--color-dark-gray);
    padding: 5rem 0;
    border-bottom: var(--border-luxury);
}

.footer-cta-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.footer-cta-container h2 {
    color: var(--color-secondary);
    font-size: clamp(24px, 3.5vw, 28px);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.footer-cta-container h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-cta-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.footer-cta-form {
    background-color: var(--color-primary);
    border: 1px solid rgba(239, 216, 194, 0.15);
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    text-align: left;
}

.footer-cta-form .grid-2 {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-cta-form .form-group {
    margin-bottom: 0;
}

/* --- Keyframe Animations --- */
@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    5% { transform: rotate(-8deg); }
    10% { transform: rotate(12deg); }
    15% { transform: rotate(-10deg); }
    20% { transform: rotate(12deg); }
    25% { transform: rotate(-8deg); }
    30% { transform: rotate(6deg); }
    35% { transform: rotate(-4deg); }
    40% { transform: rotate(0); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 135, 101, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(168, 135, 101, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168, 135, 101, 0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-image-wrap {
        height: 380px;
    }
    
    .layout-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 767px) {
    .mobile-banner-wrapper {
        display: block;
        width: 100%;
        position: relative;
    }
    
    .mobile-banner-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero {
        min-height: auto;
        height: auto;
        background: none;
        width: 100%;
        position: relative;
        padding: 0;
        margin-top: var(--header-height);
        display: flex;
        flex-direction: column;
    }
    
    .hero .container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        z-index: 2;
        padding: 1.5rem 1.5rem 0 1.5rem;
        margin: 0 auto;
    }
    
    .hero .hero-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
        text-shadow: none;
    }
    
    .hero .hero-content h1,
    .hero .hero-content h2 {
        display: none !important;
    }
    
    .hero .btn {
        margin: 0 auto;
        font-size: clamp(12px, 3.5vw, 15px);
        padding: 0.8rem 1.5rem;
        width: 90%;
        max-width: 360px;
        box-shadow: 0 4px 15px rgba(189, 28, 36, 0.4);
        white-space: normal;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }
    
    .layout-cards {
        grid-template-columns: 1fr;
    }
    
    .usp-list-commercial, .usps-grid, .utility-grid, .image-collage {
        grid-template-columns: 1fr !important;
    }
    
    .image-collage .collage-item {
        grid-column: span 1 !important;
        height: auto !important; /* Keep natural proportions */
    }
    
    .utility-card {
        padding: 1.2rem;
    }
    
    .utility-card img {
        height: 200px !important;
    }
    
    .gallery-viewer {
        height: 300px;
    }
    
    .gallery-thumb {
        flex: 0 0 70px;
        height: 48px;
    }
    
    .floating-box {
        right: 15px;
        bottom: 20px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    
    .floating-download {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
}

