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

:root {
    --mds-yellow: #F5D742;
    --mds-blue: #2d3a7e;
    --mds-red: #B81111;
    --mds-green: #3D7026;
    --mds-pink: #9B5A7B;
    --white: #ffffff;
    --gray-light: #fafafa;
    --gray: #7b7b7b;
    --gray-dark: #3c3c3c;
    --cream: #FFFCF7;
    --gold-light: #F9E8C4;
    --navy: #1F2B4D;
}

/* Smooth scrolling for entire website */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Smooth scrolling for all scrollable containers */
[class*="scroll"], .container, section {
    scroll-behavior: smooth;
}

section {
    content-visibility: auto;
    contain-intrinsic-size: 640px;
}

/* Disable content-visibility on mobile to prevent scroll issues */
@media (max-width: 768px) {
    section {
        content-visibility: visible;
        contain-intrinsic-size: auto;
    }
}

.hero,
.navbar,
.footer,
.gallery-hover-preview,
.hero-contact-buttons {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}

/* Prevent glitching - Remove any conflicting transitions */
body {
    transition: none !important;
    opacity: 1 !important;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reduce repaints and improve performance - Fixed to prevent glitching */
.gallery-item,
.service-card,
.about-stat-item,
.service-card-modern {
    /* Removed will-change and transform to prevent glitching */
    /* Only use will-change when element is actually animating */
}

/* Optimize image loading - Fixed */
img {
    /* Removed content-visibility to prevent layout shifts */
    image-rendering: -webkit-optimize-contrast;
}

/* Optimize animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: var(--gray-dark);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid var(--cream);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid var(--gold-light);
}

.navbar.scrolled::before {
    opacity: 0.3;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mds-blue), var(--mds-pink), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: bold;
    color: var(--mds-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    height: 80px;
    overflow: hidden;
    margin-left: -20px;
    padding: 8px 12px;
    border-radius: 12px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.nav-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.05), rgba(233, 30, 99, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover::before {
    opacity: 1;
}

.nav-logo:hover {
    transform: translateX(3px);
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-logo:hover {
        transform: none;
    }
    
    .logo-image:hover {
        transform: none;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }
}

.nav-menu {
    margin-right: -20px;
}


.logo-image {
    height: auto;
    width: 200px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.logo-image:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(26, 35, 126, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
    color: var(--mds-pink);
}

.nav-link span {
    display: inline-block;
    position: relative;
}

.nav-link:hover {
    color: var(--navy);
    transform: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mds-yellow);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    z-index: 1;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 350px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    padding: 10px;
    z-index: 1000;
    list-style: none;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(16, 185, 129, 0.08));
    transform: translateX(5px);
}

.dropdown-item:nth-child(1):hover {
    border-left: 4px solid var(--mds-blue);
}

.dropdown-item:nth-child(2):hover {
    border-left: 4px solid var(--mds-red);
}

.dropdown-item:nth-child(3):hover {
    border-left: 4px solid var(--mds-green);
}

.dropdown-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(16, 185, 129, 0.15));
    transform: scale(1.1);
}

.dropdown-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.4;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: transparent;
    z-index: 1; /* Lower than buttons */
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6) saturate(1.1);
    transition: opacity 2.4s ease-in-out;
    transform: none;
    z-index: 1;
    will-change: opacity;
    backface-visibility: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #04070d;
    overflow: hidden;
    position: absolute;
}

.hero-bg-slide::after {
    content: '';
    position: absolute;
    inset: -5%;
    background:
        radial-gradient(65% 80% at 18% 22%, rgba(255, 210, 140, 0.18), transparent 68%),
        radial-gradient(60% 70% at 82% 28%, rgba(108, 164, 250, 0.16), transparent 70%),
        radial-gradient(100% 85% at 50% 90%, rgba(255, 128, 180, 0.12), transparent 75%);
    background-size: 130% 130%;
    mix-blend-mode: screen;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 3s ease, transform 10s ease;
    pointer-events: none;
    z-index: 2;
}

.hero-bg-slide.active {
    opacity: 1 !important;
    z-index: 10 !important;
    transform: none !important;
    transition: opacity 2.4s ease-in-out !important;
}

