/* ==========================================================================
   Calafat Estalagens & Cabanas - Styling System
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --bg-primary: #0d0e0d;
    --bg-secondary: #141614;
    --bg-tertiary: #1b1e1b;
    --text-primary: #f4f3ef;
    --text-secondary: #b5b3ad;
    --text-muted: #85837e;
    --accent-gold: #c5a059;
    --accent-gold-hover: #dfb973;
    --accent-green: #596c56;
    --accent-green-hover: #6c8269;
    --glass-bg: rgba(20, 22, 20, 0.65);
    --glass-border: rgba(197, 160, 89, 0.15);
    --glass-border-hover: rgba(197, 160, 89, 0.35);
    --border-light: rgba(255, 255, 255, 0.06);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

body {
    overflow-x: hidden;
    line-height: 1.6;
    background: radial-gradient(circle at top right, #1b221b, var(--bg-primary) 60%);
}

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

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

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* ==========================================================================
   Componentes Globais (Botões, Textos)
   ========================================================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #aa853c);
    color: #0f100f;
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-2px);
}

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

/* Badges e Títulos */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 1.5rem auto;
}

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

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Header / Menu de Navegação
   ========================================================================== */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(13, 14, 13, 0.7) 0%, transparent 100%);
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    padding: 1rem 0;
    background: rgba(13, 14, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#header-logo {
    height: 35px;
    width: auto;
}

#header-logo-text {
    height: 18px;
    width: auto;
    opacity: 0.95;
}

#navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
}

#navbar ul li a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.05rem;
    position: relative;
    padding: 0.5rem 0;
}

#navbar ul li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

#navbar ul li a:not(.btn-primary):hover {
    color: var(--text-primary);
}

#navbar ul li a:not(.btn-primary):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/images/imagem hero.png') no-repeat center center / cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 14, 13, 0.65) 0%,
        rgba(13, 14, 13, 0.8) 60%,
        var(--bg-primary) 100%
    );
}

.hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: 4rem;
}

.hero-tagline-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    background: rgba(197, 160, 89, 0.08);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.02rem;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.hero-scroll-indicator i {
    font-size: 1rem;
    animation: bounce 2s infinite;
    color: var(--accent-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   Concept Section
   ========================================================================== */

.concept-section {
    padding: 10rem 0;
    position: relative;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.concept-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-premium);
}

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

.card-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.concept-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--accent-gold-hover);
}

.concept-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ==========================================================================
   Accommodations Section
   ========================================================================== */

.accommodations-section {
    padding: 10rem 0;
    background: var(--bg-secondary);
}

/* Tab Controls para a galeria */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
    letter-spacing: 0.05rem;
    font-weight: 500;
}

.tab-btn:hover {
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--text-primary);
}

.tab-btn.active {
    background: rgba(197, 160, 89, 0.06);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.1);
}

.tab-content {
    display: none;
    animation: fadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

.gallery-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-main-card {
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 65%, transparent 100%);
    color: var(--text-primary);
    z-index: 5;
}

.gallery-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.gallery-caption p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 750px;
    line-height: 1.5;
}

.gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    padding: 1.2rem;
    gap: 0.8rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-primary);
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.thumb {
    flex: 0 0 110px;
    aspect-ratio: 3/2;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: var(--transition-smooth);
}

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

.thumb:hover {
    opacity: 0.85;
}

.thumb.active {
    border-color: var(--accent-gold);
    opacity: 1;
}

/* Botões de Navegação das Galerias */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 14, 13, 0.45);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 8;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.gallery-nav-btn.prev-btn {
    left: 1.5rem;
}

.gallery-nav-btn.next-btn {
    right: 1.5rem;
}

.gallery-nav-btn:hover {
    background: rgba(197, 160, 89, 0.18);
    border-color: var(--accent-gold);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsividade para botões de navegação lateral */
@media (max-width: 768px) {
    .gallery-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        background: rgba(13, 14, 13, 0.6);
    }
    .gallery-nav-btn.prev-btn {
        left: 0.8rem;
    }
    .gallery-nav-btn.next-btn {
        right: 0.8rem;
    }
}

/* ==========================================================================
   Sustainability Section (ESG)
   ========================================================================== */

.sustainability-section {
    padding: 10rem 0;
}

.features-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
    padding: 2rem 0;
}

.features-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(197, 160, 89, 0.25);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    display: flex;
}

.timeline-item:nth-child(odd) {
    left: 0;
    justify-content: flex-end;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    justify-content: flex-start;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.15rem;
    z-index: 10;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: 0;
}

.timeline-item:hover .timeline-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2rem;
    width: 100%;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--glass-border-hover);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   Investment Section
   ========================================================================== */

.investment-section {
    padding: 10rem 0;
    background: var(--bg-secondary);
    background-image: radial-gradient(circle at center, #182018 0%, var(--bg-secondary) 80%);
}

.investment-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.metric-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

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

.metric-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.metric-card h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ==========================================================================
   Contact / Lead Generation Form
   ========================================================================== */

.contact-section {
    padding: 10rem 0;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.detail-item i {
    font-size: 1.4rem;
    color: var(--accent-gold);
    width: 25px;
}

.contact-form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 3.5rem;
    box-shadow: var(--shadow-premium);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: rgba(89, 108, 86, 0.15);
    border: 1px solid var(--accent-green);
    border-radius: 4px;
    margin-top: 1.5rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

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

.hide {
    display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    padding: 5rem 0;
    border-top: 1px solid var(--border-light);
    background: var(--bg-primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 40px;
    align-self: center;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==========================================================================
   Efeitos de Animação e Rolagem
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

/* ==========================================================================
   Responsividade (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .contact-grid-wrapper {
        gap: 3rem;
    }
    
    .features-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 5rem;
        padding-right: 0;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .timeline-icon {
        left: 2rem !important;
    }
}

@media (max-width: 768px) {
    #navbar {
        display: none; /* Mobile Menu Logic in JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 14, 13, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-light);
        padding: 2rem 0;
    }
    
    #navbar.mobile-active {
        display: block;
    }
    
    #navbar ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-image-container {
        height: 350px;
    }
    
    .gallery-thumbnails {
        padding: 0.8rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .thumb {
        flex: 0 0 90px;
    }
    .gallery-tabs {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
}
