@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #c8964e;
    --primary-light: #dcb072;
    --secondary: #d4745f;
    --dark: #111827;
    --dark-accent: #1f2937;
    --light-bg: #fff9f2;
    --beige: #f5e6d3;
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-light: #ffffff;
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-dark: rgba(17, 24, 39, 0.8);
    
    --green-bg: #ecfdf5;
    --green-text: #059669;
    --beige-bg: #f5e6d3;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease-out);
}

ul {
    list-style: none;
}

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

.text-white {
    color: var(--white) !important;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Gradients */
.grad-gold {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.grad-dark {
    background: linear-gradient(135deg, var(--dark), var(--dark-accent));
}

.grad-beige {
    background: linear-gradient(to bottom, var(--white), var(--beige));
}

.grad-beige-reverse {
    background: linear-gradient(to bottom, var(--beige), var(--white));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 150, 78, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 150, 78, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: var(--dark-accent);
    transform: translateY(-3px);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.mobile-menu-btn {
    display: none;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease-out);
}

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

header.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-cta .btn {
    padding: 10px 25px;
    font-size: 0.75rem;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    z-index: 10;
    max-width: 900px;
}

.hero-content .logo-large {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-content .logo-large img {
    height: 120px;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary);
    width: 60px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Philosophy Section */
.quote-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 80px;
    position: relative;
    border-left: 5px solid var(--primary);
}

.quote-card i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 40px;
    left: 40px;
}

.quote-card p:first-of-type {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.quote-card .quote-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.philosophy-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(200, 150, 78, 0.1);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.philosophy-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.4s var(--ease-out);
}

.philosophy-card:hover .card-icon {
    transform: scale(1.1);
}

.philosophy-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark);
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s var(--ease-out);
    text-align: center;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.vision-card .card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: transform 0.4s var(--ease-out);
}

.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.vision-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.vision-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.vision-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

header.scrolled .mobile-menu-btn {
    color: var(--dark);
}

/* Location Section */
.location-grid {
    display: grid;
    gap: 50px;
}

.strategic-alert {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 25px;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.4s var(--ease-out);
}

.strategic-alert:hover {
    transform: translateY(-5px);
}

.strategic-alert i {
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(200, 150, 78, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-item .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 0.85rem;
    color: #ffd8a8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Apartments Section */
.bg-light {
    background-color: var(--light-bg);
}

.pricing-badge {
    max-width: 500px;
    margin: -40px auto 60px;
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.pricing-badge span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-badge h3 {
    font-size: 2rem;
    margin-top: 5px;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.apt-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease-out);
    position: relative;
    padding-bottom: 20px;
}

.apt-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.apt-header {
    padding: 30px 30px 10px;
    text-align: left;
    background: transparent;
}

.apt-header h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.apt-size {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-body);
}

.apt-body {
    padding: 0 30px 30px;
}

.apt-features-header {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.apt-features {
    margin-bottom: 25px;
}

.apt-features li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.apt-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 5px;
}

.apt-info-box {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.apt-info-box.beige {
    background-color: var(--beige-bg);
    color: var(--text-main);
}

.apt-info-box.green {
    background-color: var(--green-bg);
    color: var(--text-muted);
}

.apt-info-box.green strong {
    color: var(--green-text);
}

.apt-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apt-buttons .btn {
    width: 100%;
    padding: 18px;
    text-transform: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border: none;
}

.btn-light-outline {
    background-color: white;
    border: 1px solid #d1d5db;
    color: var(--text-main);
}

.btn-light-outline:hover {
    background-color: #f9fafb;
    border-color: var(--text-main);
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Equipment Section */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.equip-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.5s var(--ease-out);
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.equip-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.equip-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.equip-card .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--beige-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.4s var(--ease-out);
}

.equip-card:hover .icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(360deg);
}

.equip-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
}

.equip-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.equip-list .dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

.equip-card:hover .equip-list .dot {
    opacity: 1;
    transform: scale(1.2);
}

.interior-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.interior-content {
    padding: 60px;
}

.interior-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: var(--text-muted);
}

.check-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.interior-info {
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
}

.interior-info h4 {
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-tabs::-webkit-scrollbar {
    display: none;
}

.gallery-tabs button {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.gallery-tabs button.active, .gallery-tabs button:hover {
    background: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

.w-100 {
    width: 100%;
}

.info-card {
    padding: 50px;
    border-radius: 30px;
    height: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Footer */
footer {
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

footer p i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 1s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-nav i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    pointer-events: auto;
    transition: all 0.3s var(--ease-out);
}

.lightbox-nav i:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-lg);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--primary-light);
}

/* Staggered lists */
.equip-col ul li, .check-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s var(--ease-out);
}

.reveal.active .equip-col ul li, .reveal.active .check-list li {
    opacity: 1;
    transform: translateX(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content h1, .hero-content h2 {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: rgba(11, 15, 23, 0.98);
        backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out), visibility 0.5s;
        box-shadow: -20px 0 40px rgba(0,0,0,0.3);
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    header .nav-links a {
        color: var(--white) !important;
        font-size: 1.15rem;
        font-weight: 500;
        padding: 15px 0;
        margin-bottom: 5px;
        text-align: center;
        border: none;
        border-radius: 0;
        background: transparent;
        display: block;
        transition: all 0.3s var(--ease-out);
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active a:nth-child(7) { transition-delay: 0.4s; }

    .nav-links a:hover {
        color: var(--primary);
        padding-left: 0;
        background: transparent;
    }

    /* Remove the bullet/arrow for a cleaner look as requested 'minimalist' */
    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--primary);
        color: white;
        border-radius: 12px;
        z-index: 2100;
        transition: all 0.3s var(--ease-out);
        position: relative;
    }

    header {
        background: rgba(17, 24, 39, 0.85);
        backdrop-filter: blur(15px);
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu-btn.active {
        background: var(--dark);
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .interior-card {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .quote-card {
        padding: 30px;
    }
    
    .quote-card p:first-of-type {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 15px;
        margin: 0;
        max-width: 100%;
    }

    .gallery-tabs {
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .logo img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 1.5rem; /* Reduced further */
        margin-bottom: 12px;
    }

    .hero-content h2 {
        font-size: 1.1rem; /* Reduced */
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .hero-content .logo-large img {
        height: 70px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .pricing-badge {
        padding: 15px;
        margin-bottom: 30px;
    }

    .pricing-badge h3 {
        font-size: 1.1rem; /* Reduced */
    }

    .hero-content {
        width: 100%;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.75rem;
    }

    .philosophy-card h3 {
        font-size: 1.1rem;
    }

    .philosophy-card p {
        font-size: 0.85rem;
    }
}