.hero-bg-slide.active::after {
    opacity: 0.55;
    transform: scale(1);
    animation: heroAuroraDrift 22s ease-in-out infinite;
}

.hero-bg-slide.prev {
    opacity: 0;
    z-index: 0;
    transform: none;
    pointer-events: none;
}

@keyframes heroAuroraDrift {
    0% {
        background-position: 0% 40%, 100% 50%, 50% 85%;
    }
    50% {
        background-position: 70% 60%, 30% 40%, 50% 65%;
    }
    100% {
        background-position: 0% 40%, 100% 50%, 50% 85%;
    }
}

.hero-bg-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    filter: none;
    pointer-events: none;
    transition: none;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.hero.bg-hidden::before {
    opacity: 1;
    visibility: visible;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 60px;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 11;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    display: block;
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-title {
    font-size: clamp(2.75rem, 6.2vw, 4.8rem);
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-style: normal;
}

.hero-title-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--mds-yellow);
    letter-spacing: 2px;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-align: center;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 32px);
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.9vw, 1.35rem);
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-tagline span {
    position: relative;
    padding: 0 6px;
    font-weight: 700;
    color: #f5f5f5;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 222, 158, 0.95) 50%, rgba(255, 255, 255, 0.9) 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.8s ease, transform 0.4s ease;
}

.hero-tagline span::before {
    content: '';
    position: absolute;
    inset: -6px -12px;
    border-radius: 30px;
    background: rgba(255, 226, 173, 0.12);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-tagline span::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -10px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 203, 110, 0), rgba(255, 203, 110, 0.85), rgba(255, 203, 110, 0));
    opacity: 0.75;
}

.hero-tagline span:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
}

.hero-tagline span:hover::before {
    opacity: 1;
}

.hero-tagline .tagline-dot {
    width: clamp(18px, 2.5vw, 22px);
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
    border-radius: 999px;
    box-shadow: none;
}

.hero-description-copy {
    display: block;
    margin-top: 12px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description .highlight-text::before {
    display: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Service Tabs */
.hero-service-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-service-tab {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    padding: 18px 15px;
    background: transparent;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

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

.hero-service-tab:hover::before {
    left: 100%;
}

.hero-service-tab:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(45, 212, 191, 0.05);
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: 0 5px 15px rgba(45, 212, 191, 0.2);
}

.hero-service-tab:active {
    transform: translateY(-5px) scale(1.02);
}

.hero-tab-icon {
    font-size: 36px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-service-tab:hover .hero-tab-icon {
    transform: scale(1.15) rotate(5deg);
}

.hero-tab-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 16px 42px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--navy);
    box-shadow: 0 4px 15px rgba(15, 27, 61, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 27, 61, 0.3);
    background: var(--mds-yellow);
    border-color: var(--mds-yellow);
    color: var(--navy);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 16px 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--mds-yellow);
    color: var(--mds-yellow);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--mds-yellow), var(--mds-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.service-card-1 {
    color: #60a5fa;
}

.service-card-1:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.05));
    border-color: rgba(96, 165, 250, 0.5);
}

.service-card-2 {
    color: #f87171;
}

.service-card-2:hover {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.2), rgba(248, 113, 113, 0.05));
    border-color: rgba(248, 113, 113, 0.5);
}

.service-card-3 {
    color: #34d399;
}

.service-card-3:hover {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.05));
    border-color: rgba(52, 211, 153, 0.5);
}

.service-card-4 {
    color: #fbbf24;
    grid-column: 1 / -1;
}

.service-card-4:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
    border-color: rgba(251, 191, 36, 0.5);
}

