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

/* Skywalker Soft Design System Tokens */
:root {
    --bg-premium: #0A0A0A;
    --bg-secondary: #1C1C1E;
    --bg-card: rgba(28, 28, 30, 0.6);
    --gold-primary: #D4AF37;
    --gold-light: #EAC435;
    --gold-link: #F4C542;
    --gold-glow: rgba(212, 175, 55, 0.18);
    --gold-glow-strong: rgba(212, 175, 55, 0.4);
    --grey-elegant: #E6E6E6;
    --text-muted: #B3B3B3;
    --text-white: #FFFFFF;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.4);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --font-titles: 'Montserrat', sans-serif;
    --font-subtitles: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-premium);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-premium);
    border-radius: 4px;
}

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

/* Custom Interactive Cursor */
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

/* Hover State for Links/Interactive items on Custom Cursor */
body.cursor-hover .custom-cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--gold-light);
}

body.cursor-hover .custom-cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--gold-light);
    background-color: rgba(212, 175, 55, 0.06);
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-titles);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: var(--font-subtitles);
    font-weight: 500;
    color: var(--text-muted);
}

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

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

/* Sticky Header Styling */
.navbar-premium {
    background-color: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    padding: 15px 0;
    z-index: 1000;
}

.navbar-premium.navbar-scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(10, 10, 10, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-premium.navbar-scrolled .navbar-brand img {
    height: 32px;
}

.nav-link {
    color: var(--text-white) !important;
    font-family: var(--font-subtitles);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 15px !important;
    position: relative;
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

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

/* Premium Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #B89025 100%);
    color: #0A0A0A !important;
    font-family: var(--font-subtitles);
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 10px 24px;
    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, var(--gold-light) 0%, var(--gold-primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

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

.btn-gold:hover {
    box-shadow: 0 0 20px var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary) !important;
    font-family: var(--font-subtitles);
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
    color: var(--gold-light) !important;
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background-color: var(--bg-premium);
    overflow: hidden;
}

.hero-background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--border-color) 1px, transparent 1px),
        radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.4;
    z-index: 1;
}

.hero-glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0) 70%);
    top: 20%;
    right: -10%;
    pointer-events: none;
    z-index: 2;
    filter: blur(80px);
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFFFFF 30%, #E6E6E6 60%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 35px;
}

/* Floating Laptop Mockup & Interactive Code Elements */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-laptop-frame {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-laptop-frame img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating interactive widgets in Hero */
.floating-code-box {
    position: absolute;
    background: rgba(28, 28, 30, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 18px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: var(--gold-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-glow);
    z-index: 3;
}

.code-box-1 {
    top: 10%;
    left: -5%;
    animation: floatAnimation 7s ease-in-out infinite alternate;
}

.code-box-2 {
    bottom: 12%;
    right: -5%;
    animation: floatAnimation 5s ease-in-out infinite alternate;
}

.floating-stats-card {
    position: absolute;
    background: rgba(28, 28, 30, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 3;
    top: 55%;
    left: -8%;
    animation: floatAnimation 8s ease-in-out infinite alternate;
}

.floating-stats-icon {
    width: 38px;
    height: 38px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Glassmorphism & Premium Cards Section */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.tagline {
    font-family: var(--font-subtitles);
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Services Cards Section */
.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--gold-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* Bento Grid System for Soluciones */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
}

/* Bento item sizing */
.bento-col-4 {
    grid-column: span 4;
}

.bento-col-8 {
    grid-column: span 8;
}

.bento-col-6 {
    grid-column: span 6;
}

.bento-col-3 {
    grid-column: span 3;
}

.bento-col-12 {
    grid-column: span 12;
}

@media (max-width: 991px) {

    .bento-col-4,
    .bento-col-8,
    .bento-col-6,
    .bento-col-3 {
        grid-column: span 6;
    }
}

@media (max-width: 575px) {

    .bento-col-4,
    .bento-col-8,
    .bento-col-6,
    .bento-col-3 {
        grid-column: span 12;
    }
}

.bento-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.bento-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bento-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Bento Analytics Integration (Chart.js Card) */
.bento-chart-container {
    width: 100%;
    height: 140px;
    margin-top: 15px;
}

/* Nosotros Section Timeline */
.timeline-container {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(212, 175, 55, 0.15);
}

.timeline-item {
    position: relative;
    padding-bottom: 45px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--bg-premium);
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    left: -39px;
    top: 5px;
    box-shadow: 0 0 10px var(--gold-primary);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--gold-primary);
    box-shadow: 0 0 18px var(--gold-light);
    transform: scale(1.2);
}

.timeline-year {
    font-family: var(--font-titles);
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Portfolio Masonry Grid & Interactive Filters */
.filter-btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Portfolio masonry styles */
.portfolio-grid {
    position: relative;
    transition: height 0.5s ease-out;
}

.portfolio-item-wrapper {
    margin-bottom: 24px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-img-box {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 10%, rgba(10, 10, 10, 0.4) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-category {
    font-size: 0.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    display: block;
}

.portfolio-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.portfolio-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
}

/* Premium Modals (SweetAlert and Bootstrap Dialog Customizing) */
.modal-content-premium {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-md) !important;
    color: var(--text-white) !important;
}

.modal-header-premium {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 24px !important;
}

.modal-body-premium {
    padding: 24px !important;
}

.modal-footer-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 24px !important;
}

/* Technologies Section Layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-sm);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    border-color: var(--border-hover);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-glow);
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 2.2rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

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

.tech-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.tech-card:hover .tech-name {
    color: var(--text-white);
}

/* Statistics Counters Cards */
.stats-card {
    background: linear-gradient(145deg, rgba(28, 28, 30, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.stats-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-titles);
}

.stats-label {
    font-family: var(--font-subtitles);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonial slider */
.testimonial-carousel-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 40px;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--grey-elegant);
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.testimonial-user-name {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.testimonial-user-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-stars {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Proceso de Trabajo Interactive Timeline */
.process-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(212, 175, 55, 0.1);
    z-index: 1;
}

@media (max-width: 991px) {
    .process-flow::before {
        display: none;
    }
}

.process-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-num-circle {
    width: 60px;
    height: 60px;
    background-color: var(--bg-secondary);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.process-step:hover .process-num-circle {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.1);
}

.process-title {
    font-family: var(--font-subtitles);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 160px;
    margin: 0 auto;
}

/* Interactive Blog Cards & Search View */
.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.06);
}

.blog-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.blog-category-tag {
    color: var(--gold-primary);
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
    transform: translateY(-4px);
}

.blog-search-box {
    background: rgba(28, 28, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 10px 24px;
    color: var(--text-white);
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    width: 100%;
    font-size: 0.95rem;
}

.blog-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Contact Form Premium Inputs */
.contact-form-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 45px;
}

.form-group-premium {
    margin-bottom: 25px;
    position: relative;
}

.form-control-premium {
    background-color: rgba(10, 10, 10, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 12px 18px !important;
    color: var(--text-white) !important;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-premium:focus {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 12px var(--gold-glow) !important;
    background-color: rgba(10, 10, 10, 0.8) !important;
}

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

label.form-label-premium {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-family: var(--font-subtitles);
}

/* Custom Interactive Map Representation (Premium dark styling instead of a standard generic bright iframe) */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #0f0f10;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.contact-info-link:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* Footer layout */
.footer-premium {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 80px 0 30px;
    position: relative;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 320px;
}

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

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--font-subtitles);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Custom styling for SweetAlert2 black & gold */
.swal2-popup.swal2-toast-premium {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-md) !important;
    color: var(--text-white) !important;
}

.swal2-title.swal2-toast-title {
    color: var(--text-white) !important;
    font-family: var(--font-subtitles);
}

.swal2-html-container.swal2-toast-content {
    color: var(--text-muted) !important;
}

.swal2-confirm.btn-swal-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #B89025 100%) !important;
    color: #0A0A0A !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: var(--border-radius-sm) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.swal2-confirm.btn-swal-gold:focus {
    box-shadow: 0 0 15px var(--gold-glow-strong) !important;
}

/* Single Blog Page Styling */
.blog-detail-hero {
    background: radial-gradient(circle at center, rgba(28, 28, 30, 0.9) 0%, var(--bg-premium) 100%);
    padding: 120px 0 60px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog-detail-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.25;
}

@media (max-width: 767px) {
    .blog-detail-title {
        font-size: 2rem;
    }
}

.blog-detail-content {
    font-size: 1.1rem;
    color: var(--grey-elegant);
    line-height: 1.8;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-detail-content p {
    margin-bottom: 25px;
}

.blog-detail-image-box {
    width: 100%;
    max-height: 480px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.blog-detail-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Back button in Blog */
.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.blog-back-btn:hover {
    color: var(--gold-primary);
    transform: translateX(-4px);
}