/* 
   Infinity Beach Resort Flecheiras - Premium Dark Theme (Black & Cyber Cyan)
   Colors: Obsidian Black, Space Gray, Electric Cyan, Royal Blue
   Fonts: Outfit (Headings) & Inter (Body)
*/

:root {
    /* Color Palette - Premium Dark Theme */
    --bg-primary: #050508;        /* Obsidian Deep Black */
    --bg-secondary: #0c0e14;      /* Space Gray / Graphite */
    --bg-tertiary: #131722;       /* Slate Cyber Gray */
    --color-ocean: #00f0ff;       /* Electric Cyan / Neon Blue (Accents) */
    --color-ocean-light: #0072ff; /* Royal Blue (Gradients) */
    --color-seafoam: #005086;     /* Dark Sapphire Muted Blue */
    --color-sand: #dcc5a2;        /* Champagne Sand Accent (Muted Details) */
    --color-white: #ffffff;
    --color-text-primary: #f3f4f6;   /* Cool Soft White */
    --color-text-secondary: #a9b6be; /* Muted Blue-Gray Slate */
    --color-text-muted: #60737d;     /* Muted Mist Gray */
    --color-border: rgba(0, 240, 255, 0.08); /* Cyber Cyan border */
    
    /* Gradients */
    --ocean-gradient: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-ocean-light) 100%);
    --btn-gradient: linear-gradient(135deg, var(--color-ocean-light) 0%, #00c0ff 50%, var(--color-ocean) 100%);
    --hero-overlay: linear-gradient(to bottom, rgba(5, 5, 8, 0.4) 0%, rgba(5, 5, 8, 0.95) 75%, rgba(5, 5, 8, 1) 100%);
    --card-gradient: linear-gradient(180deg, #0c0e14 0%, #08090d 100%);
    
    /* Glassmorphism & Shadow Systems */
    --glass-bg: rgba(5, 5, 8, 0.85);
    --glass-border: rgba(0, 240, 255, 0.1);
    --glass-blur: blur(20px);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.03);
    --cyan-glow: 0 0 20px rgba(0, 240, 255, 0.25);
    --text-cyan-glow: 0 0 15px rgba(0, 240, 255, 0.5);

    /* Transitions & Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--color-text-primary);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-white);
    line-height: 1.25;
}

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

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1f2833;
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-ocean);
}

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

.section-padding {
    padding: 8rem 0;
}

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

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

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-text-secondary);
}

.text-gold {
    color: var(--color-ocean);
    text-shadow: var(--text-cyan-glow);
}

.section-subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header {
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 60%, var(--color-ocean) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.125rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--btn-gradient);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.45);
}

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

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.04);
    border-color: var(--color-ocean);
    transform: translateY(-2px);
    box-shadow: var(--cyan-glow);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

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

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
    border-bottom-color: rgba(0, 240, 255, 0.15);
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.logo-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
}

.vortex-svg {
    width: 100%;
    height: 100%;
    animation: spin 25s linear infinite;
}

.logo:hover .vortex-svg {
    animation-duration: 6s;
}

.logo-text {
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-white);
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

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

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

.btn-nav {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 0.4rem 1.1rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--btn-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--cyan-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: visible;
    background: url('images/vortix_facade.png') no-repeat center center/cover;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 60%, var(--color-ocean) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.18);
    color: var(--color-ocean);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--cyan-glow);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Hero Stats overlay */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 5;
    display: flex;
    background: var(--bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem 4rem;
    box-shadow: var(--shadow-premium);
    max-width: 1000px;
    width: calc(100% - 4rem);
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background-color: var(--color-border);
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll indicator mouse */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-ocean);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s ease-in-out infinite;
}

/* About / Who We Are Section */
.about {
    background-color: var(--bg-primary);
    padding-top: 12rem;
}

.about h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.about p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.hl-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ocean);
    line-height: 1;
    text-shadow: var(--text-cyan-glow);
}

.hl-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

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

