/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #c8a97e;
    --text-color: #333;
    --light-color: #ffffff;
    --grey-color: #f5f5f5;
    --dark-grey: #222;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --secondary-color-rgb: 200, 169, 126;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

/* Header and Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo h1 {
    color: var(--light-color);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.cta-button {
    margin-left: 20px;
}

.cta-button .btn {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.cta-button .btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-color);
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-align: center;
    margin: 0;
    padding: 0; /* Remove padding */
    border-bottom: 0; /* Ensure no border */
}

.hero .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Overlay to improve text readability */
}

.hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.scroll-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-down a {
    display: block;
    color: var(--light-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.scroll-down a:hover {
    color: var(--secondary-color);
}

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

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

/* Home Sections */
.home-section {
    padding: 100px 0;
}

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

.home-section .section-header h2 {
    font-size: 40px;
    margin: 15px 0;
}

.home-section .section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
}

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

/* Experience Section */
.experience-section {
    background-color: var(--grey-color);
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
}

.image-stack-item {
    position: absolute;
    width: 80%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.image-stack-item-top {
    top: 0;
    left: 0;
    z-index: 2;
}

.image-stack-item-bottom {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.content-column h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-column p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.experience-features {
    margin-bottom: 30px;
}

.experience-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.experience-features li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
}

/* Services Section */
.services {
    background-color: transparent; /* Make background transparent for seamless blending */
    position: relative;
    overflow: visible; /* Allow content to overflow for seamless connection */
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove all margin */
}

.services .section-header {
    text-align: center;
    margin-bottom: 0; /* Remove bottom margin to reduce space */
    padding-top: 50px; /* Add padding to create space between video and text */
}

.services-video-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0; /* Remove all margin */
    padding: 0; /* Remove all padding */
    border-radius: 0; /* Remove border radius for seamless connection */
    overflow: hidden;
    box-shadow: none; /* Remove shadow for seamless connection */
}

.services .container {
    position: relative;
    z-index: 1; /* Ensure content is above the video */
    padding-top: 50px; /* Add padding to the container instead of the section */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px auto 0; /* Add top margin to separate from video container */
    max-width: 1400px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: auto;
    padding-top: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--grey-color);
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 600;
}

.section-header h3 {
    font-size: 36px;
    margin: 10px 0;
}

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

.testimonial-slide {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-slide p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--secondary-color);
}

/* About Section */
.about {
    background-color: transparent; /* Make background transparent for seamless blending */
    position: relative;
    overflow: visible; /* Allow content to overflow for seamless connection */
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove all margin */
    text-align: left; /* Override center alignment */
}

.about-video-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0; /* Remove all margin */
    padding: 0; /* Remove all padding */
    border-radius: 0; /* Remove border radius for seamless connection */
    overflow: hidden;
    box-shadow: none; /* Remove shadow for seamless connection */
}

.about-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-container .video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--light-color);
    text-align: center;
    padding: 20px;
}

.about-video-container .video-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-video-container .video-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
}

.about .container {
    padding-top: 50px; /* Add padding to the container instead of the section */
    position: relative;
    z-index: 1;
}

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

/* Override previous about section styles */
.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.about p {
    max-width: 100%;
    margin: 0 0 20px 0;
    font-size: 18px;
    text-align: left;
}

/* Blog Preview Section */
.blog-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card h3 {
    padding: 20px;
    font-size: 18px;
}

/* Locations Section */
.locations {
    background-color: var(--grey-color);
    text-align: center;
}

.locations h2 {
    margin-bottom: 40px;
    font-size: 36px;
}

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

.location-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.location-card p {
    margin-bottom: 5px;
}

.location-card .btn {
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

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

.footer-column h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: 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;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    text-align: center;
}

.modal h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-list li a {
    display: block;
    padding: 10px;
    background-color: var(--grey-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.location-list li a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.close-modal {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: var(--secondary-color);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Reveal Animation */
.service-item.active, .image-stack-item.active, .content-column.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-item:nth-child(1) {
    transition-delay: 0.1s;
}

.service-item:nth-child(2) {
    transition-delay: 0.2s;
}

.service-item:nth-child(3) {
    transition-delay: 0.3s;
}

.service-item:nth-child(4) {
    transition-delay: 0.4s;
}

.image-stack-item-top {
    transition-delay: 0.2s;
}

.image-stack-item-bottom {
    transition-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Add mobile menu CTA button */
    .nav-menu .mobile-cta {
        display: block;
        margin-top: 1rem;
    }
    
    .nav-menu .mobile-cta .btn {
        width: 80%;
        max-width: 200px;
        text-align: center;
    }

    .hero .hero-content h1 {
        font-size: 2.8rem;
    }

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

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

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    section {
        padding: 60px 0;
    }

    .hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero .hero-content p {
        font-size: 1rem;
    }

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

    .service-card {
        margin-bottom: 30px;
    }

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

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

    .video-content h3 {
        font-size: 1.8rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .menu-toggle i {
        font-size: 28px;
        color: var(--light-color);
        transition: transform 0.3s ease;
    }

    .menu-toggle.active i {
        color: var(--secondary-color);
        transform: rotate(90deg);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        color: var(--light-color);
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background-color: var(--primary-color);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--secondary-color);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-menu a:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .cta-button {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .header .container, .navbar .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .cta-button .btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .about-video-container {
        height: 250px;
    }

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

    .video-content p {
        font-size: 0.9rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero .hero-content {
        padding: 0 15px;
    }

    .hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover,
    .btn:hover,
    .nav-menu a:hover::after {
        transform: none;
    }

    .service-card:active,
    .btn:active {
        transform: scale(0.98);
    }
}

/* Landscape Mode Optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .nav-menu {
        padding: 20px 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }
}

/* ===== VIDEO CONTAINERS SHARED STYLES ===== */
.services-video-container video, .about-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--light-color);
    text-align: center;
    padding: 20px;
}

.video-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Services Teaser Section */
.services-teaser {
    background-color: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: var(--light-color);
}

.services-teaser-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-teaser-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-teaser-video-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for better visibility of content */
}

.services-teaser .container {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
}

.services-teaser .section-header h2,
.services-teaser .section-header p {
    color: var(--light-color);
}

.services-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.service-teaser-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    color: var(--light-color);
}

.service-teaser-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-teaser-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-teaser-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.service-teaser-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-color);
}

.service-teaser-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

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

@media (max-width: 992px) {
    .services-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-teaser .container {
        padding: 80px 20px;
    }
    
    .services-teaser .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services-teaser .container {
        padding: 60px 20px;
    }
    
    .services-teaser .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .services-teaser-grid {
        grid-template-columns: 1fr;
    }
    
    .service-teaser-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services-teaser .container {
        padding: 50px 20px;
    }
    
    .services-teaser .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Highlight effect for direct linking to services */
.service-card.highlighted {
    box-shadow: 0 0 20px var(--secondary-color);
    transform: translateY(-10px) scale(1.03);
    transition: all 0.3s ease;
}

.services-teaser .btn {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-teaser .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

/* High contrast mode support */
@media (forced-colors: active) {
    .nav-menu a,
    .cta-button .btn {
        border: 2px solid currentColor;
    }
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
} 