/* CeramouleTech Website Complete Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.4;
    color: #2c2c2c;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Using logo colors */
header {
    background-color: #2c2c2c;
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-main {
    padding: 15px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    flex-direction: row;
}

/* Logo styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-direction: row;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-text .cera-tech {
    color: #ff8800;
}

.logo-text .moule {
    color: white;
}

/* Desktop Navigation */
.nav-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.nav-section nav {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
    white-space: nowrap;
}

nav a:hover {
    color: #ff8800;
}

/* Active nav link styling */
nav a.active {
    color: #ff8800;
    font-weight: 600;
}

/* Header controls (language + mobile toggle) */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background-color: #ff8800;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    direction: ltr;
    text-align: left;
    min-width: 70px;
    justify-content: center;
    transition: background-color 0.3s;
}

.language-btn:hover {
    background-color: #e67300;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 8px;
    border: 1px solid #ddd;
}

.dropdown-content a {
    color: #2c2c2c;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    direction: ltr;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #ff8800;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ff8800;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: color 0.3s;
}

.mobile-toggle:hover {
    color: #e67300;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,136,0,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,136,0,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 400px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h1 .cera-tech {
    color: #ff8800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.5;
    color: #e0e0e0;
}

/* Carousel Styles */
.hero-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,136,0,0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #ff8800;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #ff8800;
    transform: scale(1.2);
}

/* Section styles */
.section {
    padding: 80px 0;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
}

/* Specialists section */
.specialists {
    text-align: center;
}

.experience-box {
    background-color: #ff8800;
    color: white;
    padding: 30px;
    margin: 40px auto;
    max-width: 400px;
    position: relative;
}

.experience-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background-color: #2c2c2c;
    z-index: -1;
}

.years-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.years-subtext {
    font-size: 16px;
    opacity: 0.9;
}

.cta-button {
    background-color: #ff8800;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff8800;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: transparent;
    color: #ff8800;
}

/* Global service section */
.global-service {
    text-align: center;
    background-color: #f8f9fa;
}

