/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (CASA MAR RIO)
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-darker: #0d0f11;
    --color-bg-dark: #13171b;
    --color-bg-card: #1c2229;
    --color-bg-card-hover: #242c35;
    
    --color-text-primary: #f3f5f6;
    --color-text-secondary: #a0aec0;
    --color-text-muted: #718096;
    
    --color-gold: #d4af37;
    --color-gold-hover: #f3cf65;
    --color-gold-dark: #b8901c;
    --color-gold-light: rgba(212, 175, 55, 0.15);
    
    --color-green: #2d5a27;
    --color-green-hover: #3d7a33;
    --color-green-light: rgba(45, 90, 39, 0.2);
    
    --color-border: #2d3748;
    --color-border-light: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 20px -5px rgba(212, 175, 55, 0.3);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

iframe {
    border: none;
}

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

button, input, select, textarea {
    font-family: inherit;
}

/* ==========================================================================
   UTILITY CLASSES & GRID
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

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

.bg-darker {
    background-color: var(--color-bg-darker);
}

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

.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.gold-text {
    color: var(--color-gold);
}

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

.border-radius-lg { border-radius: var(--border-radius-lg); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.gap-5 { gap: 3rem; }
.align-center { align-items: center; }

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.section-description {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg-darker);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-border-light);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(13, 15, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

#navbar {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.btn-nav {
    display: none;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

@media (min-width: 992px) {
    #navbar { display: flex; }
    .btn-nav { display: inline-flex; }
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
}

.mobile-menu-toggle i {
    width: 28px;
    height: 28px;
}

@media (min-width: 992px) {
    .mobile-menu-toggle { display: none; }
}

/* Mobile Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-darker);
    z-index: 200;
    padding: 3rem 2rem;
    transition: right var(--transition-smooth);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--color-border);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.mobile-link:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 15, 17, 0.5) 0%,
        rgba(13, 15, 17, 0.8) 60%,
        rgba(19, 23, 27, 1) 100%
    );
}

.hero-content {
    text-align: center;
    max-width: 850px;
    z-index: 10;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 3px;
    background-color: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4rem; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    .hero-cta-group { flex-direction: row; }
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(28, 34, 41, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 2rem;
    max-width: 650px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    display: block;
}

@media (min-width: 576px) {
    .stat-number { font-size: 2rem; }
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

/* ==========================================================================
   O EMPREENDIMENTO SECTION
   ========================================================================== */
.emp-image-card {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(45, 90, 39, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.emp-subtitle {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 480px) {
    .specs-grid { grid-template-columns: 1fr; }
}

.spec-card {
    display: flex;
    gap: 1rem;
    background-color: var(--color-bg-card);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition-fast);
}

.spec-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
}

.spec-icon {
    color: var(--color-gold);
    flex-shrink: 0;
}

.spec-icon i {
    width: 24px;
    height: 24px;
}

.spec-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.spec-value {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

/* ==========================================================================
   TOUR VIRTUAL SECTION
   ========================================================================== */
.video-player-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16/9;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 15, 17, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity var(--transition-smooth);
    z-index: 2;
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-gold);
    border: none;
    color: var(--color-bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-smooth);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.btn-play i {
    width: 32px;
    height: 32px;
    fill: currentColor;
    margin-left: 4px;
}

.btn-play:hover {
    transform: scale(1.1);
    background-color: var(--color-gold-hover);
}

.play-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-player-container.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   GALERIA DE FOTOS SECTION
   ========================================================================== */
.gallery-filters-container {
    overflow-x: auto;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.gallery-filters-container::-webkit-scrollbar {
    display: none;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    width: max-content;
    margin: 0 auto;
}

.filter-tab {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--color-gold);
    color: var(--color-bg-darker);
    border-color: var(--color-gold);
}

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

@media (min-width: 576px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 15, 17, 0.8) 0%, rgba(13, 15, 17, 0) 60%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: opacity var(--transition-smooth);
}

.gallery-item-caption {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    transform: translateY(10px);
    transition: transform var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

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

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

.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
}

.gallery-item.hidden {
    display: none;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 12, 14, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.lightbox-modal.open {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-border);
}

.lightbox-caption {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-text-primary);
}

.lightbox-counter {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* Lightbox Controls */
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-close i { width: 32px; height: 32px; }
.lightbox-close:hover { color: var(--color-gold); transform: scale(1.1); }

.lightbox-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev i { width: 40px; height: 40px; }
.lightbox-prev:hover { color: var(--color-gold); transform: translateY(-50%) scale(1.1); }

.lightbox-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next i { width: 40px; height: 40px; }
.lightbox-next:hover { color: var(--color-gold); transform: translateY(-50%) scale(1.1); }

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* Ficha Técnica Table */
.tech-specs-box {
    max-width: 1000px;
    margin: 5rem auto 0;
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    padding: 3rem;
}

.tech-specs-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
}

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

.tech-table th, .tech-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border-light);
}

.tech-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    background-color: var(--color-bg-darker);
    border-radius: var(--border-radius-sm);
}

.tech-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

/* ==========================================================================
   CONTATO & LOCALIZAÇÃO SECTION
   ========================================================================== */
.contact-subtitle, .form-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}

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

.contact-method-card {
    display: flex;
    gap: 1.25rem;
    background-color: var(--color-bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-icon i {
    width: 24px;
    height: 24px;
}

.method-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.method-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.security-card {
    display: flex;
    gap: 1.25rem;
    background-color: var(--color-green-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(45, 90, 39, 0.2);
}

.security-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 90, 39, 0.3);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    flex-shrink: 0;
}

.security-icon i {
    width: 24px;
    height: 24px;
}

.security-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #4ade80;
    margin-bottom: 0.25rem;
}

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

/* Contact Form Card */
.contact-form-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#main-footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    padding: 5rem 0 0;
}

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

@media (min-width: 768px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo {
    display: inline-block;
    font-size: 1.75rem;
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-grid a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-links-grid a:hover {
    color: var(--color-gold);
}

.footer-credits p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.footer-credits .footer-architect {
    font-size: 1.05rem;
    color: var(--color-text-primary);
}

.footer-credits .footer-phone {
    color: var(--color-gold);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        text-align: left;
    }
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.developer-info {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN CORRECTIONS
   ========================================================================== */
@media (max-width: 991px) {
    .section-padding { padding: 4.5rem 0; }
    .section-title { font-size: 1.85rem; }
    .tech-specs-box { padding: 1.5rem; }
    .contact-form-card { padding: 2rem; }
}
