/* 
   LJ Apparels - Premium Custom CSS
   Theme: Obsidian Midnight & Champagne Gold
   Fonts: Outfit (Headings) & Inter (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #070a13;
    --bg-secondary: #0f1524;
    --bg-card: #151e33;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3cf65;
    --accent-gold-rgb: 212, 175, 55;
    --text-primary: #f9fafb;
    --text-muted: #a0aec0;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-hover: rgba(212, 175, 55, 0.4);
    --glass-bg: rgba(15, 21, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

a:hover {
    color: var(--accent-gold-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-gold-rgb), 0.3);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Selection Color */
::selection {
    background-color: rgba(var(--accent-gold-rgb), 0.2);
    color: var(--text-primary);
}

/* Section Header Utility */
.section-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

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

/* Premium Glassmorphic Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b89025 100%);
    color: #070a13;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b89025 0%, var(--accent-gold) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    color: #070a13;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-gold-rgb), 0.35);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: rgba(var(--accent-gold-rgb), 0.1);
    color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

/* Glassmorphism Navbar */
.navbar-premium {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 1.2rem 0;
}

.navbar-premium.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
}

.navbar-brand-premium span {
    color: var(--accent-gold);
}

.nav-link-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 1rem;
    font-size: 0.95rem;
    position: relative;
    opacity: 0.8;
}

.nav-link-premium:hover,
.nav-link-premium.active {
    color: var(--accent-gold) !important;
    opacity: 1;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-gold-rgb), 0.25);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 10, 19, 0.95) 20%, rgba(7, 10, 19, 0.7) 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: zoomOutBg 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-actions {
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* About Us Section */
.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    transform: translate(15px, 15px);
    z-index: -1;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover::after {
    transform: translate(8px, 8px);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

/* Stats Counter Grid */
.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--accent-gold-rgb), 0.1);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    font-weight: 600;
}

.stat-sublabel {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    background: rgba(var(--accent-gold-rgb), 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
}

.value-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.value-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Services Section */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(var(--accent-gold-rgb), 0.12);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 21, 36, 0.9));
    z-index: 1;
}

.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-icon-floating {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: #070a13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(var(--accent-gold-rgb), 0.3);
    z-index: 3;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-floating {
    transform: rotateY(180deg) scale(1.05);
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Gallery Section */
.gallery-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    opacity: 1;
}

.filter-btn.active {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #070a13;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item.visible {
    display: block;
    animation: fadeInGridItem 0.5s ease forwards;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 19, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
    padding: 2rem;
    text-align: center;
}

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

.gallery-item-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-gold);
    color: #070a13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transform: scale(0.7);
    transition: var(--transition-smooth);
}

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

.gallery-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.gallery-item-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

/* Premium Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 19, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

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

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--text-primary);
}

.lightbox-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.lightbox-cat {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-gold);
    opacity: 1;
}

/* Contact Us Section */
.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.office-info-block {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.office-info-block:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.office-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.contact-detail-item i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.contact-detail-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.form-label-premium {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control-premium {
    background-color: rgba(7, 10, 19, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary) !important;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-premium:focus {
    background-color: rgba(7, 10, 19, 0.6);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(var(--accent-gold-rgb), 0.15);
    outline: none;
}

.form-control-premium::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-success-banner {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.5rem;
    display: none;
    color: #28a745;
    font-weight: 500;
    align-items: center;
    gap: 0.8rem;
    animation: fadeInUp 0.4s ease forwards;
}

/* Beautiful Interactive Map Graphic */
.map-visual-placeholder {
    width: 100%;
    height: 180px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 0);
    background-size: 16px 16px;
    animation: floatGrid 30s linear infinite;
    z-index: 0;
}

.map-visual-label {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-primary);
}

.map-visual-label i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    animation: mapPulse 2s infinite ease;
}

.map-visual-label span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Footer styling */
.footer-premium {
    background-color: #04060d;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand span {
    color: var(--accent-gold);
}

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

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--accent-gold);
    color: #070a13;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--accent-gold-rgb), 0.35);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-newsletter-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    background-color: rgba(7, 10, 19, 0.4);
    border: none;
    color: var(--text-primary);
    padding: 0.7rem 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: var(--accent-gold);
    border: none;
    color: #070a13;
    padding: 0 1.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: var(--accent-gold-hover);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

@keyframes zoomOutBg {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.01);
    }
}

@keyframes fadeInGridItem {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-30px, -30px);
    }
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(var(--accent-gold-rgb), 0));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 8px rgba(var(--accent-gold-rgb), 0.45));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(var(--accent-gold-rgb), 0));
    }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .navbar-premium {
        background-color: var(--bg-secondary) !important;
        padding: 1rem 0;
    }
    .navbar-collapse {
        margin-top: 1rem;
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 1.5rem;
        border-radius: 8px;
    }
    .nav-link-premium {
        margin: 0.6rem 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card, .contact-form-card {
        padding: 1.8rem;
    }
    .footer-premium {
        padding: 4rem 0 2rem;
    }
}
