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

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Global anchor reset to prevent browser default blue links */
a {
    color: inherit;
    text-decoration: none;
}

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

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

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

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

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

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

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

/* Utility Classes */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.9s;
}

/* In View Animation */
.animate-in-view {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-in-view.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    display: inline-block;
    white-space: nowrap;
}

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

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

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

.nav-phone {
    display: flex;
    align-items: center;
}

.phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
}

.phone-link:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-block;
}

/* Caret indicator for Services dropdown */
.dropdown-toggle {
    padding-right: 18px; /* space for caret */
    position: relative; /* anchor for caret positioning */
}

.dropdown-toggle::before {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    opacity: 0.85;
    pointer-events: none;
}

.dropdown:hover .dropdown-toggle::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .dropdown-toggle {
        padding-right: 24px; /* slightly more room on mobile */
    }
    .dropdown-toggle::before {
        font-size: 12px;
        right: 2px;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding-left: 35px;
}

.dropdown-link::before {
    content: '→';
    position: absolute;
    left: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-link:hover::before {
    opacity: 1;
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #010101; /* Near-black background during logo animation */
    transition: background 0.8s ease-out;
    margin: 0;
    padding: 0 !important; /* Override the default section padding */
    line-height: 0;
    font-size: 0;
}

.hero.video-active {
    background: transparent; /* Transparent when video is active */
}

/* Logo Animation Container */
.logo-animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #010101; /* Near-black to match hero background */
    opacity: 1;
    transition: opacity 0.8s ease-out;
    line-height: 0;
    font-size: 0;
}

.logo-animation-container.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
    transform: translateZ(-1px);
}