.service-icon-modern {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon-modern svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.service-card-modern:hover .service-icon-modern {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.service-arrow {
    font-size: 24px;
    color: currentColor;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    align-self: flex-start;
}

.service-card-modern:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Hero Contact Floating Buttons - Fixed to viewport, outside all sections */
.hero-contact-buttons {
    position: fixed !important;
    bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    padding: 0 40px !important;
    z-index: 2147483647 !important; /* Maximum z-index value */
    pointer-events: none;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    transform: translateZ(0) !important; /* Force hardware acceleration */
    will-change: transform !important;
}

.contact-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: all !important;
    position: relative;
    z-index: 100000 !important;
    overflow: visible;
}

.contact-float-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    opacity: 0.7;
    pointer-events: none;
    filter: blur(0);
    animation: contact-btn-aurora 5s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.contact-float-btn:hover::after {
    opacity: 1;
}

@keyframes contact-btn-aurora {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px 10px rgba(255, 255, 255, 0.18);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
    }
}

.contact-float-btn.phone-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    animation: contact-btn-aurora 5s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
}

.contact-float-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: contact-btn-aurora 5s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.contact-float-btn.instagram-btn {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    background-size: 200% 200%;
    animation: contact-btn-aurora 5s ease-in-out infinite, instagram-gradient 3s ease infinite;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.4);
}

@keyframes instagram-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Left Contact Buttons Wrapper */
.left-contact-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px !important;
    z-index: 100000 !important;
    pointer-events: all !important;
}

.left-contact-buttons .phone-btn {
    margin-right: 35px !important;
}

.left-contact-buttons .instagram-btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Pulse Glow Animation for Phone Button */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4), 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.6), 0 0 0 10px rgba(0, 123, 255, 0);
    }
}

/* Pulse Glow Animation for WhatsApp Button */
@keyframes pulse-glow-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.contact-float-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.contact-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    filter: saturate(1.05);
}

/* Bulging Animation */
@keyframes bulge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.contact-float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation-play-state: paused !important;
}

/* WhatsApp Contact Wrapper */
.whatsapp-contact-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100000 !important;
    pointer-events: all !important;
}

.whatsapp-contact-label {
    display: none !important;
}

/* WhatsApp Contact Wrapper with Orange Label */
.phone-contact-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100000 !important;
    pointer-events: all !important;
}

.phone-contact-label {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    pointer-events: all;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 100001 !important;
}

.phone-contact-label .contact-label-text {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 2px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.phone-contact-label .contact-phone-number {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.phone-contact-wrapper:hover .phone-contact-label {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    animation: label-glow 1.5s ease-in-out infinite;
}

/* Show phone contact label on scroll - positioned to left of WhatsApp */
body.scrolled .phone-contact-label {
    opacity: 1;
    transform: translateX(0);
}

/* Always show label when scrolled (override hover requirement) */
body.scrolled .whatsapp-contact-wrapper:hover .phone-contact-label,
body.scrolled .phone-contact-wrapper:hover .phone-contact-label {
    opacity: 1;
    transform: translateX(-5px);
}

/* Label Glow Animation */
@keyframes label-glow {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 107, 53, 0.6);
    }
}

.phone-contact-label {
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
    }
}

.whatsapp-contact-wrapper:hover .whatsapp-contact-label {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.contact-label-text {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 4px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    text-align: center;
}

.contact-phone-number {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

/* Show label on scroll */
body.scrolled .whatsapp-contact-label {
    opacity: 1;
    transform: translateX(0);
}

/* Always show label when scrolled (override hover requirement) */
body.scrolled .whatsapp-contact-wrapper:hover .whatsapp-contact-label {
    opacity: 1;
    transform: translateX(0);
}

/* About Us Section */
.about {
    padding: clamp(72px, 8vw, 120px) 0;
    background:
        radial-gradient(60% 75% at 16% 18%, rgba(255, 215, 128, 0.18), transparent 65%),
        radial-gradient(70% 80% at 80% 82%, rgba(112, 170, 255, 0.16), transparent 70%),
        linear-gradient(135deg, #071123, #0f1b34 55%, #050910);
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
    color: #f6f8ff;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 9, 18, 0.85), rgba(5, 11, 24, 0.65));
    z-index: -1;
}

.about-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-section-tag {
    position: relative;
    display: inline-block;
    align-self: center;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.96);
    padding-bottom: 8px;
    text-transform: none;
}

.about-section-tag::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 215, 102, 0.55), rgba(255, 255, 255, 0.15));
}

