/* ======================================
   IDENTIKA PREMIUM - Apple-inspired CSS
   Ultra-premium design for luxury brands
   ====================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
    font-size: 18px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container System */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 600;
}

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

p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 18px;
    margin: 0;
}

/* Premium Button System */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #2a2a2a;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}



/* Header Premium */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-cta {
    background: #1a1a1a;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section Premium */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.availability-indicator {
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-title {
    margin-bottom: 32px;
    color: #1a1a1a;
    text-align: center;
}

.hero-title-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
    min-height: 1.2em; /* Prevent layout shift during typing */
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title-accent {
    background: linear-gradient(135deg, #6665f1 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Typewriter effect */
.typewriter-cursor {
    color: #6665f1;
    font-weight: 400;
    animation: typewriterBlink 1s infinite;
}

@keyframes typewriterBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    position: relative;
    z-index: 1000;
}

.hero-cta .btn-primary {
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 50%;
    transform: translateX(25%);
}

/* Section Layouts Premium */
.services-section,
.portfolio-section,
.about-section,
.pricing-section,
.calendar-section,
.faq-section {
    padding: 100px 0;
    position: relative;
    min-height: auto;
}

.services-section {
    background: transparent;
}

.stats-section {
    background: transparent;
}



.pricing-section {
    background: transparent;
}

.calendar-section {
    background: transparent;
}

.faq-section {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
}

/* Services Grid Premium */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.1);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 16px;
    font-size: 24px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Portfolio Showcase Premium */
.portfolio-showcase {
    margin-top: 60px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.3;
}

.showcase-content h3 {
    color: #1a1a1a;
    margin-bottom: 16px;
    font-size: 28px;
}

.showcase-content p {
    margin-bottom: 24px;
    font-size: 18px;
}

.showcase-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.showcase-tags span {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
}

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

.about-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    position: relative;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Pricing Section Premium */
.pricing-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 500;
}

.pricing-amount {
    text-align: right;
}

.price {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    font-size: 20px;
    color: #6b7280;
    margin-left: 8px;
}

.pricing-title-section {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-title-section h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.pricing-description {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-header.bonus-header {
    margin-top: 16px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #6366f1;
}

.feature-header h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

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

.feature-list li {
    color: #4b5563;
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
    font-size: 16px;
}

.pricing-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-btn {
    font-size: 18px;
    padding: 16px 32px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    justify-content: center;
}

.pricing-guarantee {
    color: #22c55e;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .pricing-amount {
        text-align: center;
    }
    
    .pricing-btn {
        min-width: auto;
        width: 100%;
    }
}

/* Maintenance Options Section */
.maintenance-options {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.maintenance-header {
    margin-bottom: 48px;
}

.maintenance-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.maintenance-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.maintenance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.maintenance-card.featured {
    border: 2px solid #6366f1;
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(99, 102, 241, 0.15);
}

.maintenance-card.featured:hover {
    transform: translateY(-12px);
}

.maintenance-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.maintenance-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.maintenance-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.maintenance-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.maintenance-price {
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 16px;
}

.maintenance-price span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.maintenance-description p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.maintenance-features {
    text-align: left;
}

.maintenance-features p {
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.maintenance-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maintenance-features li {
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.maintenance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 768px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .maintenance-card {
        padding: 24px;
    }
    
    .maintenance-options {
        margin-top: 40px;
        padding-top: 40px;
    }
}

/* Calendar Section */
.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6665f1, #8b5cf6, #6665f1);
    opacity: 0.6;
}

#my-cal-inline-30mn {
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
}

/* FAQ Section Premium */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
}

.faq-question h4 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-toggle {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
}

.faq-toggle.active {
    transform: rotate(45deg);
    background: #f3f4f6;
    color: #1a1a1a;
}

