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

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ECE9E4;
}

/* Main Container - Full Height Layout */
.main-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    padding-top: 70px;
    overflow: hidden; /* Prevent scrolling beyond viewport */
}

/* Content Area - Flexible Height */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 2rem 0.5rem;
    gap: 0.5rem;
    overflow: hidden;
    min-height: 0; /* Ensure proper flex sizing */
}

/* Project Preview - Better Space Management */
.project-preview {
    flex: 1 1 auto; /* Allow it to grow and shrink */
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    /* Ensure it doesn't take up too much space */
    max-height: calc(100vh - 300px); /* Leave space for navbar, thumbnails, and project cards */
    min-height: 300px; /* Minimum usable size */
}

.preview-gallery {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #006C67, #003844);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Better height constraints to leave room for project cards */
    min-height: 250px;
    max-height: min(500px, calc(100vh - 350px)); /* Adaptive max height */
    height: 100%;
}

.preview-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.preview-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    align-items: center;
    justify-content: center;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: none;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: none !important;
    image-orientation: from-image;
}

.preview-image.active {
    display: block;
}

.preview-image.loading {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.preview-image.loaded {
    opacity: 1;
}

.preview-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #006C67, #003844);
    color: #ECE9E4;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.preview-placeholder.hidden {
    display: none;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ECE9E4;
}

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

/* Fullscreen Hint */
.fullscreen-hint {
    position: absolute;
    bottom: 45px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ECE9E4;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
    z-index: 5;
}

.preview-image-container:hover .fullscreen-hint {
    opacity: 1;
}

.preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #003844;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.preview-nav:hover {
    background: #DB8636;
    color: #ECE9E4;
    transform: translateY(-50%) scale(1.1);
}

.preview-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.preview-prev {
    left: 10px;
}

.preview-next {
    right: 10px;
}

.preview-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #ECE9E4;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* Fullscreen Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fullscreen-modal.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.fullscreen-close-text {
    color: #ECE9E4;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    opacity: 0.9;
}