.about-image-wrapper {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-image {
    width: 100%;
    object-fit: cover;
}

/* Concept / Location Section Styles */
.concept {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.concept h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.location-advantages {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-advantages li {
    position: relative;
    padding-left: 2rem;
    color: var(--color-text-secondary);
}

.location-advantages li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-ocean);
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: var(--text-cyan-glow);
}

.location-advantages strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 0.25rem;
}

/* CSS Route Map Representation */
.route-map-box {
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.route-node {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-text-muted);
    display: inline-block;
    border: 3px solid rgba(255, 255, 255, 0.05);
}

.node-dot.gold {
    background-color: var(--color-ocean);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--cyan-glow);
    animation: pulseGlow 2s infinite;
}

.route-node h5 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.route-node p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.route-line {
    border-left: 2px dashed rgba(255, 255, 255, 0.1);
    margin-left: 7px;
    padding-left: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.route-progress {
    position: absolute;
    top: 0;
    left: -2px;
    height: 100%;
    width: 2px;
    background: var(--ocean-gradient);
}

.route-info-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--color-ocean);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    box-shadow: var(--cyan-glow);
}

/* Apartments & Blueprints tabbed layout */
.apartments {
    background-color: var(--bg-primary);
}

.block-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.block-tab-btn {
    flex: 1;
    max-width: 450px;
    text-align: left;
    padding: 1.5rem 2rem;
    border: 1px solid var(--color-border);
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.block-tab-btn:hover {
    border-color: rgba(0, 240, 255, 0.2);
}

.block-tab-btn.active {
    border-color: var(--color-ocean);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-premium), var(--cyan-glow);
}

.block-tab-btn .tab-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.block-tab-btn.active .tab-title {
    color: var(--color-white);
}

.block-tab-btn .tab-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.block-tab-btn.active .tab-subtitle {
    color: var(--color-text-secondary);
}

/* Block content layouts */
.block-content {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

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

/* Floor selector within block */
.floor-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.floor-tab-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 4px;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    background-color: var(--bg-secondary);
    transition: var(--transition-fast);
}

.floor-tab-btn:hover {
    color: var(--color-white);
    border-color: rgba(0, 240, 255, 0.25);
}

.floor-tab-btn.active {
    background: var(--btn-gradient);
    color: #000;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 240, 255, 0.2);
}

.floor-layout {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.floor-layout.active {
    display: block;
}

.layout-info h3 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.tech-spec-meta {
    font-family: 'Outfit', sans-serif;
    color: var(--color-ocean);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-cyan-glow);
}

.layout-desc {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* Blueprint / Specs Table */
.specs-table-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.specs-table th, .specs-table td {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.specs-table th {
    font-family: 'Outfit', sans-serif;
    color: var(--color-white);
    font-weight: 600;
    background: rgba(0, 240, 255, 0.05);
}

.specs-table td {
    color: var(--color-text-secondary);
}

.specs-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.01);
}

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

.specs-table .table-highlight td {
    color: var(--color-ocean);
    font-weight: 600;
    background: rgba(0, 240, 255, 0.02);
}

.specs-table .table-total td {
    color: var(--color-white);
    font-weight: 700;
    background: rgba(0, 240, 255, 0.04);
    border-top: 2px double rgba(0, 240, 255, 0.25);
}

.rooftop-features-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.rt-badge {
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--color-ocean);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    box-shadow: var(--cyan-glow);
}

/* Layout Image/Render Preview */
.layout-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-mock {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    width: 100%;
}

.blueprint-render {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blueprint-mock:hover .blueprint-render {
    transform: scale(1.04);
}

.render-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0) 100%);
    z-index: 5;
}

.render-overlay p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
}

/* Amenities Section Styles */
.amenities {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-header, 
.accordion-header:hover {
    color: var(--color-white);
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--color-ocean);
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
    color: var(--color-white);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.image-showcase {
    position: relative;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
}

.showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1;
}

.showcase-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.showcase-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active, .dot:hover {
    background-color: var(--color-ocean);
    transform: scale(1.2);
    box-shadow: var(--cyan-glow);
}

/* Construction Timeline Styles */
.timeline-section {
    background-color: var(--bg-primary);
}