.faq-answer p {
    padding: 0 32px 32px;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer Premium */
.footer {
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(20px);
    color: #1a1a1a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #6b7280;
    margin-top: 16px;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.footer-contact {
    display: flex;
    gap: 32px;
}

.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6665f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 101, 241, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(102, 101, 241, 0.05);
}

.footer-cta-link:hover {
    background: #6665f1;
    color: white;
    transform: translateY(-2px);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #1a1a1a;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1a1a1a;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Time Widget */
.time-location-fixed {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .hero-cta .btn-primary {
        justify-content: center;
        width: 100%;
    }
    
    .services-section,
    .portfolio-section,
    .about-section,
    .pricing-section,
    .calendar-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .showcase-item {
        margin-bottom: 80px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .pricing-card {
        padding: 32px 20px;
    }
    
    .pricing-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-contact {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    h1 {
        font-size: clamp(2rem, 5.5vw, 3rem);
        line-height: 1.3;
    }
    
    h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-title-accent {
        font-size: inherit;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* Stats Section Premium */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6665f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #6665f1;
    margin-bottom: 16px;
    line-height: 1;
    background: linear-gradient(135deg, #6665f1 0%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.4;
    font-weight: 500;
    max-width: 250px;
    margin: 0 auto;
}

/* Portfolio Section Premium */
.portfolio-section {
    background: transparent;
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(59, 130, 246, 0.12),
        0 20px 40px rgba(59, 130, 246, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.portfolio-video {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    cursor: pointer;
}

.portfolio-youtube {
    border-radius: 16px;
    cursor: default;
}

.portfolio-youtube iframe {
    border-radius: 16px;
    pointer-events: auto;
}

.portfolio-cloudinary {
    border-radius: 16px;
    cursor: default;
}

.portfolio-cloudinary iframe {
    border-radius: 16px;
    pointer-events: auto;
    height: 240px !important;
    object-fit: cover;
}

/* Suppression des boutons de lecture sur les cards */

.portfolio-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-video-element {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 101, 241, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-overlay-transparent {
    background: linear-gradient(135deg, rgba(102, 101, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    opacity: 1;
    backdrop-filter: blur(2px);
}

.portfolio-overlay-transparent .portfolio-content {
    transform: translateY(0);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.portfolio-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-clickable:hover {
    background: linear-gradient(135deg, rgba(102, 101, 241, 0.5) 0%, rgba(139, 92, 246, 0.5) 100%);
}

.portfolio-click-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-click-hint {
    opacity: 1;
    transform: translateY(-2px);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.video-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.video-modal-close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.video-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

.video-modal-body {
    padding: 0;
}

.video-modal-body video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    background: #000000;
}

.video-modal-description {
    padding: 24px 32px;
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95vw;
        max-height: 85vh;
    }
    
    .video-modal-header {
        padding: 20px 24px;
    }
    
    .video-modal-header h3 {
        font-size: 20px;
    }
    
    .video-modal-description {
        padding: 20px 24px;
        font-size: 15px;
    }
}

.portfolio-content {
    padding: 28px 32px 32px 32px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    position: relative;
    text-align: left;
    z-index: 2;
}

.portfolio-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
    border-radius: 0 0 12px 12px;
}

.portfolio-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.portfolio-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 1px;
}

.portfolio-description {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.portfolio-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #334155;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.portfolio-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.portfolio-tag:hover::before {
    left: 0;
}

.portfolio-tag:hover {
    transform: translateY(-3px);
    color: #ffffff;
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
        margin-top: 40px;
    }
    
    .portfolio-video {
        height: 200px;
    }
    
    .portfolio-cloudinary iframe {
        height: 200px !important;
    }
    
    .portfolio-title {
        font-size: 20px;
    }
    
    .portfolio-item:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    /* Disable video autoplay on mobile */
    .portfolio-video-element {
        autoplay: none !important;
    }
    
    /* Ensure buttons are clickable on mobile */
    .hero-cta .btn-primary {
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Premium Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .showcase-item,
    .pricing-card,
    .faq-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .service-card:nth-child(2) {
        animation-delay: 0.1s;
    }
    
    .service-card:nth-child(3) {
        animation-delay: 0.2s;
    }
}

/* Smooth Scrolling Enhancement */
html {
    scroll-padding-top: 100px;
}

/* Focus States for Accessibility */
.btn-primary:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}