/* Thumbnail Gallery Container */
.thumbnail-gallery-container {
    flex: 0 0 auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.thumbnail-gallery-container.visible {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 0.5rem 0;
}

.thumbnail-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.thumbnail-gallery {
    overflow: hidden;
    flex: 1;
    position: relative;
    margin: 0 50px;
    border-radius: 8px;
}

.thumbnail-track {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.4s ease-out;
    will-change: transform;
    padding: 0.5rem 0;
}

.thumbnail-item {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #006C67, #003844);
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.thumbnail-item:hover {
    border-color: #DB8636;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thumbnail-item.active {
    border-color: #003844;
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.thumbnail-item .thumbnail-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #DB8636;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ECE9E4;
    text-align: center;
    padding: 0.2rem;
}

.thumbnail-nav {
    background: linear-gradient(135deg, #006C67, #003844);
    color: #ECE9E4;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
}

.thumbnail-nav:hover:not(:disabled) {
    background: linear-gradient(135deg, #DB8636, #B8731A);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thumbnail-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #666, #444);
}

.thumbnail-nav.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#thumbnail-prev {
    left: 5px;
}

#thumbnail-next {
    right: 5px;
}

/* Project Carousel Container - Fixed for mobile viewport */
.project-carousel-container {
    flex: 0 0 auto; /* Don't grow or shrink, use natural height */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0 0.5rem 0;
    min-width: 0;
    height: auto; /* Let content determine height */
    margin-bottom: 0;
}

.carousel-nav {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #006C67, #003844);
    color: #ECE9E4;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #DB8636, #B8731A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.project-grid {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    min-width: 0;
}

.project-card {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border-left: 4px solid #DB8636;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 160px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.project-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left-color: #003844;
}

.project-card.active {
    border-left-color: #003844;
    background: #f8f8f8;
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: opacity 0.3s ease;
}

.project-image img.loading {
    opacity: 0;
}

.project-image img.loaded {
    opacity: 1;
}

.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ECE9E4;
    text-align: center;
    padding: 0.5rem;
    background: linear-gradient(135deg, #006C67, #003844);
}

.project-info {
    flex: 0 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-title {
    font-size: 1rem;
    color: #003844;
    font-weight: 600;
    line-height: 1.2;
}




/* Loading Spinner */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #DB8636;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 5;
}

.loading-spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }

    html, body {
        height: 100vh; /* Use viewport height instead of 100% */
        height: 100dvh; /* Use dynamic viewport height for better mobile support */
    }

    .navbar {
        padding: 0.8rem 1rem;
        height: 60px;
    }

    .main-container {
        padding-top: 60px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height */
        overflow: hidden; /* Ensure content stays within viewport */
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #003844;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .navbar.mobile-menu-open .nav-list {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: 0;
        background-color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover {
        background-color: #006c67;
        transform: none;
    }

    .nav-link.active {
        background-color: #db8636;
        color: #003844;
    }

    .content-area {
        padding: 0.3rem 0.8rem 0;
        gap: 0.3rem;
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .preview-gallery {
        min-height: 30vh;
        max-height: 40vh; /* Reduced to leave more room for project cards */
    }

    .project-preview {
        max-height: calc(100vh - 280px); /* Adjusted to leave more room for cards */
        min-height: 200px;
    }

    .fullscreen-hint {
        bottom: 35px;
        right: 10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .fullscreen-close-text {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .thumbnail-gallery-container {
        max-width: 100%;
    }

    .thumbnail-gallery-container.visible {
        padding: 0.3rem 0;
    }

    .thumbnail-scroll-container {
        gap: 0.5rem;
    }

    .thumbnail-gallery {
        margin: 0 40px;
    }

    .thumbnail-track {
        gap: 0.4rem;
        padding: 0.3rem 0;
    }

    .thumbnail-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    #thumbnail-prev {
        left: 2px;
    }

    #thumbnail-next {
        right: 2px;
    }

    .thumbnail-item {
        width: 70px;
        height: 50px;
    }

    .project-carousel-container {
        gap: 0.5rem; /* Reduced gap between carousel nav buttons and cards */
        padding: 0.5rem 0 0.3rem 0; /* Reduced padding to fit within viewport */
        margin-bottom: 0;
        flex: 0 0 auto;
        height: auto; /* Let content determine height */
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .project-grid {
        gap: 0.5rem; /* FIXED: Reduced gap between project cards from 1rem to 0.5rem */
    }

    .project-card {
        width: 220px;
        height: 140px;
    }

    .project-info {
        padding: 0.8rem;
    }

    .project-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.6rem 1rem;
    height: 55px;
  }

  body {
    padding-top: 55px;
  }

  .logo-container {
    padding: 4px 8px;
    height: 40px;
    gap: 6px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  main {
    padding: 0.5rem 0;
  }

  .hero-section {
    padding: 0.5rem;
  }

  .slideshow {
    height: 300px;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    letter-spacing: 1px;
  }

  .hero-content .subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
  }

  .hero-content .address {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
  }

  .image-label {
    bottom: 8px;
    left: 8px;
    font-size: 0.55rem;
    padding: 2px 4px;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
  }

  .mobile-menu-toggle {
    padding: 0.4rem;
    gap: 3px;
  }

  .project-carousel-container {
    gap: 0.3rem; /* Even smaller gap for very small screens */
  }

  .project-grid {
    gap: 0.3rem; /* Even smaller gap between project cards on very small screens */
  }

  .project-card {
    width: 180px;
    height: 120px;
  }
}

/* Landscape orientation optimizations for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .slideshow {
    height: 350px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-content .subtitle {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
  }

  .hero-content .address {
    font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .nav-link {
    padding: 1rem 1.2rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .logo-container:hover {
    transform: none;
  }

  .hero-image-container:hover {
    transform: none;
  }
}

/* Performance optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Mobile Contact Form Fixes */
/* Add this to your existing CSS file */

/* Ensure all form inputs are responsive */
.contact-form input[type="text"],
.contact-form input[type="email"], 
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Contact form container responsiveness */
.contact-form,
.contact-section,
.message-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 16px;
    margin: 0;
}

/* Phone number field specific fixes */
input[type="tel"],
.phone-input,
.phone-field {
    width: 100% !important;
    min-width: 0 !important;
    flex: 1 !important;
}

/* Contact info cards responsiveness */
.contact-info,
.contact-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    box-sizing: border-box;
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    /* Form container */
    .contact-form,
    .send-message-form,
    form[class*="contact"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* All form inputs */
    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-bottom: 12px !important;
        padding: 14px 12px !important;
        font-size: 16px !important; /* Prevents iOS zoom */
        border-radius: 6px !important;
        border: 1px solid #ddd !important;
    }
    
    /* Phone number field specific */
    input[type="tel"] {
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    /* Labels */
    .contact-form label,
    label {
        display: block;
        width: 100%;
        margin-bottom: 6px;
        font-weight: 500;
    }
    
    /* Contact info cards */
    .contact-info-grid,
    .contact-cards {
        display: block !important;
        width: 100% !important;
    }
    
    .contact-card {
        width: 100% !important;
        margin-bottom: 16px !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }
    
    /* Button styling */
    .contact-form button,
    .contact-form input[type="submit"] {
        width: 100% !important;
        padding: 14px !important;
        margin-top: 16px !important;
        font-size: 16px !important;
        border-radius: 6px !important;
        box-sizing: border-box !important;
    }
    
    /* Remove any fixed widths */
    * {
        min-width: 0 !important;
    }
    
    /* Ensure proper viewport handling */
    .contact-section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 480px) {
    /* Extra small screens */
    .contact-form {
        padding: 12px !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px !important;
        margin-bottom: 10px !important;
    }
    
    .contact-card {
        padding: 12px !important;
        margin-bottom: 12px !important;
    }
}

/* Specific fixes for common form frameworks */

/* Contact Form 7 specific fixes */
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Gravity Forms specific fixes */
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="text"],  
.gform_wrapper input[type="email"],
.gform_wrapper textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Formidable Forms specific fixes */
.frm_forms input[type="tel"],
.frm_forms input[type="text"],
.frm_forms input[type="email"], 
.frm_forms textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Generic form fixes for any form */
form input[type="tel"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/* Phone number input with country code dropdown */
.phone-input-container {
    display: flex !important;
    width: 100% !important;
}

.phone-input-container select {
    flex-shrink: 0 !important;
    width: auto !important;
    max-width: 30% !important;
    margin-right: 8px !important;
}

.phone-input-container input[type="tel"] {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Ensure proper spacing and alignment */
.contact-form-row,
.form-row {
    display: block !important;
    width: 100% !important;
    margin-bottom: 16px !important;
}

/* Remove any grid layouts on mobile */
@media screen and (max-width: 768px) {
    .contact-form-grid,
    .form-grid {
        display: block !important;
        grid-template-columns: none !important;
    }
}

/* Accessibility improvements */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #DB8636 !important;
    outline-offset: 2px !important;
    border-color: #DB8636 !important;
}

/* Prevent horizontal scrolling */
.contact-section,
.contact-form {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
}