.timeline-container {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.timeline-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background-color: #1f2833;
    z-index: 1;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: var(--ocean-gradient);
    transition: var(--transition-smooth);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.timeline-step:hover .step-circle {
    border-color: var(--color-ocean);
    color: var(--color-white);
}

.timeline-step.active .step-circle {
    background: var(--btn-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: var(--shadow-soft), var(--cyan-glow);
}

.step-info {
    max-width: 220px;
    padding: 0 1rem;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.timeline-step.active .step-info {
    opacity: 1;
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.timeline-step.active .step-info h4 {
    color: var(--color-white);
}

.step-summary {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
}

.status-badge.complete {
    background: rgba(0, 240, 255, 0.1);
    color: var(--color-ocean);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--cyan-glow);
}

.status-badge.future {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

/* Simulator Section Styles */
.simulator {
    background-color: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.simulator-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: var(--bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-top: 2rem;
}

.simulator-inputs {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-value {
    font-family: 'Outfit', sans-serif;
    color: var(--color-ocean);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: var(--text-cyan-glow);
}

/* Dropdown styling */
.simulator-inputs select {
    width: 100%;
    max-width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.2rem;
    padding-right: 3.5rem;
    box-shadow: var(--shadow-soft);
}

.simulator-inputs select:focus {
    border-color: var(--color-ocean);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

/* Range slider customization */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #1f2833;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-ocean);
    cursor: pointer;
    box-shadow: var(--cyan-glow);
    transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--color-white);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Simulator Results Panel */
.simulator-results {
    background: var(--bg-secondary);
    border-left: 1px solid var(--color-border);
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-white);
}

.result-summary {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.res-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.res-value {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--color-white);
}

.installment-block {
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.12);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 2.5rem;
    box-shadow: var(--cyan-glow);
}

.installment-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.installment-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-ocean);
    text-shadow: var(--text-cyan-glow);
}

.sim-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Contact Section Styles */
.contact {
    background-color: var(--bg-primary);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 60%, var(--color-ocean) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-card-icon {
    width: 24px;
    height: 24px;
    color: var(--color-ocean);
    flex-shrink: 0;
    margin-top: 4px;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.3));
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.info-card p {
    margin-bottom: 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Form Container */
.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--color-border);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: var(--bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.1rem;
    padding-right: 3rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-ocean);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

/* Form success message */
.form-success-message {
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--color-ocean);
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.form-success-message h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.form-success-message p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* Modal Overlay & Box */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--color-border);
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-premium);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-ocean);
}

.modal-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.modal-desc strong {
    color: var(--color-ocean);
}

.modal-box form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Footer Styles */
.footer {
    background-color: #030305;
    border-top: 1px solid var(--color-border);
    padding: 6rem 0 3rem;
}

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

.footer-brand .logo-text {
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.footer-links h4, 
.footer-legal h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-ocean);
    padding-left: 4px;
    text-shadow: var(--text-cyan-glow);
}

.footer-legal p {
    line-height: 1.6;
    color: var(--color-text-muted);
}