.about-eyebrow {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: 1.2px;
    white-space: nowrap;
    position: relative;
    left: -30px;
}

.about-lede {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin: 0;
}

.about-layout {
    margin-top: clamp(48px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 56px);
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 26px);
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.about-narrative {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    line-height: 1.75;
}

.about-narrative p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.9vw, 1.08rem);
}

.about-promise {
    max-width: 960px;
    margin: clamp(10px, 2vw, 16px) auto 0;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.about-right {
    display: none;
}

.about-photo-showcase {
    margin-top: clamp(48px, 6vw, 72px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 220px));
    gap: clamp(18px, 3vw, 28px);
    justify-content: center;
    justify-items: center;
    width: 100%;
}

.about-showcase-tile {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    isolation: isolate;
    background: rgba(10, 16, 28, 0.7);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.about-showcase-tile::before {
    content: '';
    position: absolute;
    inset: -20% -30%;
    background: radial-gradient(ellipse at top, rgba(255, 216, 111, 0.28), transparent 60%);
    transform: rotate(6deg);
    opacity: 0.6;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: -1;
}

.about-showcase-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(8, 14, 26, 0.1), rgba(8, 14, 26, 0.55));
    z-index: 1;
    pointer-events: none;
}

.about-showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.about-showcase-caption {
    position: absolute;
    left: 50% !important;
    right: auto !important;
    bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateX(-50%) !important;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(9, 13, 24, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-align: center !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    line-height: 1.2;
}

.about-showcase-tile:hover img {
    transform: scale(1.12);
}

.about-showcase-tile:hover::before {
    transform: rotate(0deg);
    opacity: 0.9;
}

@keyframes aboutFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.01);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes aboutMainParallax {
    0%, 100% {
        transform: scale(1.08) translateY(0);
    }
    50% {
        transform: scale(1.12) translateY(-12px);
    }
}

@keyframes aboutStripFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

/* Services Section */
.services {
    padding: 55px 0 100px;
    background: var(--cream);
    position: relative;
    z-index: 1; /* Lower than buttons */
    scroll-margin-top: 80px; /* Match navbar height exactly */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 0; /* Remove top padding */
    margin-top: 0; /* Remove top margin */
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(26,35,126,0.15), rgba(245,215,66,0.45), rgba(26,35,126,0.15));
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-family: 'Cormorant Garamond', serif;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
    line-height: 1.8;
}

@keyframes aboutFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.01);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes aboutPhotoFade {
    0%, 5% {
        opacity: 0;
        transform: scale(1.05);
    }
    8%, 25% {
        opacity: 1;
        transform: scale(1);
    }
    30%, 100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

/* Service Categories */
.service-category {
    margin-bottom: 80px;
    scroll-margin-top: 80px; /* Match navbar height exactly */
}

#photography,
#videography,
#printing {
    scroll-margin-top: 80px; /* Match navbar height exactly */
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1.5px;
}

.service-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--mds-yellow);
    border-radius: 0;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Center the last 2 cards in photography section */
.service-category:first-child .service-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.service-category:first-child .service-cards-grid::before {
    content: '';
    grid-column: 1;
    grid-row: 2;
}

.service-category:first-child .service-cards-grid .service-card-modern:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.service-category:first-child .service-cards-grid .service-card-modern:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.service-card-modern {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--mds-yellow);
    transition: height 0.4s ease;
    z-index: 1;
}

.service-card-modern:hover::before {
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--mds-yellow);
}

.service-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #fafafa;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Portrait card - show full image without cropping */
.service-category:first-child .service-cards-grid .service-card-modern:nth-child(1) .service-card-image img {
    object-fit: contain;
    object-position: center;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.15);
}

.service-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.service-card-title {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-align: center;
    letter-spacing: 1px;
}

.service-card-modern:hover .service-card-title {
    color: var(--mds-yellow);
}

.service-card-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    text-align: center;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), transparent);
}

.service-header-blue {
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
}

.service-header-red {
    background: linear-gradient(135deg, #059669, #047857);
}

.service-header-green {
    background: linear-gradient(135deg, #10b981, var(--mds-green));
}

.service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 16px;
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 32px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-dark);
    transition: transform 0.3s ease;
}

