/*
Theme Name: END2END Proposal
Description: Custom WordPress theme for END2END professional landing page proposals. Designed for luxury furniture manufacturer client presentations to Architects & Interior Designers.
Author: ronny.design
Version: 1.0
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #090c00;
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.section:last-child {
    border-bottom: none;
}

/* Solid black background for all sections except hero */
.section:not(.hero-section) {
    background: #000000;
    overflow: hidden;
}

/* Architectural elements removed - sections now use solid black background */
.section:not(.hero-section) .container {
    position: relative;
    z-index: 10;
}

/* Floating architectural elements removed */

/* Detail dots removed */

/* Interactive effects removed */

/* Ensure content is above background elements */
.section:not(.hero-section) h1,
.section:not(.hero-section) h2,
.section:not(.hero-section) h3,
.section:not(.hero-section) h4,
.section:not(.hero-section) h5,
.section:not(.hero-section) h6,
.section:not(.hero-section) p,
.section:not(.hero-section) .btn,
.section:not(.hero-section) .case-item,
.section:not(.hero-section) .contact-card,
.section:not(.hero-section) .journey-step,
.section:not(.hero-section) .about-card {
    position: relative;
    z-index: 15;
}

/* Enhanced grid and architectural elements removed */

/* Gallery Responsive Styles */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .gallery-image {
        height: 200px;
    }

    .gallery-info h4 {
        font-size: 1.2rem;
    }

    .gallery-info p {
        font-size: 0.9rem;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image {
        height: 180px;
    }

    .gallery-info {
        padding: 15px;
    }

    .gallery-info h4 {
        font-size: 1.1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section:not(.hero-section) .container::before,
    .section:not(.hero-section) .container::after {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }

    .section:not(.hero-section) .container::after {
        bottom: 15px;
        right: 15px;
        top: auto;
        left: auto;
    }

    .floating-dot {
        width: 1.5px;
        height: 1.5px;
    }

    .detail-dot {
        width: 2px;
        height: 2px;
    }

    .architectural-mouse-gradient {
        width: 256px;
        height: 256px;
    }
}

/* Performance optimizations */
.section:not(.hero-section) {
    will-change: transform;
    transform: translateZ(0);
}

.architectural-floating-elements,
.architectural-detail-dots {
    will-change: opacity;
    transform: translateZ(0);
}

/* Case Study Title White */
.case-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info {
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    background-clip: text;
}

.gallery-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Gallery Video Section */
.gallery-video-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-video-title {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-video-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    border: none;
    border-radius: 8px;
}

.video-description {
    margin-top: 1rem;
    text-align: center;
}

.video-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Video Modal Styles */
.gallery-video-modal {
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-video-modal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

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

.gallery-video-modal:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.gallery-video-modal:hover .video-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-video-modal:hover .play-button {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.play-button svg {
    color: #333;
    margin-left: 4px; /* Slight offset for visual centering */
}

/* Video Modal Styles */
.video-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(9, 12, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-content {
    width: 100%;
    max-width: 1000px;
}

.video-modal-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.video-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Responsive Video */
@media (max-width: 768px) {
    .gallery-videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .gallery-video-container {
        padding: 1rem;
    }

    .video-wrapper {
        height: 250px;
    }

    .gallery-video-title {
        font-size: 1.5rem;
    }

    .video-modal .modal-content {
        max-width: 95vw;
        margin: 20px auto;
    }

    .video-modal-container {
        height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-wrapper {
        height: 350px;
    }

    /* Third video spans full width on medium screens */
    .gallery-video-container:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

.gallery-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Modal Styles */
.gallery-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(9, 12, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-modal-image-container {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.gallery-modal-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* Gallery loading states */
.gallery-image img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image img.loaded,
.gallery-image img[src] {
    opacity: 1;
}

/* Gallery accessibility improvements */
.gallery-item {
    outline: none;
}

.gallery-item:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

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

/* Gallery keyboard navigation */
.gallery-item[tabindex="0"]:focus {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .floating-dot,
    .detail-dot,
    .architectural-mouse-gradient,
    .architectural-ripple {
        animation: none !important;
        transition: none !important;
    }

    .section:not(.hero-section)::after {
        animation: none !important;
    }
}

/* Language Toggle Styles */
.language-toggle {
    position: absolute;
    top: 100px;
    right: 30px;
    z-index: 999;
    display: flex;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Ensure language toggle is positioned correctly relative to header */
.hero-section .language-toggle {
    z-index: 999;
}

.language-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.lang-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    outline: none;
}

.lang-btn:focus {
    outline: 2px solid rgba(255, 102, 0, 0.5);
    outline-offset: 2px;
}

.lang-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
}

.lang-btn.active .lang-text {
    color: #ffffff;
}

.lang-btn:hover .lang-text {
    color: #ffffff;
    transform: scale(1.05);
}

.lang-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #ff6600, #ff8c00);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.language-toggle[data-active="gr"] .lang-indicator {
    transform: translateX(100%);
}

/* Language transition effects */
.language-transition {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

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

/* Responsive language toggle */
@media (min-width: 1200px) {
    .language-toggle {
        top: 110px;
        right: 40px;
    }
}

@media (max-width: 768px) {
    .language-toggle {
        top: 85px;
        right: 20px;
        padding: 3px;
        border-radius: 20px;
    }

    .lang-btn {
        padding: 6px 12px;
        border-radius: 16px;
    }

    .lang-text {
        font-size: 12px;
    }

    .lang-indicator {
        border-radius: 13px;
    }
}

@media (max-width: 480px) {
    .language-toggle {
        top: 80px;
        right: 15px;
        padding: 2px;
        border-radius: 18px;
    }

    .lang-btn {
        padding: 5px 10px;
        border-radius: 14px;
    }

    .lang-text {
        font-size: 11px;
    }

    .lang-indicator {
        border-radius: 12px;
    }
}

/* Ensure language toggle doesn't interfere with hero content on very small screens */
@media (max-width: 360px) {
    .language-toggle {
        top: 75px;
        right: 10px;
        transform: scale(0.9);
    }
}

/* Accessibility improvements for language toggle */
@media (prefers-reduced-motion: reduce) {
    .language-toggle,
    .lang-btn,
    .lang-text,
    .lang-indicator,
    .language-transition {
        transition: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .language-toggle {
        background: #000000;
        border: 2px solid #ffffff;
    }

    .lang-text {
        color: #ffffff;
    }

    .lang-indicator {
        background: #ffffff;
    }

    .lang-btn.active .lang-text {
        color: #000000;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: #ffffff;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Animated Gradient Title Component */
.animated-title {
    font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: unset !important;
    padding-bottom: 0 !important;
    animation: titleGlow 6s ease-in-out infinite alternate;
    position: relative;
    display: inline-block;
    width: 100%;
}

.animated-title::after {
    display: none !important;
}

/* Glow effects removed */

/* Links */
a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #FFFFFF;
    color: #090c00;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fixed Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(9, 12, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.site-header.scrolled {
    background-color: rgba(9, 12, 0, 0.98);
    padding: 10px 0;
}

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

.header-logo {
    flex-shrink: 0;
}

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

.site-header.scrolled .header-logo-img {
    height: 35px;
}

/* Navigation Menu */
.main-navigation {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
    border: none;
    background: none;
    box-shadow: none;
}

.nav-link:hover,
.nav-link.active,
.nav-link:focus,
.nav-link:active {
    color: #FFFFFF;
    opacity: 1;
    outline: none;
    border: none;
    background: none;
    box-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link:focus::after {
    width: 80%;
}

/* Remove any browser default focus styles */
.nav-link:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Ensure mobile menu links also have clean styling */
.nav-menu a,
.nav-menu a:focus,
.nav-menu a:active,
.nav-menu a:visited {
    outline: none;
    border: none;
    background: none;
    box-shadow: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #FFFFFF;
    color: #090c00;
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 100px 100px, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px, 200px 200px;
    pointer-events: none;
    z-index: 2;
}

/* Hero Background Image - CHAIR.png (Left Side) */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 31.5%;
    height: 70%;
    background-image: url('/wp-content/uploads/2025/06/CHAIR.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 1.0;
    z-index: 1;
    pointer-events: none;
    filter: grayscale(30%) brightness(0.7) contrast(0.8);
    transition: opacity 0.3s ease;
}

/* Hero Background Image - ICON_03.png (Bottom Right) */
.hero-section .container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 35%;
    height: 60%;
    background-image: url('/wp-content/uploads/2025/06/ICON_03.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 1.0;
    z-index: 1;
    pointer-events: none;
    filter: grayscale(30%) brightness(0.7) contrast(0.8);
    transition: opacity 0.3s ease;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    z-index: 10;
    animation: moveUp 2s ease-out forwards;
    opacity: 0;
}

/* Lamp Spotlight Effect */
.lamp-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lamp-left {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 15rem;
    height: 120%;
    background: conic-gradient(from 45deg at 100% 0%, transparent 0deg, rgba(255, 255, 255, 0.8) 45deg, rgba(255, 255, 255, 0.4) 90deg, transparent 135deg);
    mask: linear-gradient(135deg, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask: linear-gradient(135deg, transparent 0%, black 25%, black 75%, transparent 100%);
    animation: expandWidth 3s ease-out forwards;
    opacity: 0;
    filter: blur(1px);
}



.lamp-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: expandSmallWidth 2s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
    filter: blur(2px);
}

.lamp-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-50%);
    animation: moveUpCentered 2s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.lamp-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 20%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: expandWidth 3s ease-out forwards;
    animation-delay: 2s;
    opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 3s;
}

.scroll-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.scroll-arrow-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.scroll-arrow {
    color: #FFFFFF;
    opacity: 0.8;
    animation: gentleBounce 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-arrow-btn:hover .scroll-arrow {
    opacity: 1;
    transform: translateY(2px);
}

/* Scroll indicator animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll indicator responsive behavior */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 25px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow-btn {
        padding: 6px;
    }
}

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

/* Lamp Spotlight Keyframe Animations */
@keyframes expandWidth {
    0% {
        width: 15rem;
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        width: 30rem;
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveUpCentered {
    0% {
        transform: translateX(-50%) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes expandSmallWidth {
    0% {
        width: 8rem;
        height: 8rem;
        opacity: 0;
    }
    100% {
        width: 16rem;
        height: 16rem;
        opacity: 1;
    }
}

/* Architectural Background Patterns - Removed */

/* Geometric shapes removed from About section */
.blueprint-pattern {
    position: relative;
    background: #000000;
}

/* Technical lines removed - architectural grid patterns disabled */
.technical-lines {
    position: relative;
}

.technical-lines::before {
    /* Grid patterns completely removed */
    display: none;
}

.construction-mesh {
    position: relative;
}

.construction-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 50px 50px, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 100px 100px;
    pointer-events: none;
    z-index: 0;
}



/* Particles removed */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .animated-title {
        animation: none;
    }

    .contact-photo {
        animation: none;
    }

    .hero-content,
    .lamp-left,
    .lamp-center-glow,
    .lamp-line,
    .lamp-shadow {
        animation: none;
        opacity: 1;
    }

    /* Particles removed */

    .scroll-arrow {
        animation: none;
    }

    .scroll-indicator {
        animation: none;
        opacity: 1;
    }

    .journey-image-container {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-section::after,
    .hero-section .container::after {
        transition: none !important;
    }
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background-color: #090c00;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.case-modal-content {
    max-width: 98%;
    max-height: 98%;
    width: 1400px;
    height: 900px;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    color: #FFFFFF;
}

.modal-body h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.modal-body p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

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

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

/* PDF Loading and Container Styles */
.pdf-loading {
    text-align: center;
    padding: 60px 20px;
    color: #FFFFFF;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.pdf-container {
    padding: 0;
}

.pdf-container iframe {
    width: 100%;
    min-height: 750px;
    height: 750px;
    border: none;
    border-radius: 10px;
    background: #f5f5f5;
    transition: opacity 0.3s ease;
}

.pdf-fallback {
    text-align: center;
    padding: 40px 20px;
    color: #FFFFFF;
}

.pdf-fallback p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.pdf-fallback .fallback-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pdf-fallback .fallback-content p {
    margin: 0 0 10px 0;
    color: #ffffff;
}

.pdf-fallback .direct-pdf-link {
    background: linear-gradient(45deg, #ff6600, #ff8c00);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 10px;
}

.pdf-fallback .direct-pdf-link:hover {
    background: linear-gradient(45deg, #ff8c00, #ff6600);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

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

.hero-logo {
    max-width: 400px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 15;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: moveUp 2s ease-out forwards;
    animation-delay: 1.8s;
    opacity: 0;
}

.hero-logo img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.hero-headline {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    /* text-shadow removed */
    animation-delay: 2.2s;
    position: relative;
}

/* English two-line layout - hide original text and show custom layout */
.hero-headline[data-translate="hero_headline"]:not(.greek-active) {
    color: transparent;
}

.hero-headline[data-translate="hero_headline"]:not(.greek-active)::before {
    content: "Bespoke Furniture & Architectural Systems\Awith Premium Quality";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    white-space: pre-line;
    text-align: center;
    width: 100%;
}

.hero-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    /* text-shadow removed */
    animation-delay: 2.5s;
}

/* Particles removed */

/* Remaining particles removed */

/* Client Brief Section */
.client-brief {
    background-color: rgba(255, 255, 255, 0.05);
}

.client-brief-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #FFFFFF;
}

/* About Section */
.about-section {
    background-color: #000000;
}

.about-overview {
    margin-bottom: 80px;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.about-icon {
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.about-card h4 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.about-mission {
    text-align: center;
    margin-top: 40px;
}

.services-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.services-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
}

.services-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.mission-highlight h4 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-text {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

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

/* Client Portfolio Section */
.client-portfolio {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-header h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.companies-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.companies-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.companies-image-container:hover .companies-image {
    transform: scale(1.02);
}

.portfolio-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::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.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.portfolio-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Customer Journey Section */
.journey-section {
    background-color: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

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

.journey-header h2 {
    margin-bottom: 15px;
}

.journey-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.journey-intro {
    margin-bottom: 60px;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
}

.intro-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.intro-text h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Journey Process Image Section */
.journey-image-section {
    margin: 60px 0 80px;
    text-align: center;
}

.journey-image-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.journey-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.journey-process-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

.journey-process-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ffffff;
    border-radius: 2px;
    transform: translateX(-50%);
    z-index: 1;
}

.journey-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.journey-step:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-step:nth-child(even) .step-content {
    text-align: right;
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #090c00;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.step-content {
    flex: 1;
    max-width: 45%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.step-icon {
    color: #ffffff;
    margin-bottom: 20px;
}

.step-number {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 10px;
}

.step-info h4 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.journey-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-button {
    background: #ffffff;
    color: #090c00;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Case Studies Section */
.case-studies {
    background-color: #000000;
}

.case-category {
    margin-bottom: 60px;
}

.case-category h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 25px;
}

.case-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-link {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 24px;
    font-family: inherit;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.case-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* White-themed case study categories */
.housing-projects-category .case-item,
.retail-commercial-category .case-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.housing-projects-category .case-item:hover,
.retail-commercial-category .case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.housing-projects-category h3,
.retail-commercial-category h3 {
    color: #ffffff;
    background-clip: text;
}

.housing-projects-category .case-title,
.retail-commercial-category .case-title {
    color: #ffffff;
    background-clip: text;
}

.housing-projects-category .case-link,
.retail-commercial-category .case-link {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

.housing-projects-category .case-link:hover,
.retail-commercial-category .case-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.case-studies-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-studies-request {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-style: italic;
    margin: 0;
}

/* Modal List Styles */
.modal-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-body h4 {
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Project Timeline Section */
.timeline-section {
    background-color: rgba(255, 255, 255, 0.03);
    position: relative;
}

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

.timeline-header h2 {
    margin-bottom: 15px;
}

.timeline-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.methodology-overview {
    margin-bottom: 80px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.overview-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.card-icon {
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.overview-card h4 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.overview-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.project-timeline {
    margin-bottom: 80px;
    position: relative;
}

.timeline-track {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 40px 0;
    overflow: hidden;
}

.track-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    animation: progressFlow 3s ease-in-out infinite;
}

@keyframes progressFlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
}

.timeline-phases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.phase-item {
    position: relative;
    transition: all 0.3s ease;
}

.phase-item:hover {
    transform: translateY(-5px);
}

.phase-marker {
    position: absolute;
    left: -15px;
    top: 20px;
    z-index: 2;
}

.marker-dot {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    border: 4px solid #090c00;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.marker-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 2px;
    height: 60px;
    background: #ffffff;
    transform: translateX(-50%);
}

/* Removed rule that was hiding the last phase marker line */

.phase-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-left: 30px;
    transition: all 0.3s ease;
}

.phase-content:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.phase-header {
    margin-bottom: 15px;
}

.phase-weeks {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.phase-content h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.phase-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.phase-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.deliverable {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.methodology-stats {
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::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.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.stat-icon {
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}

/* Proposal Section */
.proposal-section {
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.proposal-header h2 {
    margin-bottom: 15px;
}

.proposal-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.proposal-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.proposal-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-document {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.preview-document:hover {
    transform: translateY(-10px) scale(1.05);
}

.document-icon {
    color: #ffffff;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.document-pages {
    margin-top: 20px;
}

.page-indicator {
    background: #ffffff;
    color: #090c00;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.page-count {
    font-size: 1.5rem;
    font-weight: 700;
}

.page-label {
    font-size: 0.9rem;
    margin-left: 5px;
}

.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.proposal-details {
    display: flex;
    flex-direction: column;
}

.details-grid {
    display: grid;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.detail-icon {
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 5px;
}

.detail-content h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.proposal-actions {
    margin-bottom: 60px;
}

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

.action-primary,
.action-secondary {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.action-primary:hover,
.action-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: #ffffff;
    color: #090c00;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
    min-width: 200px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #090c00;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
    min-width: 200px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.action-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-item svg {
    color: #ffffff;
    flex-shrink: 0;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 25px;
    z-index: -1;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
}

.contact-photo-wrapper {
    position: relative;
    margin-right: 25px;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.contact-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid transparent;
    background: #ffffff;
    background-origin: border-box;
    background-clip: padding-box;
    position: relative;
    animation: gentlePulse 3s ease-in-out infinite;
    display: block;
    flex-shrink: 0;
}

.contact-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
}

.contact-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background-color: #00ff00;
    border: 3px solid #090c00;
    border-radius: 50%;
}

.contact-info h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-role {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-company {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    align-items: flex-start;
    justify-content: flex-start;
}

.skill-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    flex-shrink: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-link::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.5s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-link-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-link-content {
    flex: 1;
}

.contact-link-title {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 1rem;
}

.contact-link-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-link-arrow {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Company Information Card */
.company-card-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.company-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

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

.company-logo {
    color: #ffffff;
    flex-shrink: 0;
}

.company-info h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.company-tagline {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 500;
}

.company-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Thank You Section */
.thank-you-section {
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.message-header h2 {
    margin-bottom: 15px;
}

.message-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.message-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.message-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-representation {
    position: relative;
    z-index: 2;
}

.team-icon {
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
}

.team-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-in-out infinite;
}

.message-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    color: #ffffff;
    animation: orbit 8s linear infinite;
}

.element-1 {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    left: 10%;
    animation-delay: -2.7s;
}

.element-3 {
    top: 10%;
    left: 20%;
    animation-delay: -5.3s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.message-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 25px;
    z-index: -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quote-icon {
    color: #ffffff;
}

.card-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.message-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.message-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.highlight-icon {
    color: #ffffff;
    flex-shrink: 0;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.message-signature {
    text-align: right;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message-signature .signature-regards {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 8px;
}

.message-signature .signature-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    font-style: italic;
    transform: rotate(-1deg);
    display: inline-block;
}

.message-signature .signature-title {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 3px;
}

.message-signature .signature-company {
    font-size: 0.9rem;
    color: #ffffff;
}

.signature-section {
    margin-top: 20px;
}

.signature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.signature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.signature-photo {
    position: relative;
    flex-shrink: 0;
}

.signature-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.photo-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
}

.signature-details {
    flex: 1;
}

.signature-regards {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 5px;
}

.signature-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.signature-title {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 2px;
}

.signature-company {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.signature-contact {
    margin-top: 10px;
}

.contact-quick {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-quick:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.message-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

.cta-container h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-cta {
    background: #ffffff;
    color: #090c00;
    border: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-link:hover {
    opacity: 1;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

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

    .hero-content {
        padding: 80px 0;
    }

    /* Hide Hero Background Images on Mobile */
    .hero-section::after,
    .hero-section .container::after {
        display: none;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    /* Mobile lamp effect adjustments */
    .lamp-left {
        width: 12rem;
    }

    .lamp-center-glow {
        width: 6rem;
        height: 6rem;
    }

    @keyframes expandWidth {
        0% {
            width: 12rem;
            opacity: 0;
        }
        50% {
            opacity: 0.8;
        }
        100% {
            width: 25rem;
            opacity: 1;
        }
    }

    @keyframes expandSmallWidth {
        0% {
            width: 6rem;
            height: 6rem;
            opacity: 0;
        }
        100% {
            width: 12rem;
            height: 12rem;
            opacity: 1;
        }
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h2::after {
        width: 60px;
        height: 3px;
    }

    h3 {
        font-size: 1.6rem;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-intro h3 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .about-card {
        padding: 30px 25px;
    }

    .services-info {
        padding: 30px 25px;
        margin: 0 auto 30px;
        max-width: 95%;
    }

    .services-info p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .mission-highlight {
        padding: 30px 25px;
    }

    .mission-text {
        font-size: 1.4rem;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-header h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Journey Section Mobile */
    .intro-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 25px;
    }

    .journey-image-section {
        margin: 40px 0 60px;
    }

    .journey-image-container {
        padding: 20px;
        margin: 0 20px;
    }

    .journey-process-image {
        max-height: 400px;
        border-radius: 10px;
    }

    .journey-image-container:hover {
        transform: translateY(-2px);
    }

    .journey-process-image:hover {
        transform: scale(1.01);
    }

    .journey-timeline {
        margin-bottom: 60px;
    }

    .timeline-line {
        display: none;
    }

    .journey-step {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .journey-step:nth-child(even) {
        flex-direction: column;
    }

    .journey-step:nth-child(even) .step-content {
        text-align: left;
    }

    .step-connector {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .step-content {
        max-width: 100%;
        padding: 25px 20px;
    }

    .cta-content {
        padding: 30px 25px;
    }

    /* Timeline Section Mobile */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-phases {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .phase-marker {
        left: -10px;
    }

    .marker-dot {
        width: 20px;
        height: 20px;
    }

    .phase-content {
        margin-left: 20px;
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Proposal Section Mobile */
    .proposal-showcase {
        flex-direction: column;
        gap: 40px;
    }

    .actions-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .action-primary,
    .action-secondary {
        padding: 30px 25px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    /* Message Section Mobile */
    .message-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-container {
        width: 200px;
        height: 200px;
    }

    .signature-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .message-card {
        padding: 30px 25px;
    }

    .cta-container {
        padding: 30px 25px;
    }

    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(9, 12, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        text-align: center;
        border-radius: 10px;
    }

    /* Contact Card Mobile */
    .contact-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .contact-photo-wrapper {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100px;
        height: 100px;
    }

    .contact-photo {
        width: 100px;
        height: 100px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-skills {
        justify-content: center;
    }

    .skill-tag {
        max-width: 150px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Company Card Mobile */
    .company-card-container {
        margin-top: 40px;
        padding: 0 20px;
    }

    .company-card {
        padding: 30px 20px;
    }

    .company-header {
        gap: 15px;
        margin-bottom: 25px;
    }

    .company-info h3 {
        font-size: 1.8rem;
    }

    .company-tagline {
        font-size: 1.1rem;
    }

    /* Thank You Card Mobile */
    .thank-you-card {
        padding: 30px 25px;
    }

    .thank-you-message {
        font-size: 1.1rem;
        text-align: center;
    }

    .signature-name {
        font-size: 1.6rem;
    }

    /* Modal Mobile */
    .modal-content {
        max-width: 95%;
        max-height: 95%;
        margin: 10px;
    }

    .case-modal-content {
        width: 95%;
        height: auto;
        max-height: 95%;
    }

    .pdf-container iframe {
        min-height: 500px;
        height: 500px;
    }

    .modal-header {
        padding: 20px 20px 15px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 20px;
    }

    .client-brief-content {
        padding: 25px;
    }

    /* Back to Top Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }

    /* Ensure Hero Background Images Remain Hidden on Small Mobile */
    .hero-section::after,
    .hero-section .container::after {
        display: none;
    }

    .hero-headline {
        font-size: 1.6rem;
    }

    .hero-logo {
        max-width: 300px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .contact-photo-wrapper {
        width: 120px;
        height: 120px;
    }

    .contact-photo {
        width: 120px;
        height: 120px;
    }

    .contact-name {
        font-size: 1.6rem;
    }

    .services-info {
        padding: 25px 20px;
        margin: 0 auto 25px;
    }

    .services-info p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .journey-image-section {
        margin: 30px 0 50px;
    }

    .journey-image-container {
        padding: 15px;
        margin: 0 15px;
    }

    .journey-process-image {
        max-height: 300px;
        border-radius: 8px;
    }

    .skill-tag {
        max-width: 120px;
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

/* Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }

    .section {
        page-break-inside: avoid;
        border-bottom: 1px solid #ccc;
    }

    .hero-section {
        background: white !important;
    }

    .btn {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
    }

    .contact-links {
        flex-direction: column;
    }

    .case-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journey-steps {
        grid-template-columns: 1fr 1fr;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background-color: #000000;
        color: #FFFFFF;
    }

    .btn {
        border-width: 3px;
    }

    .case-item,
    .journey-step,
    .contact-card {
        border-width: 2px;
    }
}

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

/* Dark mode support (for browsers that support it) */
@media (prefers-color-scheme: dark) {
    /* Theme is already dark, but we can enhance it */
    body {
        background-color: #000000;
    }

    .section {
        border-bottom-color: rgba(255, 255, 255, 0.2);
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Additional mobile optimizations */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

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

    .hero-content {
        padding: 60px 0;
    }

    .hero-headline {
        font-size: 1.44rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    .section {
        padding: 30px 0;
    }

    .case-content,
    .journey-step {
        padding: 20px 15px;
    }

    .case-image {
        height: 150px;
    }

    .contact-cards-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .contact-photo-wrapper {
        width: 80px;
        height: 80px;
    }

    .contact-photo {
        width: 80px;
        height: 80px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .company-card {
        padding: 20px 15px;
    }

    .company-info h3 {
        font-size: 1.5rem;
    }

    .company-tagline {
        font-size: 1rem;
    }

    .thank-you-card {
        padding: 20px 15px;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .signature-name {
        font-size: 1.4rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .header-logo-img {
        height: 30px;
    }

    .nav-menu {
        top: 60px;
    }

    .modal-content {
        max-width: 98%;
        max-height: 98%;
        margin: 5px;
    }

    .pdf-container iframe {
        min-height: 400px;
    }

    /* About Section Small Mobile */
    .about-intro h3 {
        font-size: 1.6rem;
    }

    .about-card {
        padding: 25px 20px;
    }

    .about-card h4 {
        font-size: 1.2rem;
    }

    .mission-highlight {
        padding: 25px 20px;
    }

    .mission-text {
        font-size: 1.2rem;
    }

    .companies-image-container {
        padding: 20px;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Enhanced Sections Small Mobile */
    .intro-content {
        padding: 25px 20px;
    }

    .journey-image-section {
        margin: 25px 0 40px;
    }

    .journey-image-container {
        padding: 10px;
        margin: 0 10px;
    }

    .journey-process-image {
        max-height: 250px;
        border-radius: 6px;
    }

    .step-content {
        padding: 20px 15px;
    }

    .step-info h4 {
        font-size: 1.2rem;
    }

    .cta-content {
        padding: 25px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .overview-card {
        padding: 30px 20px;
    }

    .phase-content {
        padding: 15px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .preview-document {
        padding: 30px 20px;
    }

    .action-primary,
    .action-secondary {
        padding: 25px 20px;
    }

    .message-card {
        padding: 25px 20px;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .message-text {
        font-size: 1.1rem;
    }

    .signature-name {
        font-size: 1.4rem;
    }

    .cta-container {
        padding: 25px 20px;
    }

    .cta-container h3 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h2::after {
        width: 50px;
        height: 3px;
    }
}

/* New Modal Styles for Case Studies */

/* Slides Modal Styles */
.slides-modal .modal-content {
    max-width: 95vw;
    max-height: 95vh;
    background: rgba(9, 12, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slides-modal-content {
    width: 100%;
    height: 100%;
}

.slides-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.slides-loading {
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.slides-fallback {
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.8);
}

/* Gallery Folder Modal Styles */
.gallery-folder-modal .modal-content {
    max-width: 95vw;
    max-height: 95vh;
    background: rgba(9, 12, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item-modal {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-item-modal:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 150, 0.2);
}

.gallery-item-modal img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px;
    color: #ffffff;
    font-size: 0.9rem;
}

.gallery-item-number {
    font-weight: 500;
}

/* Full-size Image Modal Styles */
.fullsize-image-modal .modal-content {
    max-width: 98vw;
    max-height: 98vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fullsize-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fullsize-modal-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.fullsize-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
}

.fullsize-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}

.image-counter {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Loading states for new modals */
.slides-loading,
.gallery-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.slides-loading .loading-spinner,
.gallery-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Fallback content styling */
.fallback-content {
    text-align: center;
    padding: 40px 20px;
}

.fallback-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.fallback-link {
    background: #ffffff;
    color: #090c00;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.fallback-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    color: #090c00;
}

/* Services Text Animation */

.services-info p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    position: relative;
}

.services-info p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle highlight effect for services text */
.services-info p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 1.5s ease-in-out;
    pointer-events: none;
}

.services-info p.animate-in::before {
    left: 100%;
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .services-info p {
        transition: opacity 0.3s ease;
        transform: none;
    }

    .services-info p::before {
        display: none;
    }
}

/* Mobile responsiveness for new modals */
@media (max-width: 768px) {
    .slides-iframe {
        height: 400px;
    }

    .gallery-grid-modal {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        padding: 15px 0;
    }

    .gallery-item-modal img {
        height: 150px;
    }

    .nav-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .nav-prev {
        left: 10px;
    }

    .nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slides-iframe {
        height: 300px;
    }

    .gallery-grid-modal {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item-modal img {
        height: 120px;
    }

    .fullsize-modal-body {
        padding: 10px;
    }

    .nav-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }
}
