/*
Theme Name: Concerq.com VIP Concierge
Description: Premium WordPress theme for luxury concierge services.
Version: 1.0.0
Author: Abdallah @c0dx0
Text Domain: concerq.com
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

This theme is designed for luxury concierge services with focus on:
- SEO optimization and fast loading
- Mobile-first responsive design
- Accessibility compliance
- WordPress best practices
*/

/* ==========================================================================
   Fonts
   ========================================================================== */

/* Montserrat fonts are loaded via Google Fonts for better performance */

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Prevent horizontal overflow */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000; /* Uniform black */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f4d03f;
    text-decoration: none;
}

/* ==========================================================================
   Layout & Grid
   ========================================================================== */

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

.container-fluid {
    max-width: 100%;
    padding: 0 1rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background-color: #000000; /* Uniform black */
}

.section-darker {
    background-color: #000000; /* Uniform black */
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    border: none;
    border-radius: 12px; /* Rectangle with slight curves like Terminal Industries */
    width: 85%;
    max-width: 900px;
}

.site-header.scrolled {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(0, 0, 0, 0.2);
    top: 1rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 60px;
}

.site-logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    background: linear-gradient(90deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 0;
    position: relative;
    transition: all 0.2s ease;
    text-decoration: none;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a.active,
.main-nav a.current {
    color: #d4af37;
    font-weight: 500;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active::after,
.main-nav a.current::after {
    width: 0; /* Remove underline for active states */
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-section {
    min-height: 100vh; /* Fallback for older browsers */
    min-height: 100svh; /* Smart viewport height - excludes mobile UI */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

/* Hero Video - Full Width Fix */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-video:first-child {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 3; /* Above video and overlay */
    position: relative;
}

.page-hero {
    padding: 5rem 0 0.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem 2rem 0rem 2rem;
    z-index: 3;
    margin: 0 auto; /* Center horizontally without top margin */
    position: relative;
}

.page-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff; /* Clean white instead of gold gradient */
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: #000000;
}

/* ==========================================================================
   Jet Animation - Rewritten from Scratch
   ========================================================================== */

.jet-animation {
    position: absolute;
    top: 10px; /* Lowered by 10px */
    left: -250px; /* Start off-screen left */
    width: 280px; /* Good size for visibility */
    height: auto;
    z-index: 25; /* Above everything in the section */
    opacity: 0; /* Hidden by default */
    display: none; /* Hidden by default */
    pointer-events: none;
}

.jet-animation img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.5));
    transform: rotate(0deg); /* Ensure jet faces right */
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37; /* Fallback */
}