.service-list li:hover {
    transform: translateX(10px);
}

.service-item-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2dd4bf, #14b8a6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.service-card:nth-child(2) .service-item-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.service-card:nth-child(3) .service-item-icon {
    background: linear-gradient(135deg, #10b981, var(--mds-green));
}

/* Gallery Section */
.gallery {
    padding: 55px 0 100px;
    background: white;
    position: relative;
    z-index: 1; /* Lower than buttons */
    scroll-margin-top: 80px; /* Match navbar height exactly */
}

.gallery-filters {
    display: none;
}

.gallery-filters.gallery-filters--hidden {
    display: none !important;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: white;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 35, 126, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--mds-blue);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    color: white;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
    border-color: transparent;
}

.filter-btn.active::before {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-grid {
    column-count: 3;
    column-gap: clamp(18px, 2.5vw, 32px);
    width: 100%;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: clamp(18px, 2.5vw, 32px);
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: #000;
    transition: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: #000;
}

.gallery-item.large,
.gallery-item.medium,
.gallery-item.small {
    width: 100%;
}

.gallery-item:hover {
    transform: none;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    transition: none;
}

.gallery-item:hover img {
    transform: none;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

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

.gallery-overlay-content {
    display: none;
}

/* Lightbox - DISABLED: Hover preview removed */
.gallery-hover-preview {
    position: fixed;
    inset: 0;
    display: none !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.86);
    z-index: 2147483000 !important;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    visibility: hidden !important;
}

.gallery-hover-preview.active {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.gallery-hover-preview img {
    max-width: min(92vw, 1100px);
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    background: rgba(0, 0, 0, 0.35);
    transition: transform 0.45s ease, opacity 0.3s ease;
    transform: scale(0.98);
    opacity: 0;
}

.gallery-hover-preview.active img {
    transform: scale(1);
    opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
    .gallery-hover-preview {
        display: none !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background: white;
    margin: 40px auto;
    max-width: 800px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--gray-dark);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(0, 0, 0, 0.06);
    color: var(--mds-blue);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-dark);
    margin: 0;
    padding: 40px 40px 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 30px 40px 40px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f8f8f8;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--mds-blue);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--mds-pink);
}

/* Contact Section */
.contact {
    padding: 55px 0 100px;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
    z-index: 1; /* Lower than buttons */
    scroll-margin-top: 80px; /* Match navbar height exactly */
}

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.contact-map-card {
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    transition: none !important;
}

/* Contact Form */
.contact-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: none !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
    box-sizing: border-box;
}

.contact-form-card::before {
    /* Removed animated background effect */
    display: none;
}

.contact-form-card:hover::before {
    /* No hover effects - simple design */
}

.contact-form-card:hover {
    /* No hover effects - simple design */
    transform: none !important;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.form-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
    transition: none !important;
}

.contact-form-card:hover .form-icon-wrapper {
    /* No hover effects - simple design */
}

.form-icon-wrapper svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex: 1;
}


.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--gray-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mds-blue);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(26, 35, 126, 0.1),
        0 8px 25px rgba(26, 35, 126, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.5);
}