.logo-animation-container video {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-in;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.hero-video.visible {
    opacity: 1;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    vertical-align: top;
    line-height: 0;
    font-size: 0;
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.hero-video.visible .hero-overlay {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 5;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
    position: relative;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hero-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
}

.hero-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.cta-button.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out 0.6s, transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    background: #000;
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #000;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0.8;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-weight: 400;
}

/* Experience Section */
.experience {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    z-index: 2;
    padding: 120px 0;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/images/examples6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

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

.experience-content {
    max-width: 1100px;
    margin: 0 auto;
}

.experience .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.experience-text {
    padding-right: 20px;
}

.experience-text .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.experience-cta {
    display: inline-block;
    margin-top: 0;
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.4s ease !important;
}

.experience-cta:hover {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.experience-cta-mobile {
    display: none;
    text-align: center;
    margin-top: 40px;
}

.experience-image-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.experience-image-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

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

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.experience-image-card:hover .image-card-overlay {
    transform: translateY(0);
}

.image-card-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.image-card-overlay p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 400px) auto;
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.5s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.product-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.product-card:hover .product-title {
    transform: translateY(-5px) scale(1.05);
}

/* Full-width motorization card */
.product-card-full-width {
    grid-column: 1 / -1;
    grid-row: 3;
}

/* Reviews Section */
.reviews {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    z-index: 2;
    padding: 120px 0;
}

.reviews-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/images/examples1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

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

.reviews .section-title {
    color: #fff;
    margin-bottom: 60px;
}

/* Infinite Carousel */
.reviews-carousel-container {
    overflow: hidden;
    position: relative;
    margin: 60px 0 50px;
    padding: 20px 0;
    cursor: grab;
    /* Ensure touch dragging works reliably on iOS/Safari */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}

.reviews-carousel-container:active {
    cursor: grabbing;
}

.reviews-carousel {
    display: flex;
    gap: 40px;
    animation: infiniteScroll 60s linear infinite;
    width: max-content;
    will-change: transform;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.review-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.8s ease;
}

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

.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.review-author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.review-source {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-rating {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 8px;
}

.review-date {
    font-size: 13px;
    opacity: 0.7;
}

/* Review Action Buttons */
.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.5s ease;
    z-index: -1;
}

.review-button:hover::before {
    left: 0;
}

.review-button:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.leave-review {
    background: transparent;
}

.see-all-reviews {
    background: rgba(255, 255, 255, 0.1);
}

/* Gallery Section */
.gallery {
    background: #f8f8f8;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

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

/* Quality Section */
.quality {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.quality-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.quality-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.quality-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

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

.quality-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quality .section-title {
    color: #fff;
    margin-bottom: 30px;
}

.quality .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    background: #f8f8f8;
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-phone {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #333;
    transform: translateX(10px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.submit-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Form submit container and success message */
.form-submit-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.success-message {
    color: #4CAF50;
    font-weight: 600;
    font-size: 14px;
    display: none;
    animation: fadeInUp 0.3s ease;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
}

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

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

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact strong {
    color: #fff;
    font-weight: 600;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 20px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Instagram specific styling */
.footer-social a:first-child:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: transparent;
}

/* Facebook specific styling */  
.footer-social a:last-child:hover {
    background: #1877f2;
    border-color: transparent;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 10px;
    }
    
    .nav-item {
        margin: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-template-rows: auto;
        gap: 30px;
    }
    
    .product-card-full-width {
        grid-column: auto;
        grid-row: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 30px 0;
        height: calc(100vh - 80px);
        justify-content: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        display: inline-block;
        white-space: nowrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-phone {
        display: none;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }

    .dropdown-toggle {
        display: inline-block;
    }

    .dropdown-link {
        padding: 15px 40px;
        font-size: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 50px;
    }

    /* Sections */
    section {
        padding: 80px 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Logo Animation Mobile */
    .logo-animation-container video {
        max-width: 80%;
        max-height: 50%;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .hero-title.animate,
    .hero-title {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .hero-subtitle.animate,
    .hero-subtitle {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .cta-button,
    .cta-button.animate {
        padding: 15px 30px;
        font-size: 14px;
        opacity: 1 !important;
        transform: translateY(0) !important;
        display: inline-block !important;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 16px;
        padding: 0 10px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
        margin-top: 40px;
    }

    .product-card {
        height: 300px;
    }
    
    .product-card-full-width {
        grid-column: auto;
        grid-row: auto;
    }

    /* Reviews */
    .review-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px 20px;
    }

    .reviews-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .review-button {
        width: 250px;
        text-align: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        height: 250px;
    }

    /* Experience */
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .experience-text {
        padding-right: 0;
    }

    .experience-text .section-description {
        text-align: center;
        font-size: 16px;
    }

    .experience-image-card {
        height: 300px;
        margin: 0 auto;
        width: 100%;
        max-width: none;
    }

    /* Make overlay text static on mobile */
    .experience-image-card .image-card-overlay {
        transform: translateY(0);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px 15px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }

    /* Hide desktop experience-cta buttons on mobile for experience sections */
    .experience .experience-cta,
    .outdoor-pergolas .experience-cta,
    .outdoor-phantom-section .experience-cta,
    .curtains-motorized .experience-cta,
    .blinds-alternative .experience-cta,
    .motorization-experience .experience-cta {
        display: none !important;
    }

    .experience-cta-mobile {
        display: block !important;
    }

    .experience-cta-mobile .cta-button.secondary {
        background: #fff !important;
        color: #000 !important;
        border: 2px solid #fff !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .experience-cta-mobile .cta-button.secondary:hover {
        background: transparent !important;
        color: #fff !important;
        border: 2px solid #fff !important;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }

    /* Show experience-cta buttons in quality section on mobile */
    .quality .experience-cta {
        display: inline-block !important;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-phone {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 12px;
    }

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

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

    .nav-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    /* Logo Animation Small Mobile */
    .logo-animation-container video {
        max-width: 90%;
        max-height: 40%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 15px;
    }

    .product-card {
        height: 250px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px 15px;
    }
    
    .review-content p {
        font-size: 14px;
        -webkit-line-clamp: 5;
    }
    
    .review-button {
        padding: 12px 25px;
        font-size: 13px;
        width: 220px;
    }

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

    .gallery-item {
        height: 200px;
    }

    .experience-image-card {
        height: 250px;
        width: 100%;
        max-width: none;
    }

    /* Make overlay text static on small mobile */
    .experience-image-card .image-card-overlay {
        transform: translateY(0);
        padding: 15px 12px;
    }

    .contact-phone {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 15px;
    }

    .submit-button {
        padding: 15px 30px;
        font-size: 14px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

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

/* Performance Optimizations */
.product-image img,
.gallery-item img,
.quality-bg-img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Preloader (Optional) */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .parallax-element {
        transform: none !important;
    }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    opacity: 1;
    transform: translateY(0);
}

.about-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: none;
    animation: none;
}

.about-hero .hero-title:hover {
    transform: translateY(0);
    opacity: 1;
}

.about-hero .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 20px;
    transition: none;
    animation: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

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

.mission-content {
    padding-right: 20px;
}

.mission-text {
    text-align: left;
}

.mission-intro {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}



.mission-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: left;
}

.mission-image-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.main-card {
    height: 300px;
}

.mission-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.small-card {
    height: 180px;
}

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

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

.mission-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.mission-image-card:hover .mission-card-overlay {
    transform: translateY(0);
}

.mission-card-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.mission-card-overlay h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.mission-card-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.mission-highlight {
    position: relative;
    margin-top: 80px;
    border-radius: 25px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mission-highlight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.mission-highlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.mission-highlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
    width: 100%;
}

.mission-highlight-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
    font-style: italic;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* How It Works Section */
.how-it-works {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.how-it-works-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/images/examples2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.how-it-works-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works .section-title {
    color: #fff;
    margin-bottom: 40px;
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    max-width: none;
}

.how-it-works .section-description p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: #f8f8f8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-us-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.why-us-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.why-us-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.5s ease;
}

.why-us-card:hover .why-us-image::after {
    background: rgba(0, 0, 0, 0.2);
}

.why-us-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    transform: translateY(0);
    transition: all 0.5s ease;
    z-index: 2;
}

.why-us-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.why-us-overlay p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Gallery Showcase Section */
.gallery-showcase {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.gallery-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/images/examples7.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.gallery-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.gallery-showcase .container {
    position: relative;
    z-index: 1;
}

.gallery-showcase-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.gallery-showcase .section-title {
    color: #fff;
    margin-bottom: 30px;
}

.gallery-showcase .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .mission {
        padding: 80px 0;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 40px;
    }
    
    .mission-content {
        padding-right: 0;
        text-align: center;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .mission-intro {
        font-size: 20px;
        padding-left: 0;
        text-align: center;
    }
    
    .mission-intro::before {
        display: none;
    }
    
    .mission-description {
        text-align: center;
        font-size: 16px;
    }
    
    .mission-image-showcase {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .main-card {
        height: 250px;
    }
    
    .small-card {
        height: 150px;
    }
    
    .mission-highlight {
        margin-top: 60px;
        min-height: 180px;
    }
    
    .mission-highlight-content {
        padding: 40px 30px;
    }
    
    .mission-highlight-content h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    /* Make overlays static and always visible on tablet */
    .mission-card-overlay {
        transform: translateY(0) !important;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 25px 20px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: #fff;
    }
    
    .how-it-works {
        padding: 80px 0;
        min-height: auto;
    }
    
    .how-it-works .section-description p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .why-us {
        padding: 80px 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .why-us-card {
        height: 350px;
    }
    
    .why-us-overlay {
        padding: 30px 25px;
    }
    
    .why-us-overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .why-us-overlay p {
        font-size: 14px;
    }
    
    .gallery-showcase {
        padding: 80px 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .mission-intro {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .mission-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .mission-image-showcase {
        max-width: 100%;
    }
    
    .mission-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .main-card {
        height: 300px;
    }
    
    .small-card {
        height: 250px;
    }
    
    /* Make overlays static and always visible on mobile */
    .mission-card-overlay {
        transform: translateY(0) !important;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px 15px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: #fff;
    }
    
    .mission-highlight {
        margin-top: 40px;
        min-height: 160px;
        border-radius: 15px;
    }
    
    .mission-highlight-content {
        padding: 30px 20px;
    }
    
    .mission-highlight-content h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .why-us-card {
        height: 300px;
    }
    
    .why-us-overlay {
        padding: 25px 20px;
    }
    
    .why-us-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Ensure caret doesn't overlap text on mobile nav */
@media (max-width: 768px) {
    .nav-link.dropdown-toggle {
        padding-right: 26px !important; /* override .nav-link mobile padding */
    }
    .nav-link.dropdown-toggle::before {
        right: 6px;
    }
}

/* Shades Page Specific Styles */
.shades-hero {
    height: 60vh;
    min-height: 400px;
}

.shades-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.shades-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
}

/* Contact Us button for white background sections */
.mission .cta-button.secondary {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.mission .cta-button.secondary:hover {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Consultation CTA Section */
.consultation-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.consultation-cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.consultation-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.consultation-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-phone:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.phone-icon {
    font-size: 18px;
}

.phone-number {
    letter-spacing: 0.5px;
}

.cta-consultation {
    background: transparent;
    color: #000;
    text-decoration: none;
    padding: 18px 35px;
    border: 2px solid #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-consultation:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive for consultation CTA */
@media (max-width: 768px) {
    .consultation-cta {
        padding: 60px 0;
    }
    
    .consultation-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .consultation-text h2 {
        font-size: 1.8rem;
    }
    
    .consultation-text p {
        font-size: 1rem;
    }
    
    .consultation-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-phone,
    .cta-consultation {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .consultation-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-phone,
    .cta-consultation {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* Background images for shades page sections */
.shades-visual-comfort {
    background-image: url('assets/images/examples4.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.shades-motorization {
    background-image: url('assets/images/examples5.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 10px 8px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.7;
}

.lang-btn:hover {
    opacity: 1;
    color: #ccc;
}

.lang-btn.active {
    opacity: 1;
    color: #fff;
    font-weight: 600;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: all 0.3s ease;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    user-select: none;
}

/* Desktop language switcher */
.lang-switcher {
    margin-left: 20px;
}

/* Desktop/Mobile visibility controls */
.desktop-only {
    display: block;
}

/* Keep buttons as inline-block when using desktop-only */
.cta-button.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

/* Mobile language switcher adjustments */
@media (max-width: 768px) {
    .desktop-only,
    .cta-button.desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }
    
    .lang-switcher {
        margin: 0;
        order: -1; /* Place at top of mobile menu */
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .lang-switcher .nav-item {
        margin: 10px 0;
    }
    
    .language-switcher {
        justify-content: center;
        padding: 20px 0;
    }
    
    .lang-btn {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .lang-separator {
        font-size: 16px;
        margin: 0 5px;
    }
}

/* Curtains Page Specific Styles */
.curtains-hero {
    height: 60vh;
    min-height: 400px;
}

.curtains-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

/* Background images for curtains page sections */
.curtains-style .quality-bg {
    background-image: url('assets/images/examples6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.curtains-motorized .experience-bg {
    background-image: url('assets/images/examples1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Background images for blinds page sections */
.blinds-alternative .experience-bg {
    background-image: url('assets/images/examples2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.blinds-motorized .how-it-works-bg {
    background-image: url('assets/images/examples1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Outdoor Page Specific Styles */
.outdoor-hero .hero-bg {
    background-image: url('assets/images/examples11.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.outdoor-hero .hero-content {
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.outdoor-hero .hero-title,
.outdoor-hero .hero-subtitle,
.outdoor-hero .cta-button {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Background images for outdoor page sections */
.outdoor-pergolas .experience-bg {
    background-image: url('assets/images/examples1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Remove any conflicting background image from the img element */
.outdoor-pergolas .experience-bg .quality-bg-img {
    display: none;
}

/* Anti-Insect Phantom Section with Side Video */
.outdoor-phantom-section {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    z-index: 2;
    padding: 120px 0;
}

.outdoor-phantom-section .experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('assets/images/examples3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Remove any conflicting background image from the img element */
.outdoor-phantom-section .experience-bg .quality-bg-img {
    display: none;
}

.outdoor-phantom-section .experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.outdoor-phantom-section .container {
    position: relative;
    z-index: 1;
}

.outdoor-phantom-section .experience-content {
    max-width: 1100px;
    margin: 0 auto;
}

.outdoor-phantom-section .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.outdoor-phantom-section .experience-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.experience-video-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.experience-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.outdoor-phantom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.experience-video-card:hover .outdoor-phantom-video {
    transform: scale(1.1);
}

.outdoor-phantom-section .experience-text {
    padding-left: 20px;
}

.outdoor-phantom-section .experience-text .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.outdoor-phantom-section .experience-cta {
    display: inline-block;
    margin-top: 0;
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.4s ease !important;
}

.outdoor-phantom-section .experience-cta:hover {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.outdoor-phantom-section .experience-cta-mobile {
    display: none;
    text-align: center;
    margin-top: 40px;
}

/* Mobile responsive for outdoor phantom section */
@media (max-width: 768px) {
    .outdoor-phantom-section {
        padding: 80px 0;
    }
    
    .outdoor-phantom-section .experience-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .outdoor-phantom-section .experience-text {
        padding-left: 0;
    }
    
    .outdoor-phantom-section .experience-text .section-description {
        text-align: center;
        font-size: 16px;
    }
    
    .experience-video-card {
        height: 300px;
        margin: 0 auto;
        width: 100%;
        max-width: none;
    }
    
    .outdoor-phantom-section .experience-cta-mobile {
        display: block !important;
    }
    
    .outdoor-phantom-section .experience-cta-mobile .cta-button.secondary {
        background: #fff !important;
        color: #000 !important;
        border: 2px solid #fff !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .outdoor-phantom-section .experience-cta-mobile .cta-button.secondary:hover {
        background: transparent !important;
        color: #fff !important;
        border: 2px solid #fff !important;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }
}

/* Motorization Page Specific Styles */
.motorization-hero .hero-bg {
    background-image: url('assets/images/examples1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.motorization-hero .hero-content {
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.motorization-hero .hero-title,
.motorization-hero .hero-subtitle,
.motorization-hero .cta-button {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Background images for motorization page sections */
.motorization-experience .experience-bg {
    background-image: url('assets/images/examples6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.motorization-control4 .how-it-works-bg {
    background-image: url('assets/images/examples2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/* Contact Page Specific Styles */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #000;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f1f3f4;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.contact-method p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.contact-method-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-method-link:hover {
    color: #333;
    text-decoration: underline;
}

.contact-method-address {
    color: #000;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Contact Main Section */
.contact-main {
    background: #f8f8f8;
    padding: 120px 0;
}

.contact-intro {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-unified-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 1px;
}

/* Map Section */
.contact-map-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-map-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-container {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-address-info {
    text-align: center;
}

.map-address-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.map-address-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-contact-details p {
    margin: 0;
    font-size: 14px;
}

.map-contact-details strong {
    color: #000;
}

.map-contact-details a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-contact-details a:hover {
    color: #333;
    text-decoration: underline;
}

/* Enhanced Contact Form */
.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-enhanced .form-group {
    margin-bottom: 0;
}

.contact-form-enhanced label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-enhanced input,
.contact-form-enhanced textarea,
.contact-form-enhanced select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form-enhanced input:focus,
.contact-form-enhanced textarea:focus,
.contact-form-enhanced select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-form-enhanced select {
    cursor: pointer;
}

.submit-button.enhanced {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-button.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button.enhanced:hover::before {
    left: 100%;
}

.submit-button.enhanced:hover {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Info Extended Section */
.contact-info-extended {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-info-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #000;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #f1f3f4;
}

.contact-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.service-note {
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.why-choose-list p {
    text-align: left;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
    color: #000;
    font-weight: 500;
}

.hours-list p {
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-map-section,
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 80px 0;
    }
    
    .contact-info-extended {
        padding: 60px 0;
    }
    
    .contact-map-section,
    .contact-form-section {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .contact-section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .contact-form-enhanced input,
    .contact-form-enhanced textarea,
    .contact-form-enhanced select {
        padding: 15px;
        font-size: 15px;
    }
    
    .submit-button.enhanced {
        padding: 18px 35px;
        font-size: 14px;
    }
    
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-info-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .contact-info-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .hero-video,
    .language-switcher {
        display: none;
    }
    
    .hero {
        background: #f8f8f8;
        color: #000;
    }
    
    .testimonials,
    .quality {
        background: #fff;
        color: #000;
    }
}