.service-description {
    color: #ffffff;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1000px) {
    .main-nav {
        position: fixed;
        top: 5rem;
        left: 50%;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
        width: calc(100% - 2rem);
        max-width: 1200px;
        height: auto;
        background: rgba(10, 10, 10, 0.6);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .main-nav li {
        margin: 0;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        display: block;
        text-align: center;
        width: 100%;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .main-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .main-nav a:hover {
        background: rgba(212, 175, 55, 0.08);
        color: #d4af37;
        transform: translateX(5px);
    }

    .main-nav a:hover::before {
        left: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }

    .hamburger-line {
        width: 25px;
        height: 2px;
        background: #ffffff;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 2px;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #d4af37;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #d4af37;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Mobile typography adjustments */
    h1, .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    h2, .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    /* Mobile button adjustments */
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile form adjustments */
    .contact-form {
        padding: 1.5rem;
    }

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

    /* Mobile card adjustments */
    .service-card, .team-member {
        padding: 1rem;
    }

    /* Mobile font size adjustments */
    .service-title {
        font-size: 1.2rem !important;
    }

    .service-card p, .service-card span, .service-card li {
        font-size: 1rem;
    }

    .checkpoint-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .savings-title {
        font-size: 2.2rem !important;
    }

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

    .jet-animation {
        width: 200px; /* Smaller on mobile */
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

.text-gold {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37; /* Fallback */
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */

.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-image {
    margin-bottom: 1.5rem;
}

.wp-block-quote {
    border-left: 4px solid #d4af37;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #ffffff;
}

.wp-block-button__link {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Animations & Interactions
   ========================================================================== */

/* Checkpoint illumination effects - Subtle */
.jet-checkpoint-active {
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transform: scale(1.01);
    transition: all 0.4s ease;
}

.jet-checkpoint-active h1,
.jet-checkpoint-active h2,
.jet-checkpoint-active h3 {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

/* Scroll Animations - One Concierge Style Text Snap */
.animate-on-scroll {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-120px);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(120px);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.service-card.animate-on-scroll {
    transform: translateY(50px);
}

.service-card.animate-in {
    transform: translateY(0);
}

/* Section Title Animations */
.section-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 200;
    opacity: 0;
    transform: translateX(-150px);
    transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.section-description {
    opacity: 0;
    transform: translateX(150px);
    transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-description.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Special animations for specific sections */
.how-it-works .section-title {
    opacity: 0;
    transform: translateX(150px); /* From right */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.how-it-works .section-title.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.how-it-works .section-description {
    opacity: 0;
    transform: translateX(-150px); /* From left */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.how-it-works .section-description.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Jet Journey Section - Ultra Compact */
.jet-journey-section {
    padding: 14rem 0 6rem 0; /* Large top padding to push container down 200px */
    min-height: 40vh; /* Very compact height */
    position: relative;
    background: #000000;
    overflow: hidden; /* Hide jet when it goes outside section bounds */
}

/* Optimize checkpoint content layout */
.jet-journey-section .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: start;
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Checkpoint Cards - Apple Style */
.jet-journey-section .container > div {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1rem;
    text-align: center;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.jet-journey-section .container > div:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.jet-journey-section .container > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.jet-journey-section .container > div:hover::before {
    left: 100%;
}

.checkpoint-title {
    font-size: 1.2rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.checkpoint-description {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.6;
}

.jet-flight-path {
    position: absolute;
    top: 150px; /* Lowered by additional 50px (was 100px) */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    z-index: 15; /* Below jet but above content */
}

.checkpoint-dots {
    position: absolute;
    top: -8px; /* 8px above flight path line */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    padding: 0 15%;
    z-index: 20; /* Above flight path, below jet */
}

.checkpoint-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.6s ease;
}

.checkpoint-dot.active {
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: scale(1.3);
}





@media (max-width: 1000px) {
    .jet-journey-section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .jet-journey-section .container > div {
        padding: 1.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .jet-journey-section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.2rem;
    }
    
    .jet-journey-section .container > div {
        padding: 1rem 0.5rem;
    }

    /* Extra small screen optimizations */
    .container {
        padding: 0 0.2rem;
    }

    .section {
        padding: 2rem 0;
    }

    .hero-section {
        min-height: 80vh;
    }

    .services-grid, .team-grid {
        gap: 0.75rem;
    }

    .service-card, .team-member {
        padding: 0.75rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Blog System
   ========================================================================== */

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* Blog Card */
.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Blog Image */
.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-placeholder {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    color: rgba(212, 175, 55, 0.6);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Content */
.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #d4af37;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-comments {
    display: flex;
    align-items: center;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.read-more svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more svg {
    transform: translateX(5px);
}

/* Blog Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
    margin-bottom: 1rem;
}

.page-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        gap: 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-image {
        height: 180px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff;
    animation: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff, #d4af37);
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Footer Styles - Completely Black and Smaller */
.site-footer {
    background: #000000;
    padding: 1.5rem 0 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h3,
.footer-column h4 {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

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

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

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-menu a:hover {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
    padding-left: 0.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    color: #000000;
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.contact-item strong {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

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

.copyright p {
    color: #888;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    background: linear-gradient(135deg, #ffffff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
}

/* Enhanced Mobile Styles */
@media (max-width: 1000px) {
    .hero-section {
        min-height: 100vh; /* Fallback for older browsers */
        min-height: 100dvh; /* Dynamic viewport height - adapts to mobile UI */
    }
    
    .hero-content {
        margin-top: 0;
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float-button {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Loading States */
body:not(.loaded) .fade-in {
    opacity: 0;
    transform: translateY(30px);
}

body.loaded .fade-in {
    opacity: 1;
    transform: translateY(0);
}


/* Performance Optimizations */
.hero-video {
    will-change: opacity;
}

.jet-animation {
    will-change: transform;
}

.fade-in {
    will-change: opacity, transform;
}

.service-card,
.testimonial-card,
.blog-card {
    will-change: transform;
}

/* Accessibility and User Preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation-play-state: paused !important;
    }
}

@media (prefers-reduced-data: reduce) {
    .hero-video {
        display: none !important;
    }
    
    .hero-section {
        background: linear-gradient(135deg, #000000, #1a1a1a);
    }
}

/* Print Styles */
@media print {
    .site-header,
    .jet-animation,
    .hero-video-container,
    .whatsapp-float,
    .back-to-top,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .service-title,
    .section-title {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }
    
    .service-card,
    .testimonial-card {
        border: 1px solid #ccc !important;
        background: white !important;
    }
}