.submit-btn:active {
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

.contact-form-reassurance {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(60, 66, 92, 0.85);
    text-align: center;
    background: linear-gradient(120deg, rgba(26, 35, 126, 0.08), rgba(233, 30, 99, 0.08));
    border-radius: 18px;
    padding: 20px 24px;
    border: 1px solid rgba(26, 35, 126, 0.12);
    box-shadow: 0 12px 32px rgba(26, 35, 126, 0.12);
}

.contact-form-highlights {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-highlight-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(26, 35, 126, 0.08);
    box-shadow: 0 10px 28px rgba(26, 35, 126, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.highlight-icon {
    font-size: 1.7rem;
}

.highlight-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(43, 48, 72, 0.85);
    font-weight: 600;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
    box-sizing: border-box;
}

.contact-info-card:hover {
    /* No hover effects - simple design */
    transform: none !important;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 25px;
}

.info-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.info-icon-wrapper svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-dark);
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fcfcfc, #ffffff);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: none !important;
    cursor: pointer;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.contact-item-modern::before {
    /* Removed animated background effect */
    display: none;
}

.contact-item-modern:hover::before {
    /* No hover effects - simple design */
}

.contact-item-modern:hover {
    /* No hover effects - simple design */
}

.contact-icon-modern {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: none !important;
}

.contact-item-modern:hover .contact-icon-modern {
    /* No hover effects - simple design */
}

.contact-icon-modern svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.contact-text-modern {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-label-modern {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value-modern {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.contact-value-modern:hover {
    /* No hover effects - simple design */
}

.contact-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26, 35, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none !important;
    opacity: 0;
    transform: translateX(-10px);
}

.contact-item-modern:hover .contact-arrow {
    /* No hover effects - simple design */
}

.contact-arrow svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2.5;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.contact-icon-blue {
    background: var(--mds-blue);
}

.contact-icon-green {
    background: var(--mds-green);
}

.contact-icon-red {
    background: var(--mds-red);
}

.contact-icon-gold {
    background: linear-gradient(135deg, #f2c94c, #f2994a);
    box-shadow: 0 10px 25px rgba(242, 153, 74, 0.35);
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--mds-pink);
}

/* Contact Map */
.contact-map-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: none !important;
}

.contact-map-card:hover {
    /* No hover effects - simple design */
}

.map-header {
    text-align: center;
    margin-bottom: 25px;
}

.map-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--mds-red), #e91e63);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(183, 28, 28, 0.3);
    transition: none !important;
}

.contact-map-card:hover .map-icon-wrapper {
    /* No hover effects - simple design */
}

.map-icon-wrapper svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
}

.contact-map-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-dark);
    background: linear-gradient(135deg, var(--mds-red), #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 255, 255, 0.5) inset;
    transition: box-shadow 0.3s ease;
    margin-top: 20px;
    position: relative;
}

.map-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.map-logo svg {
    width: 30px;
    height: 30px;
    stroke: var(--mds-blue);
    color: var(--mds-blue);
}

.map-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--mds-blue);
}

.map-container {
    position: relative;
}

.map-container iframe {
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .map-container {
    /* No hover effects - simple design */
}

/* Footer */
.footer {
    background: var(--cream);
    color: var(--gray-dark);
    padding: 60px 0 30px;
    border-top: 3px solid var(--mds-yellow);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

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

.footer-tagline {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic;
    text-transform: lowercase;
    text-align: center;
}

.footer-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: center;
}

.footer-email {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-email a {
    color: var(--mds-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--mds-pink);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.social-icon:hover {
    color: var(--mds-blue);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    list-style: none;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.footer-links ul li a {
    color: var(--gray-dark);
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-links ul li a:hover {
    color: var(--mds-blue);
}

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

.footer-address h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-dark);
    text-align: center;
}

.footer-address p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

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

::-webkit-scrollbar-track {
    background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ============================================
   CLASSIC STUNNING EFFECTS
   ============================================ */

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active,
.reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active,
.reveal-left.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active,
.reveal-right.revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active,
.reveal-scale.revealed {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

/* On mobile, reveal classes start visible immediately - NO opacity 0 */
@media (max-width: 768px) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delay-1 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.float-animation-delay-2 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink), var(--mds-yellow), var(--mds-blue));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

/* Glow Effect on Hover */
.glow-effect {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink), var(--mds-yellow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 1;
    animation: rotate-gradient 3s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink), var(--mds-yellow));
    }
    33% {
        background: linear-gradient(225deg, var(--mds-pink), var(--mds-yellow), var(--mds-blue));
    }
    66% {
        background: linear-gradient(315deg, var(--mds-yellow), var(--mds-blue), var(--mds-pink));
    }
    100% {
        background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink), var(--mds-yellow));
    }
}

/* Enhanced Card Hover Effects */
.service-card-modern {
    position: relative;
    overflow: hidden;
}

.service-card-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.service-card-modern:hover::after {
    width: 300px;
    height: 300px;
}