.small {
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Entrance Animations & Scroll Reveal */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Scroll Reveal classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.3); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.75); }
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        top: 8px;
    }
    15% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        top: 24px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ==========================================================================
   Media Queries (Responsiveness)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-2 {
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        padding: 1.5rem 2rem;
    }
    
    .block-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .block-tab-btn {
        width: 100%;
        max-width: 100%;
    }
    
    .blueprint-render {
        height: 380px;
    }
    
    .simulator-box {
        grid-template-columns: 1fr;
    }
    
    .simulator-results {
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-legal {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Responsive Headings */
    h2, 
    .about h2, 
    .concept h2, 
    .section-header h2,
    .contact-info h2 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.25;
    }

    /* Prevent iOS auto zoom on focus */
    .form-group input, 
    .form-group select, 
    .form-group textarea,
    .simulator-inputs select {
        font-size: 1rem;
    }

    .section-padding {
        padding: 5rem 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Header Navigation for Mobile */
    .header-container {
        padding: 1rem 1.25rem;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 0.75rem;
        margin-right: -0.75rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--color-border);
        z-index: 1000;
        padding: 6rem 1.5rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--color-text-secondary);
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--color-white);
    }
    
    /* Hamburger Menu animations */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    /* Hero adjustments */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 120px;
        height: auto;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
        position: relative;
        transform: none;
        bottom: auto;
        left: auto;
        margin: 2rem auto 0;
        width: calc(100% - 2.5rem);
        max-width: 480px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-item {
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--color-border);
    }
    
    .stat-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* About Section */
    .about {
        padding-top: 5rem;
    }
    
    .about h2 {
        font-size: 2.25rem;
    }

    .about-highlights {
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hl-num {
        font-size: 2rem;
    }
    
    /* Floor Layout Optimization */
    .floor-layout .grid-2 {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .floor-layout .btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    /* Concept / Location Section */
    .concept h2 {
        font-size: 2.25rem;
    }

    .concept-visual {
        order: -1;
    }

    .route-map-box {
        padding: 1.5rem;
    }
    
    /* Blueprints Selector */
    .block-tab-btn {
        padding: 1.25rem;
    }

    .block-tab-btn .tab-title {
        font-size: 1.15rem;
    }

    .floor-selector {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .floor-tab-btn {
        width: 100%;
        text-align: center;
    }

    .layout-info h3 {
        font-size: 1.65rem;
    }

    .blueprint-render {
        height: 260px;
    }

    .specs-table th, .specs-table td {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Amenities Showcase */
    .image-showcase {
        height: 280px;
    }

    .accordion-header {
        font-size: 1.1rem;
        padding: 1.25rem 0;
    }
    
    /* Timeline Mobile styling */
    .timeline-container {
        padding-left: 2rem;
    }
    
    .timeline-progress-bar {
        /* Centered perfectly behind step-circles (half of 48px circle is 24px) */
        left: calc(2rem + 22px);
        top: 0;
        transform: none;
        width: 4px;
        height: 100%;
    }
    
    .progress-fill {
        width: 100%;
        height: 25%;
    }
    
    .timeline-steps {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
    }
    
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        width: 100%;
    }
    
    .step-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-info {
        max-width: 100%;
        padding: 0;
    }
    
    /* Simulator Mobile Optimization */
    .simulator-box {
        border-radius: 12px;
        margin-top: 1.5rem;
    }

    .simulator-inputs {
        padding: 1.75rem 1.25rem;
        gap: 1.5rem;
        background-color: rgba(5, 5, 8, 0.95);
    }
    
    .input-group {
        gap: 0.5rem;
    }

    .label-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .input-group label {
        font-size: 0.85rem;
    }

    .input-value {
        font-size: 0.9rem;
    }

    .simulator-inputs select {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
        padding-right: 3rem;
        background-position: right 1.25rem center;
    }

    .simulator-results {
        padding: 2rem 1.25rem;
        background-color: var(--bg-secondary);
    }

    .result-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .result-summary {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .result-item {
        padding-bottom: 0.5rem;
        border-bottom: 1px dashed rgba(0, 240, 255, 0.1);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .res-label {
        font-size: 0.85rem;
    }

    .res-value {
        font-size: 0.9rem;
    }

    .installment-block {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        border-radius: 6px;
        background: rgba(0, 240, 255, 0.02);
        border: 1px solid rgba(0, 240, 255, 0.15);
    }

    .installment-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .installment-value {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
    }

    .sim-disclaimer {
        font-size: 0.7rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 2.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-legal {
        grid-column: span 1;
    }
    
    /* Modal scrollability on short mobile viewports */
    .modal-overlay {
        overflow-y: auto;
        align-items: flex-start;
        padding: 1rem;
    }

    .modal-box {
        padding: 2rem 1.25rem;
        margin: 2rem auto;
        transform: none;
        transition: none;
    }

    .modal-overlay.open .modal-box {
        transform: none;
    }
    
    /* Table horizontal scroll warning */
    .specs-table-wrapper::after {
        content: 'Arrastar horizontalmente para ver mais ↔';
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: var(--color-ocean);
        padding: 0.5rem 0;
        background: rgba(0, 240, 255, 0.03);
        border-top: 1px solid var(--color-border);
        font-weight: 500;
    }
}
