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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section with Business Meeting Carousel */
.hero-section {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide[data-bg="videoconf1"] {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1926&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide[data-bg="videoconf2"] {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide[data-bg="videoconf3"] {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide[data-bg="videoconf4"] {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1515187029135-18ee286d815b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

/* Carousel Navigation */
.carousel-nav {
    display: none;
}

.nav-btn {
    display: none;
}


/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.company-logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out 0.2s both;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.company-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    animation: expandLine 1.5s ease-out 1s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out 0.4s both;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Dark Theme Section */
.dark-section {
    background-color: #1a1a1a;
    color: white;
    min-height: 50vh;
    padding: 3rem 0;
}

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

/* Contact Section */
.contact-section {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.divider {
    width: 100px;
    height: 2px;
    background-color: #007bff;
    margin: 0 auto 2rem;
    border: none;
}

.contact-section h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    animation: pulse 0.6s ease-in-out;
}

.submit-btn:active {
    background: linear-gradient(135deg, #004085, #003366);
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

/* reCAPTCHA */
.g-recaptcha {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.recaptcha-notice {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Business Support Services */
.services-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.services-intro {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 123, 255, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    display: none;
}

.service-card h3 {
    color: #007bff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.service-card h3::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.service-card p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    background: rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.2);
    margin-top: 40px;
}

.services-cta h3 {
    color: #007bff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-cta p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Contact Information */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.company-info {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 500px;
}

.company-name {
    color: #007bff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.company-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.company-address i {
    color: #007bff;
}

.contact-person {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.contact-person h4 {
    color: #007bff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email,
.contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
}

.contact-email i,
.contact-phone i {
    color: #007bff;
    width: 20px;
    text-align: center;
}

.contact-email a,
.contact-phone a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover,
.contact-phone a:hover {
    color: #007bff;
}

/* Message Board */
.message-board {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.message-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.message-board h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.clear-btn {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.clear-btn:hover {
    background: rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.5);
    transform: translateY(-1px);
}

.message-form {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-form .form-group {
    margin-bottom: 20px;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.message-form input::placeholder,
.message-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.message-form textarea {
    resize: vertical;
    min-height: 100px;
}

.messages-container {
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 15px;
}

.messages-list {
    padding: 20px;
}

.message-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    animation: fadeInUp 0.5s ease;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.message-item:last-child {
    margin-bottom: 0;
}

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

.message-author {
    color: #007bff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message-author::before {
    content: '👤';
    font-size: 14px;
}

.message-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    background: rgba(0, 123, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.message-content {
    color: #fff;
    line-height: 1.6;
    font-size: 15px;
    padding: 8px 0;
    word-wrap: break-word;
}

.no-messages {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    padding: 40px 20px;
}

/* Message Feedback Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    border-top: 1px solid #444;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 0;
}

.accept-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accept-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

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

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

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

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

@keyframes expandLine {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 60%;
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

.submit-btn.loading {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    cursor: not-allowed;
}

/* Success/Error Messages */
.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 0.3s ease-out;
}

.message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
    
    .company-logo {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content h4,
    .cookie-content p {
        margin-bottom: 0;
    }
    
    /* Carousel mobile styles */
    .carousel-nav {
        padding: 0 10px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .services-section {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .services-intro {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-card h3::before {
        width: 30px;
        height: 1.5px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .services-cta {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .services-cta h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .services-cta p {
        font-size: 14px;
    }
    
    .contact-info {
        padding: 15px;
        margin-top: 20px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
    
    .contact-details {
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .company-info,
    .contact-person {
        max-width: 100%;
        padding: 12px;
    }
    
    .contact-methods {
        padding: 12px;
        gap: 6px;
    }
    
    .contact-person h4 {
        font-size: 18px;
    }
    
    .contact-email,
    .contact-phone {
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .company-address {
        font-size: 14px;
        flex-direction: column;
        gap: 5px;
    }
    
    .message-board {
        padding: 20px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .message-board-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .message-board h3 {
        font-size: 20px;
    }
    
    .clear-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .message-form {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .message-form input,
    .message-form textarea {
        font-size: 16px;
    }
    
    .messages-container {
        max-height: 280px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 35vh;
    }
    
    .company-logo {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .submit-btn {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Performance Optimizations */
.hero-section {
    will-change: transform;
}

.contact-form {
    will-change: transform;
}

/* Smooth Transitions */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-color: #fff;
    }
    
    .submit-btn {
        background: #fff;
        color: #000;
    }
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-indicator.show {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Focus States for Accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #007bff;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Print Styles */
@media print {
    .hero-section {
        background: none !important;
        color: #000 !important;
        height: auto !important;
    }
    
    .dark-section {
        background: #fff !important;
        color: #000 !important;
    }
    
    .cookie-consent {
        display: none !important;
    }
    
    .loading-indicator {
        display: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #fff;
    }
    
    .hero-section {
        background: 
            linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%),
            radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="woodDark" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23332211"/><stop offset="50%" style="stop-color:%23221100"/><stop offset="100%" style="stop-color:%231a0f00"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23woodDark)"/><rect x="100" y="100" width="1000" height="400" fill="%232a2a2a" opacity="0.95" rx="20"/><rect x="100" y="100" width="1000" height="400" fill="none" stroke="%23444" stroke-width="3" rx="20"/><circle cx="200" cy="150" r="30" fill="%23444"/><circle cx="350" cy="130" r="25" fill="%23444"/><circle cx="500" cy="140" r="28" fill="%23444"/><circle cx="650" cy="135" r="24" fill="%23444"/><circle cx="800" cy="145" r="32" fill="%23444"/><circle cx="950" cy="130" r="26" fill="%23444"/><rect x="150" y="200" width="200" height="120" fill="%23333" rx="10"/><rect x="400" y="190" width="180" height="110" fill="%23333" rx="10"/><rect x="620" y="195" width="200" height="115" fill="%23333" rx="10"/><rect x="860" y="185" width="190" height="125" fill="%23333" rx="10"/><rect x="200" y="350" width="250" height="100" fill="%23224466" rx="10"/><rect x="500" y="340" width="230" height="110" fill="%23224466" rx="10"/><rect x="780" y="345" width="210" height="105" fill="%23224466" rx="10"/><rect x="220" y="280" width="50" height="40" fill="%23ff6b35" rx="5"/><rect x="300" y="275" width="45" height="45" fill="%23ff6b35" rx="5"/><rect x="380" y="285" width="40" height="35" fill="%23ff6b35" rx="5"/><rect x="460" y="280" width="45" height="40" fill="%23ff6b35" rx="5"/><rect x="540" y="275" width="50" height="45" fill="%23ff6b35" rx="5"/><rect x="620" y="285" width="40" height="35" fill="%23ff6b35" rx="5"/><rect x="700" y="280" width="45" height="40" fill="%23ff6b35" rx="5"/><rect x="780" y="275" width="50" height="45" fill="%23ff6b35" rx="5"/><rect x="860" y="285" width="40" height="35" fill="%23ff6b35" rx="5"/><rect x="940" y="280" width="45" height="40" fill="%23ff6b35" rx="5"/><rect x="200" y="320" width="250" height="30" fill="%23ff6b35" rx="15"/><rect x="500" y="320" width="230" height="30" fill="%23ff6b35" rx="15"/><rect x="780" y="320" width="210" height="30" fill="%23ff6b35" rx="15"/><rect x="200" y="360" width="250" height="30" fill="%23ff6b35" rx="15"/><rect x="500" y="360" width="230" height="30" fill="%23ff6b35" rx="15"/><rect x="780" y="360" width="210" height="30" fill="%23ff6b35" rx="15"/><rect x="200" y="400" width="250" height="30" fill="%23ff6b35" rx="15"/><rect x="500" y="400" width="230" height="30" fill="%23ff6b35" rx="15"/><rect x="780" y="400" width="210" height="30" fill="%23ff6b35" rx="15"/><rect x="200" y="440" width="250" height="30" fill="%23ff6b35" rx="15"/><rect x="500" y="440" width="230" height="30" fill="%23ff6b35" rx="15"/><rect x="780" y="440" width="210" height="30" fill="%23ff6b35" rx="15"/></svg>');
    }
}

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

/* Enhanced Hero Section Effects */
.company-logo:hover {
    animation: float 2s ease-in-out infinite;
}

.hero-subtitle:hover {
    text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.4);
    transition: text-shadow 0.3s ease;
}

/* Subtle parallax effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

/* Enhanced text effects */
.company-logo {
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Improved contrast for better readability */
.hero-section {
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}