/* Parallax Effect */
.parallax {
    transition: transform 0.3s ease-out;
}

/* Text Reveal Animation */
@keyframes text-reveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: text-reveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Pulse Glow */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(26, 35, 126, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(233, 30, 99, 0.6);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mds-blue), var(--mds-pink), var(--mds-yellow));
    transform-origin: left;
    z-index: 10000;
    transition: transform 0.1s ease-out;
}

/* Section Background Particles Effect */
.section-particles {
    position: relative;
    overflow: hidden;
}

.section-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: particle-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particle-float {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 0% 100%;
    }
}

/* Enhanced Button Effects */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth Image Zoom on Hover */
.image-zoom {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom:hover {
    transform: scale(1.1);
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stagger Animation Delay */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   CLASSIC ELEGANT EFFECTS
   ============================================ */

/* Elegant Section Dividers */
.section-divider {
    position: relative;
    height: 1px;
    margin: 60px auto;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, var(--mds-yellow), transparent);
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: divider-shine 3s ease-in-out infinite;
}

@keyframes divider-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Elegant Text Typing Effect */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--mds-yellow); }
}

/* Smooth Image Load Animation */
.image-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Classic Card Tilt Effect - Disabled for contact cards */
.card-tilt {
    transition: none !important;
    transform-style: flat !important;
}

.card-tilt:hover {
    transform: none !important;
}

/* Elegant Underline Animation */
.elegant-underline {
    position: relative;
    display: inline-block;
}

.elegant-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mds-blue), var(--mds-pink));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-underline:hover::after {
    width: 100%;
}

/* Subtle Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 215, 66, 0.3), transparent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

.cursor-glow.hover {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(245, 215, 66, 0.2), transparent);
}

/* Elegant Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(45, 58, 126, 0.1);
    border-top-color: var(--mds-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Elegant Section Background Pattern */
.section-pattern {
    position: relative;
    overflow: hidden;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(45, 58, 126, 0.02) 2px,
            rgba(45, 58, 126, 0.02) 4px
        );
    pointer-events: none;
    z-index: 0;
}