.service-tags {
    font-size: 24px;
    color: #ff8800;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* Quote section */
.quote-section {
    background-color: #2c2c2c;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,136,0,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,136,0,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,136,0,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,136,0,0.05) 75%);
    background-size: 30px 30px;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote {
    font-size: 24px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
    font-weight: 300;
}

/* Design services section */
.design-services {
    text-align: center;
}

.service-highlight {
    background-color: #ff8800;
    color: white;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    position: relative;
}

.service-highlight h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-tags-list {
    color: #ff8800;
    font-size: 16px;
    margin: 30px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Products section */
.products-section {
    background-color: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-item {
    background-color: white;
    padding: 40px;
    border-left: 5px solid #ff8800;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-number {
    background-color: #2c2c2c;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.product-title {
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: #666666;
    line-height: 1.6;
    font-size: 16px;
}

/* Final CTA section */
.final-cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.cta-button-large {
    background-color: #ff8800;
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #ff8800;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-large:hover {
    background-color: transparent;
    color: #ff8800;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ff8800;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p, .footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: #ff8800;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 30px;
    text-align: center;
    color: #999999;
}

/* CONTACT PAGE STYLES */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,136,0,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,136,0,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero .hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #ff8800;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.contact-card p {
    margin-bottom: 8px;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-card a {
    color: #ff8800;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    word-break: break-all;
    line-height: 1.4;
}

.contact-card a:hover {
    color: #e67300;
}

.contact-note {
    font-size: 14px !important;
    color: #999 !important;
    font-style: italic;
    margin-top: 10px;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: white;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8800;
    box-shadow: 0 0 0 3px rgba(255,136,0,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Checkbox styling */
.checkbox-group {
    margin-top: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    gap: 12px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #ff8800;
    border-color: #ff8800;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Error messages */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

/* Submit button */
.submit-btn {
    background: linear-gradient(135deg, #ff8800 0%, #e67300 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,136,0,0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form messages */
.form-message {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.form-message.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.form-message.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.message-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    margin-bottom: 10px;
}

.form-message h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.form-message p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Map Container */
.map-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 700;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.location-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff8800;
}

.location-details h3 {
    color: #2c2c2c;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.feature-icon {
    font-size: 20px;
    width: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #ff8800;
}

.faq-item h3 {
    color: #2c2c2c;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-section {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2c2c2c;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        z-index: 999;
        border-top: 2px solid #ff8800;
    }

    .nav-section.active {
        display: block;
    }

    .nav-section nav {
        padding: 0;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 20px 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #444;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        text-align: center;
    }

    /* Show mobile toggle */
    .mobile-toggle {
        display: block;
    }

    /* Mobile language dropdown positioning */
    .language-dropdown .dropdown-content {
        right: 0;
        left: auto;
        min-width: 140px;
    }

    /* Adjust header layout */
    .header-main {
        padding: 12px 0;
    }

    .header-content {
        gap: 15px;
    }

    .logo-img {
        height: 45px;
        width: 45px;
    }

    .logo-text {
        font-size: 20px;
    }

    .language-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 60px;
    }

    /* Hero section adjustments */
    .hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        min-height: auto;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        max-width: 100%;
    }

    .hero-carousel {
        width: 100%;
    }

    .carousel-container {
        max-width: 100%;
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .service-tags {
        font-size: 18px;
        letter-spacing: 1px;
    }

    /* Contact page mobile adjustments */
    .contact-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero .hero-subtitle {
        font-size: 18px;
    }

    .contact-info-section,
    .contact-main-section,
    .faq-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container h2,
    .map-container h2 {
        font-size: 28px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .location-features {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* SMALL MOBILE DEVICES */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-main {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .logo-text {
        font-size: 18px;
    }

    .language-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 55px;
    }

    .mobile-toggle {
        font-size: 20px;
        padding: 6px;
    }

    .dropdown-content {
        min-width: 130px;
    }

    .hero {
        margin-top: 60px;
        padding: 80px 0 50px;
    }

    .carousel-container {
        height: 250px;
    }

    .experience-box,
    .service-highlight {
        margin: 30px 15px;
        padding: 25px;
    }

    .product-item {
        padding: 25px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    /* Contact page small mobile */
    .contact-hero {
        padding: 80px 0 50px;
        margin-top: 60px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-info-section,
    .contact-main-section,
    .faq-section {
        padding: 50px 0;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-form-container h2,
    .map-container h2 {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 15px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .location-details {
        padding: 20px;
    }

    .faq-item {
        padding: 20px;
    }
}

/* RTL SUPPORT FOR ARABIC */
[dir="rtl"] {
    text-align: right;
}

/* RTL Header Layout */
[dir="rtl"] .header-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo-section {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo-link {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-controls {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-section nav ul {
    flex-direction: row-reverse;
    justify-content: center;
}

/* RTL Language Dropdown */
[dir="rtl"] .language-dropdown {
    direction: ltr;
}

[dir="rtl"] .language-btn {
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .dropdown-content {
    left: 0;
    right: auto;
}

[dir="rtl"] .dropdown-content a {
    text-align: left;
    direction: ltr;
}

/* RTL Content Areas */
[dir="rtl"] .hero-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

[dir="rtl"] .section-subtitle {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

[dir="rtl"] .specialists,
[dir="rtl"] .global-service,
[dir="rtl"] .design-services,
[dir="rtl"] .final-cta,
[dir="rtl"] .quote-section {
    text-align: center;
}

[dir="rtl"] .specialists .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

[dir="rtl"] .product-item {
    border-left: none;
    border-right: 5px solid #ff8800;
    text-align: right;
}

[dir="rtl"] .footer-section {
    text-align: right;
}

[dir="rtl"] .footer-bottom {
    text-align: center;
}

/* RTL Carousel */
[dir="rtl"] .carousel-btn.prev {
    left: auto;
    right: 15px;
}

[dir="rtl"] .carousel-btn.next {
    right: auto;
    left: 15px;
}

/* RTL Contact Page */
[dir="rtl"] .contact-card {
    text-align: right;
}

[dir="rtl"] .checkbox-label {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature {
    flex-direction: row-reverse;
}

[dir="rtl"] .location-details {
    border-left: none;
    border-right: 5px solid #ff8800;
}

[dir="rtl"] .faq-item {
    border-left: none;
    border-right: 4px solid #ff8800;
    text-align: right;
}

[dir="rtl"] .form-message {
    text-align: center;
}

/* RTL MOBILE RESPONSIVE */
@media (max-width: 768px) {
    [dir="rtl"] .hero-content {
        flex-direction: column;
    }

    [dir="rtl"] .hero-text {
        text-align: center;
    }

    [dir="rtl"] .nav-section nav ul {
        flex-direction: column;
        text-align: center;
    }

    [dir="rtl"] .nav-section nav ul li {
        text-align: center;
    }

    [dir="rtl"] .nav-section nav ul li a {
        text-align: center;
    }

    [dir="rtl"] .carousel-btn.prev {
        left: auto;
        right: 10px;
    }

    [dir="rtl"] .carousel-btn.next {
        right: auto;
        left: 10px;
    }

    /* CRITICAL: Fix Arabic mobile dropdown positioning */
    [dir="rtl"] .language-dropdown .dropdown-content {
        left: 0;
        right: auto;
        transform: none;
    }

    /* Ensure proper RTL header alignment on mobile */
    [dir="rtl"] .header-controls {
        flex-direction: row-reverse;
    }
}