﻿:root {
    --primary-color: #9c0d28; /* Deep rich red from design */
    --primary-hover: #b81232;
    --primary-light: #fce8eb;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #fcfcfc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo {
    color: var(--text-dark);
}

.navbar.scrolled .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.logo {
    font-size: 2rem;
    font-family: 'Koulen', sans-serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1100;
}

.nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, background 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--primary-color);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--primary-color);
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-outline-white {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
    margin-top: 20px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary-light {
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 12px 32px;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-primary-light:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('./assets/images/main-header-bg1.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    opacity: 1;
    line-height: 1.5;
}


/* Why Us Section */
.why-us {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 80px;
    display: flex;
    gap: 24px;
}

.why-title {
    flex: 0 0 180px;
}

.why-title h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.why-features {
    display: flex;
    gap: 24px;
    flex: 1;
}

.feature {
    flex: 1;
    min-width: 0;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Offerings Section */
.offerings {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/images/main-offerings-bg.jpg') center/cover fixed;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    transition: background-image 0.5s ease-in-out;
}

.offerings .container {
    max-width: 1400px; /* Increased width significantly */
}

.offerings h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.8);
    border-radius: 40px;
    padding: 5px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.tab {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.tab.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tab-contents-wrapper {
    position: relative;
    min-height: 250px;
}

.tab-content {
    display: none;
    animation: slideFadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cards.cards-centered {
    grid-template-columns: repeat(2, 340px);
    justify-content: center;
}

.cards.cards-single {
    display: flex;
    justify-content: center;
}

.cards.cards-single .card {
    width: 450px;
    max-width: 100%;
}

.card {
    background: var(--white);
    color: var(--text-dark);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

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

.card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(156, 13, 40, 0.25);
}

.card-read-more {
    margin-top: 20px;
    align-self: flex-start;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    pointer-events: none;
}

.card:hover .card-read-more {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-read-more:hover {
    background: var(--primary-color);
    color: var(--white);
}

.card-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.card-read-more:hover i {
    transform: translateX(4px);
}

.card-label {
    font-size: 0.85rem;
    color: #b3b3b3;
    margin-bottom: 5px;
    font-weight: 400;
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How to get started Section */
.how-to-start {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    min-height: 600px;
    padding: 60px 0;
}

.start-image {
    width: 45%;
    position: relative;
}

.start-image img.building-img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    display: block;
    border-radius: 0 30px 30px 0;
}

.start-image img.building-logo {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.start-content {
    width: 55%;
    background: transparent;
    color: var(--white);
    padding: 0 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.start-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.steps {
    margin-bottom: 24px;
}

.steps li {
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-icon {
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--white);
    position: relative;
    margin-top: 5px;
}

.step-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps p {
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.steps p strong {
    font-weight: 600;
}

.start-content .btn {
    align-self: flex-end;
}

/* About Section */
.about {
    background: #f7f7f7;
    padding: 60px 0;
}

.about-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-container img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    background: #f7f7f7;
    padding: 60px 0;
}

.contact-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.contact-text {
    flex: 0 0 350px;
}

.contact-text h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-submit .btn-submit-form {
    background: #dfbac3;
    color: #923a48;
    border: 1px solid #923a48;
    padding: 12px 35px;
    font-family: inherit;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.form-submit .btn-submit-form:hover {
    background: #923a48;
    color: var(--white);
}

/* Footer */
.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
}

.logo-text {
    color: var(--primary-color);
    font-size: 2rem;
    font-family: 'Koulen', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-color);
}

.social-icon {
    color: #000000;
    background: transparent;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.footer-col p:not(:first-child):hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 25px 80px;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background-color: var(--bg-light);
    border-top: 1px solid #e5e5e5;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary-color);
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-cards.four-cols {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 24px;
}

.pricing-cards.four-cols .pricing-card {
    padding: 30px 15px;
}

.pricing-cards.four-cols .amount {
    font-size: 2.2rem;
}

.pricing-cards.four-cols .currency {
    font-size: 1.1rem;
}

.pricing-cards.four-cols .card-top {
    margin-bottom: 15px;
}

.pricing-cards.four-cols .plan-features {
    margin-bottom: 25px;
}

.pricing-view {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pricing-view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #ccc;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    z-index: 2;
}

.pricing-card.recommended {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.recommended-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: orange;
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
}

.card-top {
    margin-bottom: 30px;
}

.plan-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-dark);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.plan-features {
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-outline-dark {
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pricing-card .btn-primary {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .why-us {
        flex-direction: column;
        gap: 40px;
    }
    .why-title {
        flex: auto;
    }
}

@media (max-width: 850px) {
    .container, .nav-container, .hero-content, .why-us, .about-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }
    .about, .pricing, .contact, .footer, .start-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .start-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer {
        padding: 60px 30px;
    }
    .footer-bottom {
        padding: 25px 30px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 100px 30px 30px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0e0e3;
    }
    .nav-links a {
        color: var(--text-dark) !important;
        display: block;
        padding: 18px 0;
        font-size: 1rem;
        font-weight: 600;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    .nav-links a:hover {
        color: var(--primary-color) !important;
        padding-left: 6px;
    }
    .nav-toggle {
        display: flex;
    }
    /* Hide the contact-us pill button on mobile, drawer holds primary actions */
    .navbar .btn-outline {
        display: none;
    }
    /* Backdrop when drawer is open */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(20, 5, 8, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 900;
    }
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hero-logo img {
        width: 140px;
    }
    .about-wrapper, .how-to-start {
        flex-direction: column;
    }
    .start-image, .start-content {
        width: 100%;
    }
    .start-image {
        min-height: 300px;
    }
    .start-image img.building-img {
        border-radius: 0;
    }
    .why-features {
        flex-direction: column;
        gap: 32px;
    }
    .contact-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .contact-text {
        flex: auto;
    }
    .contact-form {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .cards, .pricing-cards, .pricing-cards.four-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    /* Mobile Consistency Resets */
    .pricing-card .amount, 
    .pricing-cards.four-cols .amount {
        font-size: 2.8rem;
    }
    .pricing-card .currency,
    .pricing-cards.four-cols .currency {
        font-size: 1.2rem;
    }
    .pricing-card, 
    .pricing-cards.four-cols .pricing-card {
        padding: 40px 25px;
    }
    .pricing-cards.four-cols .card-top {
        margin-bottom: 30px;
    }
    .pricing-cards.four-cols .plan-features {
        margin-bottom: 40px;
    }
    .cards.cards-centered {
        grid-template-columns: 1fr;
    }
    .cards.cards-single .card {
        width: 100%;
    }
    .tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .container, .nav-container, .hero-content, .why-us, .about-wrapper, .start-content, .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .cards, .cards.cards-centered, .pricing-cards, .pricing-cards.four-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pricing-card .amount, 
    .pricing-cards.four-cols .amount {
        font-size: 2.5rem;
    }
    .footer {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}

/* Pricing Sticker Tag */
.pricing .container {
    position: relative;
}

.pricing-sticker-tag {
    position: absolute;
    right: 20px;
    top: 0px;
    background-color: var(--primary-color);
    color: white;
    width: 140px;
    padding: 20px 10px 40px;
    border: 5px solid white;
    border-radius: 12px 12px 0 0;
    text-align: center;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.1);
    transform: rotate(12deg);
    z-index: 10;
    font-family: 'Koulen', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
    animation: floatingSticker 3s ease-in-out infinite;
}

.sticker-header {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.9;
}

.sticker-amount {
    font-size: 2.8rem;
    line-height: 0.85;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.sticker-footer {
    font-size: 0.85rem;
    letter-spacing: 1px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

@keyframes floatingSticker {
    0%, 100% { transform: rotate(12deg) translateY(0); }
    50% { transform: rotate(10deg) translateY(-10px); }
}

@media (max-width: 1200px) {
    .pricing-sticker-tag {
        position: relative;
        right: auto;
        top: auto;
        margin: 0 auto 30px;
        transform: rotate(0deg);
        animation: none;
    }
}

/* Form Feedback Messages */
.form-message {
    font-size: 0.9rem;
    margin-right: 20px;
    padding: 10px;
    border-radius: 5px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    color: #2e7d32;
    background-color: #e8f5e9;
}

.form-message.error {
    display: block;
    color: #c62828;
    background-color: #ffebee;
}

.form-submit {
    align-items: center;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f9f4f5;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: 'FAQ';
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Koulen', sans-serif;
    font-size: 18rem;
    color: rgba(156, 13, 40, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: 10px;
}

.faq-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left sticky panel */
.faq-sidebar {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 4px;
    margin-bottom: 22px;
}

.faq-label i {
    font-size: 0.8rem;
}

.faq-sidebar h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 700;
}

.faq-sidebar h2 span {
    color: var(--primary-color);
}

.faq-sidebar p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.faq-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.faq-sidebar-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.faq-sidebar-cta i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-sidebar-cta:hover i {
    transform: translateX(4px);
}

/* Right accordion list */
.faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #ede0e3;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 24px rgba(156, 13, 40, 0.08);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(156, 13, 40, 0.12);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #fdf5f6;
}

.faq-item.active .faq-question {
    background: #fdf5f6;
}

.faq-question-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.faq-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-num {
    background: var(--primary-color);
    color: var(--white);
}

.faq-question-text {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #d8c0c5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 24px 22px 72px;
    border-top: 1px solid #f0e4e7;
}

.faq-answer-inner p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.85;
    padding-top: 16px;
}

/* Bottom CTA strip */
.faq-bottom {
    margin-top: 40px;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-bottom-text p:first-child {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.faq-bottom-text p:last-child {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.faq-bottom-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.faq-bottom-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-inner {
        gap: 50px;
    }
    .faq-sidebar {
        flex: 0 0 260px;
    }
    .faq-sidebar h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 850px) {
    .faq {
        padding: 70px 0;
    }
    .faq::before {
        font-size: 10rem;
    }
    .faq-inner {
        flex-direction: column;
        gap: 40px;
    }
    .faq-sidebar {
        flex: none;
        position: static;
        width: 100%;
    }
    .faq-sidebar h2 {
        font-size: 2rem;
    }
    .faq-stats {
        margin-top: 28px;
        padding-top: 24px;
    }
    .faq-answer-inner {
        padding-left: 24px;
    }
    .faq-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .faq-bottom {
        padding: 22px 20px;
    }
    .faq-question {
        padding: 18px 16px;
    }
    .faq-answer-inner {
        padding: 0 16px 18px;
    }
    .faq-num {
        display: none;
    }
    .faq-answer-inner p {
        padding-top: 12px;
    }
}


/* ========== Offering Modal ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 5, 8, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

/* Subtle red accent stripe at the top */
.modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 16px 16px 0 0;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f7e8eb;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content {
    padding: 50px 45px 40px;
}

.modal-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 700;
}

.modal-intro {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    background: #fdf5f6;
    border-radius: 10px;
    margin-bottom: 22px;
    border-left: 3px solid var(--primary-color);
}

.modal-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.55;
}

.modal-feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.modal-note {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 26px;
    padding-left: 14px;
    border-left: 2px solid #e8d8db;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.modal-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(156, 13, 40, 0.3);
}

.modal-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.modal-cta:hover i {
    transform: translateX(4px);
}

/* Lock body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 40px 24px 30px;
    }
    .modal-content h2 {
        font-size: 1.6rem;
    }
    .modal-features {
        padding: 18px;
    }
}


/* ========== Partners / Trusted By Section ========== */
.partners {
    padding: 50px 0 45px;
    background: linear-gradient(180deg, #fdf5f6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners::before,
.partners::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 13, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.partners::before {
    top: -50px;
    left: -50px;
}

.partners::after {
    bottom: -50px;
    right: -50px;
}

.partners-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 28px;
    padding: 0 20px;
}

.partners-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(156, 13, 40, 0.12);
    border: 1px solid #f0dde1;
}

.partners-label i {
    font-size: 0.75rem;
}

.partners-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 700;
}

.partners-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
}

/* Marquee container with fading edges */
.partners-marquee {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partner-logo {
    flex: 0 0 auto;
    height: 70px;
    min-width: 160px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #efe2e5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    box-shadow: 0 4px 16px rgba(156, 13, 40, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 14px 30px rgba(156, 13, 40, 0.18);
    border-color: var(--primary-color);
}

/* Placeholder logo styling — replace .partner-logo content with <img> when ready */
.partner-logo span {
    font-family: 'Koulen', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--text-light);
    white-space: nowrap;
    transition: color 0.35s ease;
}

.partner-logo span strong {
    color: var(--primary-color);
    font-weight: 700;
}

.partner-logo:hover span {
    color: var(--text-dark);
}

/* Default image styling */
.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Logos that have a white/light background — blend it away */
.partner-logo.logo-blend {
    padding: 8px 16px;
}

.partner-logo.logo-blend img {
    mix-blend-mode: multiply;
    max-height: 100%;
    max-width: 100%;
}

/* Same as logo-blend but scales the logo up — for logos with lots of internal padding */
.partner-logo.logo-blend-big {
    padding: 0;
    overflow: hidden;
}

.partner-logo.logo-blend-big img {
    mix-blend-mode: multiply;
    height: 200%;
    width: auto;
    max-width: none;
    max-height: none;
}

/* Slightly smaller scale for tightly-cropped logos */
.partner-logo.logo-blend-mid {
    padding: 0;
    overflow: hidden;
}

.partner-logo.logo-blend-mid img {
    mix-blend-mode: multiply;
    height: 130%;
    width: auto;
    max-width: none;
    max-height: none;
}

@media (max-width: 850px) {
    .partners {
        padding: 60px 0 50px;
    }
    .partners-header {
        margin-bottom: 36px;
    }
    .partners-header h2 {
        font-size: 1.7rem;
    }
    .partners-track {
        gap: 40px;
    }
    .partner-logo {
        min-width: 170px;
        height: 75px;
        padding: 14px 20px;
    }
    .partner-logo span {
        font-size: 1.15rem;
    }
}


/* =================================================================
   ABOUT PAGE STYLES
================================================================= */

.about-page {
    background: #fefcfc;
}

.nav-links a.active-link {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* ----- About Hero ----- */
.about-hero {
    position: relative;
    min-height: 65vh;
    background:
        linear-gradient(135deg, rgba(156, 13, 40, 0.85) 0%, rgba(70, 5, 18, 0.9) 100%),
        url('assets/images/main-header-bg1.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.about-hero-watermark {
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: 'Koulen', sans-serif;
    font-size: 22rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
    letter-spacing: 5px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.65rem;
    opacity: 0.6;
}

.breadcrumb span {
    color: var(--white);
    font-weight: 600;
}

.about-hero .hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-hero h1 {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.about-hero h1 span {
    background: linear-gradient(120deg, #ffd9e0 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.about-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto;
}

/* ----- Section Tags ----- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.section-tag i {
    font-size: 0.78rem;
}

.accent {
    color: var(--primary-color);
}

/* ----- About Intro ----- */
.about-intro {
    padding: 90px 0;
    background: var(--white);
}

.about-intro-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-intro-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ----- Intro Visual (building image) ----- */
.about-intro-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 560px;
}

.intro-img-decor {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary-color);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.4;
}

.intro-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(156, 13, 40, 0.2);
    z-index: 1;
}

.intro-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(156, 13, 40, 0.15) 100%);
    pointer-events: none;
}

.intro-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-intro-visual:hover .intro-img-frame img {
    transform: scale(1.05);
}

.intro-floating-stat {
    position: absolute;
    background: var(--white);
    padding: 16px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 14px 40px rgba(156, 13, 40, 0.18);
    z-index: 2;
    border: 1px solid #f0e0e3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.intro-floating-stat.top {
    top: 30px;
    right: -20px;
    animation: floatY 4s ease-in-out infinite;
}

.intro-floating-stat.bottom {
    bottom: 30px;
    left: -20px;
    animation: floatY 4s ease-in-out infinite reverse;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7d0a20 100%);
    border-color: transparent;
    color: var(--white);
}

.intro-floating-stat i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.intro-floating-stat.bottom i {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.intro-floating-stat strong {
    display: block;
    font-family: 'Koulen', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.intro-floating-stat.bottom strong {
    color: var(--white);
}

.intro-floating-stat span {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.intro-floating-stat.bottom span {
    color: rgba(255, 255, 255, 0.85);
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.intro-stat-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: 14px;
    border: 1px solid #f0e0e3;
    box-shadow: 0 8px 24px rgba(156, 13, 40, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(156, 13, 40, 0.15);
}

.intro-stat-card i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.intro-stat-card strong {
    font-family: 'Koulen', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    line-height: 1;
}

.intro-stat-card span {
    color: var(--text-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.intro-stat-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7d0a20 100%);
    color: var(--white);
    border-color: transparent;
}

.intro-stat-card.highlight i,
.intro-stat-card.highlight strong {
    color: var(--white);
}

.intro-stat-card.highlight span {
    color: rgba(255, 255, 255, 0.85);
}

/* ----- Our Story ----- */
.our-story {
    padding: 90px 0;
    background: linear-gradient(180deg, #fefcfc 0%, #fdf5f6 100%);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 13, 40, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.our-story-wrap {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.story-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.story-number {
    font-family: 'Koulen', sans-serif;
    font-size: 9rem;
    line-height: 0.85;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-shadow: 0 6px 24px rgba(156, 13, 40, 0.2);
}

.story-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.story-content h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.story-content p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.story-highlight {
    background: var(--white);
    padding: 22px 26px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-dark) !important;
    box-shadow: 0 8px 24px rgba(156, 13, 40, 0.08);
    margin-top: 28px !important;
    line-height: 1.75 !important;
}

/* ----- Vision & Mission ----- */
.vision-mission {
    padding: 90px 0;
    background: var(--white);
}

.vm-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.vm-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.vm-card {
    background: var(--white);
    border: 1px solid #f0e0e3;
    border-radius: 18px;
    padding: 42px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(156, 13, 40, 0.15);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.vm-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vm-card blockquote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 18px;
    font-style: italic;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

.vm-card-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0810 100%);
    border-color: transparent;
    color: var(--white);
}

.vm-card-dark .vm-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.vm-card-dark .vm-label {
    color: #ffb3c0;
}

.vm-card-dark blockquote {
    color: var(--white);
}

.vm-card-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* ----- What We Offer ----- */
.what-we-offer {
    padding: 90px 0;
    background: linear-gradient(180deg, #fdf5f6 0%, #fefcfc 100%);
}

.wwo-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.wwo-header h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.wwo-header p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
}

.wwo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.wwo-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid #f0e0e3;
    box-shadow: 0 6px 20px rgba(156, 13, 40, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wwo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(156, 13, 40, 0.15);
    border-color: var(--primary-color);
}

.wwo-card-wide {
    grid-column: 1 / -1;
}

.wwo-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.wwo-card:hover .wwo-icon {
    background: var(--primary-color);
    color: var(--white);
}

.wwo-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.wwo-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ----- Our Spaces Gallery ----- */
.spaces-gallery {
    padding: 90px 0;
    background: var(--white);
}

.sg-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.sg-header h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.sg-header p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.sg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px 220px;
    gap: 18px;
}

/* KaamGah — large rectangle: 2 cols × 2 rows (top-left feature) */
.sg-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Meeting Rooms — square: 1 col × 1 row (top-right) */
.sg-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Conference Room — wide rectangle: 1 col × 1 row (top-right) */
.sg-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

/* Studio '68 — wide: 2 cols × 1 row (middle-right) */
.sg-item:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

/* Café '68 — wide rectangle: 2 cols × 1 row (bottom-left) */
.sg-item:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

/* Private Offices — wide rectangle: 2 cols × 1 row (bottom-right) */
.sg-item:nth-child(6) {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

.sg-large,
.sg-medium {
    grid-column: auto;
    grid-row: auto;
}

.sg-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(156, 13, 40, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sg-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(156, 13, 40, 0.2);
}

.sg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sg-item:hover img {
    transform: scale(1.08);
}

.sg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 5, 8, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    transition: background 0.4s ease;
}

.sg-item:hover .sg-overlay {
    background: linear-gradient(180deg, rgba(156, 13, 40, 0.15) 0%, rgba(20, 5, 8, 0.92) 100%);
}

.sg-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.sg-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.sg-large .sg-overlay h3,
.sg-grid .sg-item:nth-child(1) .sg-overlay h3 {
    font-size: 1.7rem;
}

/* ----- Productivity ----- */
.productivity {
    padding: 90px 0;
    background: var(--white);
}

.productivity-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.prod-text h2 {
    font-size: 2.4rem;
    margin-bottom: 22px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.prod-text p {
    color: var(--text-light);
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 14px;
}

.prod-sub {
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    margin-top: 22px !important;
}

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.prod-item {
    background: linear-gradient(135deg, #fdf5f6 0%, #ffffff 100%);
    border: 1px solid #f0e0e3;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prod-item:hover {
    transform: translateX(4px);
    border-color: var(--primary-color);
}

.prod-item i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(156, 13, 40, 0.1);
}

.prod-item span {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
}

/* ----- More Than ----- */
.more-than {
    padding: 60px 0;
    background: linear-gradient(180deg, #fefcfc 0%, #fdf5f6 100%);
}

.mt-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(156, 13, 40, 0.08);
    border: 1px solid #f0e0e3;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mt-card::before,
.mt-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 13, 40, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.mt-card::before {
    top: -50px;
    left: -50px;
}

.mt-card::after {
    bottom: -50px;
    right: -50px;
}

.mt-card h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.mt-card p {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.85;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----- Why Choose ----- */
.why-choose {
    padding: 90px 0;
    background: var(--white);
}

.wc-header {
    text-align: center;
    margin-bottom: 50px;
}

.wc-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.wc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fdf5f6 0%, #ffffff 100%);
    border: 1px solid #f0e0e3;
    padding: 18px 22px;
    border-radius: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.wc-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: var(--white);
}

.wc-item i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.wc-item span {
    color: var(--text-dark);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ----- Team ----- */
.team {
    padding: 90px 0;
    background: linear-gradient(180deg, #fdf5f6 0%, #fefcfc 100%);
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.team-header h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-header p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #f0e0e3;
    box-shadow: 0 8px 24px rgba(156, 13, 40, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #d4174a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(156, 13, 40, 0.18);
}

.team-card-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7d0a20 100%);
    color: var(--white);
    border-color: transparent;
}

.team-card-featured::before {
    background: linear-gradient(90deg, #ffd9e0, var(--white));
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c41a3f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 10px 24px rgba(156, 13, 40, 0.25);
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
}

.team-card-featured .team-avatar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.team-card-featured .team-avatar::after {
    border-color: rgba(255, 255, 255, 0.4);
}

.team-avatar span {
    font-family: 'Koulen', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-card-featured h3 {
    color: var(--white);
}

.team-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 4px 12px;
    background: var(--primary-light);
    border-radius: 20px;
}

.team-card-featured .team-role {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.team-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
}

.team-card-featured p {
    color: rgba(255, 255, 255, 0.88);
}

/* ----- Commitment / CTA ----- */
.commitment {
    padding: 90px 0;
    background: var(--white);
}

.commitment-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6d0818 100%);
    border-radius: 24px;
    padding: 70px 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(156, 13, 40, 0.3);
}

.commitment-card::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 30px;
    font-family: 'Georgia', serif;
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
}

.commitment-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.commitment-card h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.commitment-card > p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.commitment-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 40px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.commitment-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-cta-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-cta-light i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-cta-light:hover i {
    transform: translateX(4px);
}

.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, border-color 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    .about-intro-wrap,
    .productivity-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-intro-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .sg-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }
    .sg-grid .sg-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .sg-grid .sg-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .sg-grid .sg-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .sg-grid .sg-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .sg-grid .sg-item:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    .sg-grid .sg-item:nth-child(6) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
    .sg-large {
        grid-column: auto;
        grid-row: auto;
    }
    .sg-medium {
        grid-column: auto;
        grid-row: auto;
    }
    .our-story-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .story-marker {
        flex-direction: row;
        padding-top: 0;
    }
    .story-line {
        height: 2px;
        width: 80px;
        background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    }
    .vm-grid,
    .wwo-grid {
        grid-template-columns: 1fr;
    }
    .wwo-card-wide {
        grid-column: auto;
    }
    .wc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .commitment-card {
        padding: 50px 30px;
    }
    .commitment-card h2 {
        font-size: 1.8rem;
    }
    .mt-card {
        padding: 40px 28px;
    }
    .mt-card h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 120px 20px 60px;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero-watermark {
        font-size: 14rem;
    }
    .about-intro,
    .our-story,
    .vision-mission,
    .what-we-offer,
    .spaces-gallery,
    .productivity,
    .why-choose,
    .team,
    .commitment {
        padding: 60px 0;
    }
    .about-intro-cards {
        grid-template-columns: 1fr;
    }
    .intro-floating-stat.top {
        right: 10px;
        top: 14px;
        padding: 12px 16px;
    }
    .intro-floating-stat.bottom {
        left: 10px;
        bottom: 14px;
        padding: 12px 16px;
    }
    .intro-floating-stat strong {
        font-size: 1.2rem;
    }
    .sg-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    .sg-grid .sg-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
    .sg-large,
    .sg-medium {
        grid-column: auto;
        grid-row: auto;
    }
    .sg-large .sg-overlay h3 {
        font-size: 1.4rem;
    }
    .story-content h2,
    .vm-header h2,
    .wwo-header h2,
    .prod-text h2,
    .wc-header h2,
    .team-header h2,
    .commitment-card h2 {
        font-size: 1.7rem;
    }
    .about-intro-text h2 {
        font-size: 1.7rem;
    }
    .story-number {
        font-size: 6rem;
    }
    .wc-grid,
    .prod-grid {
        grid-template-columns: 1fr;
    }
    .wwo-card {
        flex-direction: column;
        gap: 14px;
    }
    .vm-card {
        padding: 32px 24px;
    }
}




/* =================================================================
   GALLERY PAGE — Editorial light theme
================================================================= */

.gallery-page {
    background: #fefcfc;
}

/* ----- Hero (red gradient over building image, centered) ----- */
.gp-hero {
    position: relative;
    min-height: 50vh;
    background:
        linear-gradient(135deg, rgba(156, 13, 40, 0.85) 0%, rgba(70, 5, 18, 0.9) 100%),
        url('assets/images/main-header-bg1.jpg') center/cover no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 70px;
    overflow: hidden;
}

.gp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.gp-hero-watermark {
    position: absolute;
    bottom: -50px;
    right: -10px;
    font-family: 'Koulen', sans-serif;
    font-size: 22rem;
    color: rgba(255, 255, 255, 0.07);
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
    letter-spacing: 5px;
}

.gp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.gp-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.gp-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.gp-hero .breadcrumb a:hover {
    color: var(--white);
}

.gp-hero .breadcrumb i {
    font-size: 0.65rem;
    opacity: 0.6;
}

.gp-hero .breadcrumb > span:not(.hero-tag) {
    color: var(--white);
    font-weight: 600;
}

.gp-hero .hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-left: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gp-hero h1 {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.gp-hero h1 span {
    color: var(--white);
    font-style: italic;
    font-weight: 600;
}

.gp-hero p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto;
}

/* ----- Filter Pills (sticky) ----- */
.gp-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 90;
    padding: 18px 0;
    background: rgba(254, 252, 252, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #f0e0e3;
}

.gp-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gp-pill {
    background: var(--white);
    color: var(--text-light);
    border: 1px solid #f0e0e3;
    padding: 9px 18px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gp-pill:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-light);
}

.gp-pill.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(156, 13, 40, 0.25);
}

/* ----- Section: side-by-side text + grid ----- */
.gp-section {
    padding: 80px 0;
    background: var(--white);
}

.gp-section-tinted {
    background: linear-gradient(180deg, #fdf5f6 0%, #ffffff 100%);
}

.gp-section-row {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.gp-row-reverse {
    grid-template-columns: 1fr 320px;
}

.gp-row-reverse .gp-side {
    order: 2;
}

.gp-row-reverse .gp-grid {
    order: 1;
}

/* Sticky side text */
.gp-side {
    position: sticky;
    top: 150px;
    padding: 30px 28px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid #f0e0e3;
    box-shadow: 0 10px 30px rgba(156, 13, 40, 0.06);
}

.gp-section-tinted .gp-side {
    background: var(--white);
}

.gp-side-num {
    display: block;
    font-family: 'Koulen', sans-serif;
    font-size: 4rem;
    line-height: 0.85;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 18px;
    opacity: 0.85;
}

.gp-side .section-tag {
    margin-bottom: 14px;
}

.gp-side h2 {
    font-size: 1.8rem;
    line-height: 1.15;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 14px;
}

.gp-side h2 .accent {
    color: var(--primary-color);
    font-style: italic;
}

.gp-side p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.gp-side-deco {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 22px;
    border-radius: 2px;
}

/* ----- Image Grids ----- */
.gp-grid {
    display: grid;
    gap: 16px;
}

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

.gp-grid-3 .gp-tile:nth-child(1) {
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
}

.gp-grid-3 .gp-tile:nth-child(2),
.gp-grid-3 .gp-tile:nth-child(3) {
    aspect-ratio: 1 / 1;
}

.gp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

.gp-grid-4 .gp-tile:nth-child(1) {
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
}

.gp-grid-4 .gp-tile:nth-child(n+2) {
    aspect-ratio: 4 / 3;
}

/* ----- Tile (clean white card style) ----- */
.gp-tile {
    position: relative;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 8px 24px rgba(156, 13, 40, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gp-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(156, 13, 40, 0.18);
}

.gp-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gp-tile:hover img {
    transform: scale(1.07);
}

/* Red-tinted overlay on hover (no more dark gradient) */
.gp-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(156, 13, 40, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gp-tile:hover::before {
    opacity: 1;
}

.gp-tile figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 3;
}

.gp-tile:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

/* Magnifier indicator on hover */
.gp-tile::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

.gp-tile:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* "+N more" overlay on the 3rd tile when there are extra hidden images */
.gp-tile.gp-tile-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 5, 8, 0.6);
    opacity: 1;
    z-index: 2;
}

.gp-tile.gp-tile-more .gp-more-count {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: var(--white);
    font-family: 'Koulen', sans-serif;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.gp-tile.gp-tile-more:hover .gp-more-count {
    transform: scale(1.05);
}

.gp-tile.gp-tile-more .gp-more-count strong {
    font-size: 3.5rem;
    line-height: 0.85;
    letter-spacing: 2px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.gp-tile.gp-tile-more .gp-more-count span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 8px;
    opacity: 0.9;
}

/* Hide caption on the +N tile, since the count is the focus */
.gp-tile.gp-tile-more figcaption {
    display: none;
}

.gp-tile.gp-tile-more::after {
    /* Keep the magnifier subtle but visible by default */
    opacity: 1;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

/* ----- Closing CTA ----- */
.gp-cta {
    padding: 80px 0;
    background: var(--white);
}

.gp-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6d0818 100%);
    border-radius: 24px;
    padding: 70px 60px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(156, 13, 40, 0.3);
}

.gp-cta-card::before {
    content: '"';
    position: absolute;
    top: -60px;
    left: 30px;
    font-family: 'Georgia', serif;
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    pointer-events: none;
}

.gp-cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gp-cta-card h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.gp-cta-card .accent {
    color: #ffd9e0;
    font-style: italic;
}

.gp-cta-card > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.gp-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ----- Lightbox ----- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lb-stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

.lb-stage img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: block;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lb-stage img {
    transform: scale(1);
}

.lb-caption {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lb-counter {
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.lb-close,
.lb-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.lb-close {
    top: 24px;
    right: 24px;
    font-size: 1.1rem;
}

.lb-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.lb-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}

.lb-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .gp-hero {
        padding: 110px 20px 60px;
    }
    .gp-hero h1 {
        font-size: 3rem;
    }
    .gp-section-row,
    .gp-row-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .gp-side {
        position: static;
        padding: 24px;
    }
    .gp-row-reverse .gp-side {
        order: 0;
    }
    .gp-row-reverse .gp-grid {
        order: 0;
    }
    .gp-side-num {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .gp-hero {
        padding: 100px 20px 50px;
    }
    .gp-hero h1 {
        font-size: 2.4rem;
    }
    .gp-hero-watermark {
        font-size: 13rem;
    }
    .gp-hero .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .gp-hero .hero-tag {
        margin-left: 0;
    }
    .gp-section {
        padding: 50px 0;
    }
    .gp-grid-3,
    .gp-grid-4 {
        grid-template-columns: 1fr;
    }
    .gp-grid-3 .gp-tile:nth-child(1),
    .gp-grid-4 .gp-tile:nth-child(1) {
        grid-column: auto;
    }
    .gp-grid-3 .gp-tile:nth-child(n),
    .gp-grid-4 .gp-tile:nth-child(n) {
        aspect-ratio: 4 / 3;
    }
    .gp-cta-card {
        padding: 50px 28px;
    }
    .gp-cta-card h2 {
        font-size: 1.7rem;
    }
    .lightbox {
        padding: 60px 16px;
    }
    .lb-nav {
        width: 42px;
        height: 42px;
    }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
}