/* Smooth Scroll Indicator Enhancement */
.scroll-indicator-enhanced {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator-enhanced:hover {
    opacity: 1;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mds-yellow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: var(--mds-blue);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(45, 58, 126, 0.5);
}

/* Elegant Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Classic Image Zoom with Overlay */
.image-zoom-overlay {
    position: relative;
    overflow: hidden;
}

.image-zoom-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 58, 126, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.image-zoom-overlay:hover::before {
    opacity: 1;
}

/* Elegant Text Shadow Animation */
.text-shadow-animate {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: text-shadow 0.3s ease;
}

.text-shadow-animate:hover {
    text-shadow: 0 4px 20px rgba(45, 58, 126, 0.3);
}

/* Smooth Border Animation */
.border-animate {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.border-animate::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink), var(--mds-yellow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.border-animate:hover::before {
    opacity: 1;
}

/* Elegant Fade In on Scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.visible,
.fade-in-on-scroll.fade-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

/* On mobile, fade-in-on-scroll starts visible immediately - NO opacity 0 */
@media (max-width: 768px) {
    .fade-in-on-scroll {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Prevent re-triggering animations */
.fade-visible,
.counter-animated,
.animated,
.revealed {
    animation-fill-mode: forwards !important;
}

/* Completely disable fade/reveal animations on mobile - make everything visible immediately */
@media (max-width: 768px) {
    /* Disable ONLY reveal/fade animations and transitions on mobile */
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .fade-in-on-scroll,
    .reveal *,
    .reveal-left *,
    .reveal-right *,
    .reveal-scale *,
    .fade-in-on-scroll * {
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    /* On mobile, make ALL elements visible by default - NO FADE EFFECTS EVER */
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .fade-in-on-scroll,
    .revealed,
    .revealed.active,
    .fade-visible,
    .fade-visible.visible,
    .animated,
    .reveal.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed,
    .reveal-scale.revealed,
    .fade-in-on-scroll.fade-visible,
    .fade-in-on-scroll.visible {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) translateX(0) scale(1) !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
        animation: none !important;
    }
    
    /* Force all service cards to be visible always - NEVER fade */
    .service-card-modern,
    .service-card-modern *,
    .service-card-modern.revealed,
    .service-card-modern.fade-visible,
    .service-card-modern.animated,
    .service-card-modern.reveal,
    .service-card-modern.reveal-scale {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
        animation: none !important;
    }
    
    /* Force all gallery items to be visible always - NEVER fade */
    .gallery-item,
    .gallery-item *,
    .gallery-item.revealed,
    .gallery-item.fade-visible,
    .gallery-item.animated,
    .gallery-item.reveal {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
        animation: none !important;
    }
    
    /* Force all sections to be visible always - NEVER fade */
    section,
    section.revealed,
    section.reveal {
        opacity: 1 !important;
        visibility: visible !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
        animation: none !important;
    }
    
    /* Section children - but EXCLUDE captions which need their transform */
    section *:not(.about-showcase-caption) {
        opacity: 1 !important;
        visibility: visible !important;
        transition: opacity 0s !important, visibility 0s !important;
    }
    
    /* Force all contact cards to be visible always - NEVER fade */
    .contact-form-card,
    .contact-info-card,
    .contact-form-card *,
    .contact-info-card *,
    .contact-form-card.revealed,
    .contact-info-card.revealed,
    .contact-form-card.reveal-left,
    .contact-info-card.reveal-right {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
        animation: none !important;
    }
    
    /* Force about section content to be visible */
    .about-text p,
    .about-text p.reveal,
    .about-text p.revealed,
    .about-narrative,
    .about-narrative *,
    .about-promise {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
    }
    
    /* Force section headers to be visible */
    .section-header,
    .section-header *,
    .section-header.reveal,
    .section-header.revealed,
    .section-header.fade-in-on-scroll,
    .section-title,
    .section-subtitle {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
    }
    
    /* Force all service category titles to be visible */
    .service-category-title,
    .service-category,
    .service-category * {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Force about section showcase to be visible - but preserve caption positioning */
    .about-photo-showcase {
        opacity: 1 !important;
        visibility: visible !important;
        transition: opacity 0s !important, visibility 0s !important;
    }
    
    .about-showcase-tile {
        opacity: 1 !important;
        visibility: visible !important;
        transition: opacity 0s !important, visibility 0s !important;
    }
    
    /* Keep images with their scale transform */
    .about-showcase-tile img {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1.05) !important;
        transition: opacity 0s !important, transform 0s !important, visibility 0s !important;
    }
    
    /* Prevent any opacity changes on scroll */
    [style*="opacity"],
    [style*="visibility"] {
        transition: opacity 0s !important, visibility 0s !important;
    }
    
    /* CRITICAL: Caption MUST stay centered - this MUST be the LAST rule to override everything */
    .about-showcase-tile .about-showcase-caption,
    .about-photo-showcase .about-showcase-caption,
    section .about-showcase-caption,
    section.about .about-showcase-caption,
    .about .about-showcase-caption,
    .about-showcase-caption {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important;
        left: 50% !important;
        right: auto !important;
        bottom: 10px !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        transition: opacity 0s !important, visibility 0s !important;
        position: absolute !important;
        z-index: 2 !important;
        width: auto !important;
        max-width: none !important;
        white-space: nowrap !important;
        letter-spacing: 0.3px !important;
        line-height: 1.2 !important;
    }
}

/* Classic Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Elegant Gradient Border */
.gradient-border {
    position: relative;
    background: white;
    border-radius: 12px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--mds-blue), var(--mds-pink));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

/* Smooth Number Counter Animation */
.number-counter {
    display: inline-block;
    transition: transform 0.3s ease;
}

.number-counter.animate {
    animation: numberPop 0.5s ease-out;
}

@keyframes numberPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

body.gallery-hovering .hero-contact-buttons,
body.gallery-hovering .contact-float-btn,
body.gallery-hovering .phone-contact-wrapper,
body.gallery-hovering .whatsapp-contact-wrapper {
    display: none !important;
    pointer-events: none !important;
}

