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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* About page specific light theme */
body.about-page {
    color: #333333;
    background-color: #ffffff;
}



body.about-page .about-content {
    background-color: #ffffff;
    color: #333333;
}

body.about-page .value-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    color: #333333;
}

body.about-page .value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

body.about-page .values-content {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333333;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(-100%);
}

.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-visible {
    transform: translateY(0);
}

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

.nav-logo a {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-logo-img {
    height: 30px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #cccccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* New Hero Section */
.hero-new {
    background: #ffffff;
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-logo {
    margin: -40px 0 60px 0;
}

.hero-logo-img {
    height: 100px;
    width: auto;
}

/* Infinite Gallery */
.infinite-gallery {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: infiniteScroll 30s linear infinite;
    width: fit-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 420px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

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

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive styles for new hero section */
@media (max-width: 768px) {
    .hero-new {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-logo {
        padding: 0 20px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-logo-img {
        height: 45px;
    }
    
    .gallery-item {
        width: 250px;
        height: 350px;
    }
    
    .gallery-track {
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .nav-logo-img {
        height: 35px;
    }
}

/* Old Hero Section - keeping for reference */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



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

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
}

/* CTA Banner */
.cta-banner {
    background: #000000;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button-banner {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.cta-button-banner:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-icon {
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.page-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Featured Section */
.featured {
    padding: 100px 0;
    background: #ffffff;
    color: #000000;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.8;
}

.text-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #000000;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* Gastronomy & Elegance Banner */
.brands-banner {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/eventos/glenfiddich001.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.brands-overlay {
    position: relative;
    z-index: 2;
}

.brands-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.brands-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gastronomy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

.brands-cta {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.brands-cta:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Events Section */
.events {
    padding: 100px 0;
    background: #f8f8f8;
    color: #000000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.event-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 40%;
}

.event-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.event-content p {
    font-size: 1rem;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.content-media img,
.content-media video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 50% 40%;
    transition: transform 0.3s ease;
}

.content-media:hover img,
.content-media:hover video {
    transform: scale(1.02);
}

/* CTA Banner Section */
.cta-banner-about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/eventos/desfile002.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
}

.cta-banner-about .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffffff;
}

.cta-banner-about .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #ffffff;
}

.cta-banner-about .cta-button-banner {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 4px;
}

.cta-banner-about .cta-button-banner:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Values Content Section */
.values-content {
    padding: 80px 0;
}

/* Values Section */
.values-section {
    margin-top: 0;
}

.values-section h2 {
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

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

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.value-item p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Models Gallery */
.models-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 400px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item.vertical {
    grid-row: span 2;
}

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

.gallery-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-media img,
.gallery-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.model-info {
    text-align: center;
    color: #ffffff;
}

.model-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.model-info p {
    opacity: 0.8;
    font-weight: 300;
}



/* Contact Content */
/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

/* Contact Cards Layout */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Headers */
.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

/* Process Steps */
.process-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(255, 255, 255, 0.4);
}

.step-number {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.contact-btn.primary {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-btn.primary:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.contact-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn.secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Info Grid */
.info-grid {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.info-content p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content p a:hover {
    color: #ffffff;
}

/* Social Section */
.social-section {
    padding-top: 20px;
}

.social-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

.social-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-item {
    margin-bottom: 0;
}

.social-link-text {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link-text:hover {
    color: #ffffff;
}



/* Contact Info */
.contact-info h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.info-item p {
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    margin-top: 50px;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.map-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    filter: grayscale(80%) contrast(1.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container:hover {
    filter: grayscale(20%) contrast(1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.developer-signature {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
    padding: 0.2rem 0;
}

.developer-signature a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.developer-signature a:hover {
    opacity: 0.8;
}

.developer-signature span {
    background: linear-gradient(135deg, #4a9eff 0%, #446099 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .contact-content {
        padding: 40px 0;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .featured-content,
    .content-block,
    .contact-cards,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact Cards Mobile */
    .contact-card {
        padding: 30px 20px;
    }
    
    .card-header {
        margin-bottom: 30px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .card-header p {
        font-size: 0.9rem;
    }
    
    .step {
        padding: 16px;
        gap: 16px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-btn {
        min-width: auto;
        width: 100%;
        padding: 14px 30px;
    }
    
    .info-item {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-content h4 {
        font-size: 1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .social-items {
        gap: 0;
    }
    
    .social-item {
        margin-bottom: 0;
    }
    
    /* Map Section Mobile */
    .map-header h3 {
        font-size: 1.6rem;
    }
    
    .map-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .requirements {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .requirement-item {
        padding: 25px 20px;
    }
    
    .application-info {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .gallery-item.vertical {
        grid-row: span 1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Model Banner Styles */
.model-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.model-banner-black {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

.model-banner-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000;
}

.model-banner-white .model-name {
    color: #000000;
}

.model-banner-white .model-details li {
    color: #000000;
}

.model-banner-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
}

.model-banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.model-banner-image .container {
    position: relative;
    z-index: 2;
}

.model-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
}

.model-info {
    padding: 40px;
}

.model-name {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.model-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-details li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 300;
}

.model-banner-white .model-details li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Image Accordion Styles */
.image-accordion {
    display: flex;
    gap: 20px;
    height: 400px;
    padding: 20px;
    overflow: hidden;
}

.accordion-item {
    width: 15%;
    height: 100%;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: brightness(0.9) contrast(1.05);
    opacity: 0.8;
    overflow: hidden;
}

.accordion-item img {
    object-fit: cover;
    object-position: 50% 30%;
    width: 100%;
    height: 100%;
}

.accordion-item.active {
    width: 80%;
    filter: brightness(1) contrast(1.1);
    opacity: 1;
    z-index: 10;
}

.accordion-item:hover {
    width: 80%;
    filter: brightness(1) contrast(1.1);
    opacity: 1;
    z-index: 10;
}



/* Social Media Styles */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-media svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}



@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        grid-auto-rows: 250px;
    }
    
    /* Model Banner Mobile Styles */
    .model-banner {
        padding: 40px 0;
    }

    .model-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .model-info {
        padding: 20px;
        order: 2;
    }

    .model-name {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .model-banner-image {
        background-attachment: scroll;
    }

    /* Events Section Mobile */
    .events {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-image img {
        height: 250px;
    }

    .event-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .event-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .event-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Contact Page Mobile Styles */
    .contact-card {
        padding: 25px 15px;
    }

    .card-header h2 {
        font-size: 1.3rem;
    }

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

    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .step {
        padding: 12px;
        gap: 12px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .info-item {
        padding: 12px;
        gap: 10px;
    }

    .info-icon {
        width: 32px;
        height: 32px;
    }

    .info-content h4 {
        font-size: 0.9rem;
    }

    .info-content p {
        font-size: 0.8rem;
    }

    .map-header h3 {
        font-size: 1.4rem;
    }

    .map-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .requirement-item {
        padding: 20px 15px;
    }
}

/* Hire Us Banner Mobile Override */
@media (max-width: 768px) {
    .banner-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .banner-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .banner-image img {
        height: 250px;
    }

    .banner-actions .btn-primary,
    .banner-actions .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .hire-us-banner {
        padding: 40px 0;
    }

    .hire-us-banner .banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 15px;
    }

    .hire-us-banner .banner-image {
        order: -1;
    }

    .hire-us-banner .banner-text {
        padding-left: 0;
        text-align: center;
    }

    .hire-us-banner .banner-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .hire-us-banner .banner-text p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hire-us-banner .banner-image img {
        height: 220px;
        width: 100%;
        object-fit: cover;
    }

    .hire-us-banner .banner-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hire-us-banner .banner-actions .btn-primary,
    .hire-us-banner .banner-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Floating WhatsApp Button Mobile */
    .floating-whatsapp {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: #ccc;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-info {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.gallery-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-info p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
    .gallery-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .gallery-img {
        max-height: 70vh;
    }

    .gallery-close {
        top: -40px;
        font-size: 30px;
    }

    .gallery-nav {
        font-size: 24px;
        padding: 15px 12px;
    }

    .gallery-prev {
        left: -60px;
    }

    .gallery-next {
        right: -60px;
    }

    .gallery-info {
        bottom: -60px;
    }

    .gallery-info h3 {
        font-size: 1.2rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }

    /* Brands Banner Mobile */
    .brands-banner {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .brands-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .brands-content p {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .gastronomy-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .feature-item h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .brands-cta,
    .cta-button-banner {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    /* Hire Us Banner Mobile */
    .hire-us-banner {
        padding: 50px 0;
    }

    .hire-us-banner .banner-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin: 0 20px;
    }

    .hire-us-banner .banner-text {
        padding-left: 0;
        text-align: center;
    }

    .hire-us-banner .banner-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hire-us-banner .banner-text p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hire-us-banner .banner-image {
        order: -1;
    }

    .hire-us-banner .banner-image img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }

    .hire-us-banner .banner-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hire-us-banner .banner-actions .btn-primary,
    .hire-us-banner .banner-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 1px 2px 3px #11111150;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transform: translateY(100px);
    opacity: 0;
}

.floating-whatsapp.show {
    transform: translateY(0);
    opacity: 1;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-whatsapp svg {
        width: 25px;
        height: 25px;
    }
}

/* Contact page specific styling */
body.contact-page {
    background: #ffffff;
    color: #333333;
}

.contact-page .page-title {
    color: #333333;
}

.contact-page .page-subtitle {
    color: rgba(51, 51, 51, 0.7);
}

.contact-page .social-link {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
    border-radius: 8px;
}

.contact-page .social-link:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-page .social-link svg {
    width: 20px;
    height: 20px;
}

/* Hire Us Banner */
.hire-us-banner {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hire-us-banner .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hire-us-banner .banner-text {
    padding-left: 20px;
}

.hire-us-banner .banner-text h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 24px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hire-us-banner .banner-text p {
    font-size: 1.3rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hire-us-banner .banner-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hire-us-banner .banner-image {
    position: relative;
}

.hire-us-banner .banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hire-us-banner .banner-image:hover img {
    transform: scale(1.05);
}

.banner-actions .btn-primary {
    background: #28a745;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #28a745;
}

.banner-actions .btn-primary:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.2);
}

.banner-actions .btn-secondary {
    background: transparent;
    color: #333333;
    padding: 15px 40px;
    border: 2px solid #333333;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.banner-actions .btn-secondary:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(51, 51, 51, 0.2);
}