/* ========================================
   XEBEL - Premium Print Studio
   Luxury Single-Page Website
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #c9a962;
    --primary-light: #e4d4a8;
    --primary-dark: #a08040;
    --accent: #8b6914;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: #c9a962;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e4d4a8 50%, #c9a962 100%);
    --gradient-smoke: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #0f0f18 100%);
    
    /* Spacing */
    --border-width: 8px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   DECORATIVE BORDER FRAME
   ======================================== */
.site-border {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
}

.border-top, .border-bottom, .border-left, .border-right {
    position: absolute;
    background: var(--gradient-gold);
}

.border-top {
    top: 0;
    left: 0;
    right: 0;
    height: var(--border-width);
}

.border-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--border-width);
}

.border-left {
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--border-width);
}

.border-right {
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--border-width);
}

/* Corner Ornaments */
.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary);
    background: var(--bg-dark);
}

.corner-tl {
    top: calc(var(--border-width) - 3px);
    left: calc(var(--border-width) - 3px);
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: calc(var(--border-width) - 3px);
    right: calc(var(--border-width) - 3px);
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: calc(var(--border-width) - 3px);
    left: calc(var(--border-width) - 3px);
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: calc(var(--border-width) - 3px);
    right: calc(var(--border-width) - 3px);
    border-left: none;
    border-top: none;
}

.corner::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.corner-tl::before { top: -3px; left: -3px; }
.corner-tr::before { top: -3px; right: -3px; }
.corner-bl::before { bottom: -3px; left: -3px; }
.corner-br::before { bottom: -3px; right: -3px; }

/* ========================================
   MAIN CONTENT CONTAINER
   ======================================== */
.main-content {
    margin: var(--border-width);
    min-height: calc(100vh - calc(var(--border-width) * 2));
    position: relative;
    background: var(--bg-dark);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========================================
   NAVIGATION DOTS
   ======================================== */
.nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    text-decoration: none;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all 0.3s var(--transition-smooth);
}

.nav-link:hover .nav-dot,
.nav-link.active .nav-dot {
    background: var(--primary);
    transform: scale(1.5);
    box-shadow: 0 0 15px var(--primary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Smoky Gradient Layers */
.smoke-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: smokeFloat 20s ease-in-out infinite;
}

.smoke-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.smoke-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.25) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.smoke-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes smokeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-dark);
    bottom: 30%;
    left: 15%;
    animation-delay: -3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    top: 60%;
    right: 25%;
    animation-delay: -5s;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Content */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(201, 169, 98, 0.5);
    position: relative;
}

.hero-title::after {
    content: 'XEBEL';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: inherit;
    letter-spacing: inherit;
    opacity: 0.1;
    filter: blur(20px);
    -webkit-text-fill-color: var(--primary);
    z-index: -1;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-tagline .line {
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
}

.hero-tagline .text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.float-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 30%;
    right: 15%;
    animation-delay: -2s;
}

.float-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-smoke);
    opacity: 0.5;
    z-index: 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    min-width: 100px;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* 3D Visual Card */
.about-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.visual-card {
    width: 250px;
    height: 300px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--transition-smooth);
}

.visual-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.1), rgba(20, 20, 30, 0.9));
    border: 1px solid rgba(201, 169, 98, 0.3);
    backdrop-filter: blur(20px);
}

.card-front i, .card-back i {
    font-size: 4rem;
    color: var(--primary);
}

.card-front span, .card-back span {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.2), rgba(20, 20, 30, 0.95));
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 98, 0.3);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    pointer-events: none;
}

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

.service-icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.icon-3d {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.4s var(--transition-smooth);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.service-card:hover .icon-3d {
    transform: rotateX(10deg) rotateY(10deg);
}

.icon-3d i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Background Elements */
.services-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: rotateCircle 30s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation: rotateCircle 25s linear infinite reverse;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--section-padding) 0;
    position: relative;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

.feature-item:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateX(10px);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.smoke-contact-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.smoke-contact-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    filter: blur(80px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

/* Location Card */
.contact-visual {
    display: flex;
    justify-content: center;
}

.location-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 50px 40px;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.1), rgba(20, 20, 30, 0.95));
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    text-align: center;
    overflow: hidden;
}

.card-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(201, 169, 98, 0.1) 50%,
        transparent 60%
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.location-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.location-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.location-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

.location-badge span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

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

.logo-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
    margin: 20px auto;
}

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

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth),
                transform 0.8s var(--transition-smooth);
}

[data-animate="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-down"].animate {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"].animate {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-left"].animate {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 768px) {
    :root {
        --border-width: 12px;
    }
    
    .corner {
        width: 40px;
        height: 40px;
    }
    
    .corner::before {
        width: 10px;
        height: 10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .float-card {
        width: 80px;
        height: 80px;
    }
    
    .float-card i {
        font-size: 2rem;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    :root {
        --border-width: 16px;
        --section-padding: 140px;
    }
    
    .corner {
        width: 50px;
        height: 50px;
    }
    
    .corner::before {
        width: 12px;
        height: 12px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .feature-item:hover {
        transform: translateX(20px);
    }
    
    .nav {
        right: 40px;
    }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP
   ======================================== */
@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }
}

/* ========================================
   MOBILE SPECIFIC
   ======================================== */
@media (max-width: 767px) {
    .nav {
        right: 16px;
        gap: 12px;
    }
    
    .nav-dot {
        width: 6px;
        height: 6px;
    }
    
    .float-card {
        display: none;
    }
    
    .hero-tagline .line {
        width: 30px;
    }
    
    .visual-card {
        width: 200px;
        height: 250px;
    }
    
    .card-front i, .card-back i {
        font-size: 3rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-item {
        padding: 24px 20px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .location-card {
        padding: 40px 30px;
    }
}

/* ========================================
   PARALLAX HELPER
   ======================================== */
.parallax-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}

/* Smooth Scroll Fix for Safari */
@supports (-webkit-touch-callout: none) {
    html {
        scroll-behavior: auto;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
