

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

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.no-scroll {
    overflow: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .nav-link {
    color: #ffffff;
    opacity: 1;
}

.navbar .nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.navbar .nav-link::after {
    background-color: rgba(255, 255, 255, 0.9);
}

.navbar .lang-btn {
    color: white;
    border-color: white;
}

.navbar .lang-btn.active {
    background-color: white;
    color: #333;
}

.navbar .lang-btn.active:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: white;
}

.navbar .lang-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.navbar .hamburger span {
    background-color: white;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: #333;
}

.navbar.scrolled .nav-link::after {
    background-color: #333;
}

.navbar.scrolled .lang-btn {
    color: #333;
    border-color: #333;
}

.navbar.scrolled .lang-btn.active {
    background-color: #333;
    color: white;
}

.navbar.scrolled .hamburger span {
    background-color: #333;
}

/* Privacy Policy page - Solid white navbar all the time */
.navbar.navbar-light {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.navbar-light .nav-link {
    color: #333;
}

.navbar.navbar-light .nav-link::after {
    background-color: #333;
}

.navbar.navbar-light .lang-btn {
    color: #333;
    border-color: #333;
}

.navbar.navbar-light .lang-btn.active {
    background-color: #333;
    color: white;
}

.navbar.navbar-light .lang-btn.active:hover {
    background-color: rgba(51, 51, 51, 0.9);
    border-color: #333;
}

.navbar.navbar-light .lang-btn:hover:not(.active) {
    background-color: rgba(51, 51, 51, 0.15);
    border-color: #333;
}

.navbar.navbar-light .hamburger span {
    background-color: #333;
}

.navbar.navbar-light .instagram-link img {
    filter: brightness(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.nav-logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #666;
}

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

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

.instagram-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.instagram-link img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.instagram-link:hover img {
    opacity: 1;
}

.instagram-link:hover {
    transform: scale(1.1);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    outline: none;
}

.lang-btn.active {
    background-color: #333;
    color: white;
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-btn.active:hover {
    background-color: #555;
    border-color: #555;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover:not(.active) {
    background-color: #f8f9fa;
    border-color: #333;
    transform: translateY(-1px);
}

.mobile-language-switcher {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.mobile-lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.mobile-lang-btn.active {
    background-color: #f0f0f0;
    color: #333;
    border-color: #999;
    box-shadow: none;
}

.mobile-lang-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #999;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Fallback background image if video doesn't load */
.hero {
    background-image: url('images/image-19-800.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 1200px) {
    .hero {
        background-image: url('images/image-19-1200.webp');
    }
}

@media (max-width: 480px) {
    .hero {
        background-image: url('images/image-19-400.webp');
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* Feature Video Section */
.feature-video {
    padding: 100px 0;
    background-color: #fafafa;
    position: relative;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #000;
    position: relative;
    aspect-ratio: 16 / 9;
}

.feature-video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 48px;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.cta-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-style: italic;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.portfolio-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/image-16-800.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

@media (min-width: 1200px) {
    .portfolio-bg-image {
        background-image: url('images/image-16-1200.webp');
    }
}

@media (max-width: 480px) {
    .portfolio-bg-image {
        background-image: url('images/image-16-400.webp');
    }
}

/* Ensure portfolio background doesn't tile and scales to cover on small screens */
@media (max-width: 768px) {
    .portfolio-bg-image, .portfolio {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }
}

.portfolio .container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    padding: 0 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: #f8f8f8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: default;
    aspect-ratio: 4 / 5;
}

.portfolio-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #333;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.secondary-button:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

/* Experience Section */
.experience {
    padding: 120px 0 80px;
    background: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Use pseudo-elements for a fixed background image plus overlay (matches portfolio behavior) */
.experience {
    position: relative;
}
.experience::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('images/image-19-800.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}
.experience::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}
.experience > .container { position: relative; z-index: 2; }

@media (min-width: 1200px) {
    .experience::before { background-image: url('images/image-19-1200.webp'); }
}

@media (max-width: 480px) {
    .experience::before { background-image: url('images/image-19-400.webp'); }
}

/* Disable fixed attachment on smaller viewports for performance */
@media (max-width: 992px) {
    .experience::before { background-attachment: scroll !important; }
}



/* Disable fixed background attachment on smaller viewports for performance */
@media (max-width: 992px) {
    .hero,
    .portfolio-bg-image,
    .experience {
        background-attachment: scroll !important;
    }
}

/* Ensure Experience background doesn't tile on small screens */
@media (max-width: 768px) {
    .experience {
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

.experience .container {
    position: relative;
    z-index: 2;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1200px;
    text-align: left;
}

.experience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-style: italic;
    text-transform: uppercase;
}

.experience-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.experience-text {
    flex: 1.5;
}

.experience-services {
    margin: 2rem 0;
}

.experience-services h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.experience-services ul {
    list-style: none;
    padding: 0;
}

.experience-services li {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-services li::before {
    content: "✓ ";
    color: #2c3e50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-overview {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 73, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-overview .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-overview .section-header p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-weight: 400;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    max-width: 887px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 0 1 220px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.02) 0%, rgba(52, 73, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefits-section {
    margin-top: 4rem;
}

.benefits-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    color: white;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.benefit-item:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

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

.benefit-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.experience-services-overview {
    margin: 2rem 0;
}

.experience-services-overview h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.experience-services-overview > p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
}

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

.benefit-item {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    color: white;
}

.benefit-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.experience-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    flex: 1.1;
    width: 100%;
    max-width: 660px;
}

.experience-image img {
    width: 100%;
    max-width: 660px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-style: italic;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-services {
    margin-top: 2rem;
}

.about-services h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.about-services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.about-services li {
    color: #666;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-services li::before {
    content: '•';
    color: #333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    min-height: auto;
}

.virtual-tour .section-header {
    margin-bottom: 4rem;
}

.virtual-tour-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.virtual-tour-container iframe {
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .virtual-tour {
        padding: 80px 0 60px;
    }

    .virtual-tour-container {
        max-width: 100%;
    }

    .virtual-tour-container iframe {
        height: 400px !important;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 73, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-bg-image {
    display: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

.contact-item {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.contact-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item strong {
    color: #333;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #555;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.social-links {
    margin-top: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.15);
    color: white;
}

.social-link:hover {
    color: #666;
}

.social-link img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fafafa;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
    background-color: white;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    padding: 14px 16px;
}

.submit-btn {
    background-color: #333;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:active {
    background-color: #555;
    transform: scale(0.98);
}

.submit-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    order: 3;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.footer-list li {
    color: #b0b0b0;
}

.footer-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.footer-list a:hover::after {
    width: 100%;
}

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

.footer-bottom p {
    color: #909090;
    font-size: 0.9rem;
}

/* Experience mid-width scaling */
@media (max-width: 1200px) {
    .experience-content {
        gap: 4rem;
        align-items: center;
    }

    .experience-image {
        max-width: 560px;
        width: min(50vw, 560px);
    }
}

/* Benefits grid: keep 2 columns at 1024px to avoid 3-1 split */
@media (min-width: 993px) and (max-width: 1366px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 740px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Portfolio responsive tweaks */
@media (max-width: 992px) {
    .portfolio .container {
        padding: 0 15px;
    }

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

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

    /* Experience: stack content and scale image down for mid widths */
    .experience-content {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        align-items: center;
    }

    .experience-image {
        margin-top: 0;
        max-width: 520px;
        width: min(90vw, 520px);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        order: unset;
    }

    .footer-logo {
        height: 80px;
    }

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

    .footer-list-grid {
        justify-content: center;
    }

    .footer-col-title {
        font-size: 0.9rem;
    }

    .footer-list {
        gap: 0.5rem;
    }

    .footer-list a {
        font-size: 0.95rem;
    }

    .footer-brand {
        gap: 1rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}

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

/* Form Response Modal */
.form-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.85) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
}

.form-modal.active {
    opacity: 1 !important;
    pointer-events: all !important;
}

.form-modal-content {
    background: #ffffff !important;
    padding: 3.5rem 3rem !important;
    border-radius: 16px !important;
    max-width: 550px !important;
    width: 90% !important;
    text-align: center !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative !important;
    z-index: 1000000 !important;
    margin: auto !important;
    border: 2px solid #e5e7eb;
}

.form-modal.active .form-modal-content {
    transform: scale(1);
}

.form-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.form-modal-close:hover {
    color: #333;
}

.form-modal-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: bold;
}

.form-modal-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.form-modal-icon.success::before {
    content: "✓";
}

.form-modal-icon.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
}

.form-modal-icon.error::before {
    content: "✕";
}

.form-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.form-modal-message {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.form-modal-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.form-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: auto;
    width: 420px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 24px 72px rgba(0,0,0,0.28);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 1.2rem 1.2rem 1rem;
    z-index: 500000;
    display: none;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.cookie-banner.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.2px;
}

.cookie-title::before {
    content: '🍪';
    font-size: 1.25rem;
    display: inline-block;
}

.cookie-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
}

.cookie-options {
    display: none;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner.expanded .cookie-options {
    display: flex;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f9f9f9;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
}

.cookie-option.disabled {
    opacity: 0.7;
    background: #f3f4f6;
}

.cookie-option.disabled input {
    pointer-events: none;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
}

.cookie-option label {
    font-size: 0.95rem;
    color: #1f2937;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    padding: 0.85rem 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.cookie-btn.reject {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.cookie-btn.reject:hover {
    background: #f9fafb;
}

.cookie-btn.customize {
    background: transparent;
    color: #1a1a1a;
    text-decoration: underline;
    padding: 0.6rem 0.75rem;
}

.cookie-btn.secondary {
    background: #eeeeee;
    color: #1a1a1a;
}

.cookie-links {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 12px;
}

.cookie-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: #000;
    text-decoration: underline;
}

.cookie-links span {
    margin: 0 8px;
    color: #999;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,26,26,0.25);
}

.cookie-manage-link {
    font-size: 0.9rem;
    color: #1a1a1a;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        max-width: none;
        padding: 1rem 1rem 0.75rem;
        z-index: 999999;
        border-radius: 12px;
    }

    .cookie-banner-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px;
        min-height: 48px;
        font-size: 0.95rem;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    padding: 1.5rem;
    z-index: 2001;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e1e5e9;
}

.mobile-menu-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.close-mobile-menu {
    font-size: 2.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #f5f5f5;
    padding: 0;
    border: none;
    line-height: 1;
}

.close-mobile-menu:active {
    background-color: #e0e0e0;
    color: #333;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    min-height: 56px;
    border-left: 4px solid transparent;
    flex-direction: column;
}

.mobile-menu-link:focus-visible {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #2c3e50;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.mobile-menu-link:active {
    background-color: #f0f7ff;
    border-left-color: #2c3e50;
}

.mobile-menu-link:active::before {
    transform: scaleY(1);
}

.mobile-menu-link .menu-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.mobile-menu-link:active .menu-icon {
    transform: scale(1.1);
}

.mobile-menu-link img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-language-switcher {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.mobile-lang-btn {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    background-color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-lang-btn.active {
    background-color: #2c3e50;
    color: white;
    border-color: #2c3e50;
}

.mobile-lang-btn:active:not(.active) {
    background-color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
        width: 56px;
        height: 56px;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin-right: 0.5rem;
    }
    
    .hamburger span {
        width: 28px;
        height: 2.5px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-logo-image {
        height: 60px;
    }
    
    .instagram-link {
        margin-left: 0.75rem;
    }
    
    .hero {
        padding: 120px 20px 50px;
    }
    
    .hero-bg-video {
        min-height: 100%;
        min-width: 100%;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .video-wrapper {
        aspect-ratio: 16 / 9;
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-services ul {
        grid-template-columns: 1fr;
    }
    
    .experience {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .experience-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }

    .experience-image {
        display: flex;
        max-width: 500px;
        width: min(92vw, 500px);
        margin-top: 0;
    }
    
    .experience-services-overview {
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 1.25rem;
        justify-items: stretch;
        max-width: 740px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 1.25rem;
        max-width: 740px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-overview .section-header h2 {
        font-size: 2.2rem;
    }

    .services-overview .section-header p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        gap: 1.5rem;
        margin-bottom: 4rem;
        max-width: none;
    }

    .service-item {
        flex: 0 1 160px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        gap: 0.5rem;
    }

    .services-overview .section-header h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .services-overview .section-header p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .service-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        border: none;
        padding: 1rem;
        text-align: center;
        margin-bottom: 0;
        min-height: auto;
        border-radius: 12px;
    }

    .service-item::before,
    .service-item::after {
        display: none;
    }

    .service-icon {
        font-size: 1.75rem;
        margin-bottom: 0;
        flex-shrink: 0;
        display: block;
    }

    .service-item h3 {
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
        color: #2c3e50;
        line-height: 1.3;
    }
    
    .benefits-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

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

    .benefit-item {
        background: white;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        font-size: 1.75rem;
        flex-shrink: 0;
    }

    .benefit-item h4 {
        font-size: 0.85rem;
        margin: 0;
        color: #2c3e50;
        line-height: 1.3;
    }

    .experience {
        padding: 80px 0 50px;
        min-height: auto;
    }

    .experience-content {
        gap: 1.5rem;
    }

    .experience-text {
        flex: 1;
    }

    .experience-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .experience-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .experience-services {
        margin: 1.5rem 0;
        text-align: center;
    }

    .experience-services h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .experience-services ul {
        text-align: left;
    }

    .experience-services li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.4rem;
    }

    .experience .cta-button {
        margin-top: 1.5rem;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .portfolio-bg-image,
    .contact-bg-image {
        background-attachment: scroll;
    }

    .contact {
        padding: 60px 0 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-item {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .contact-item strong {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        min-height: 54px;
        font-size: 1rem;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 120px 0 80px;
    background-color: #fafafa;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-style: italic;
    text-transform: uppercase;
}

.privacy-header p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.privacy-section-content {
    margin-bottom: 2.5rem;
}

.privacy-section-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.privacy-section-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.privacy-section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.privacy-section-content strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 1.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .privacy-section-content h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
}

/* Gallery Styles */
.gallery-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.gallery-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 140px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.gallery-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #f8f8f8;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 4 / 5;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-overlay {
    display: none;
}

.image-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

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

.image-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-overlay {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    /* removed circular background to keep only the glyph */
    /* restore circular background only for the close button */
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    -webkit-tap-highlight-color: transparent;
}

.close-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.12);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    /* keep only the glyph, remove circular background */
    background: transparent;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, color 0.18s ease;
    z-index: 10;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.18);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

.back-to-home {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.back-to-home a {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1.5px solid #1a1a1a;
    letter-spacing: 0.5px;
}

.back-to-home a:hover {
    background-color: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.gallery-info-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery-info-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.gallery-info-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.gallery-info-source {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-style: normal;
}

.gallery-info-source::before {
    content: '— ';
}

@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        min-height: 45vh;
    }

    .gallery-hero-content {
        padding: 120px 20px 80px;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .gallery-hero p {
        font-size: 1rem;
    }
    
    .gallery-section {
        padding: 40px 0 80px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 15px;
    }

    .close-overlay {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }

    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 2rem;
    }

    .prev-btn {
        left: 16px;
    }

    .next-btn {
        right: 16px;
    }

    .image-overlay {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        min-height: 40vh;
    }

    .gallery-hero-content {
        padding: 100px 15px 60px;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-hero p {
        font-size: 0.95rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 0.5rem;
    }

    .back-to-home {
        padding: 40px 0 30px;
    }

    .gallery-info-section {
        padding: 80px 0;
    }

    .gallery-info-content {
        padding: 0 20px;
    }

    .gallery-info-quote {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .gallery-info-source {
        font-size: 0.8rem;
    }
}