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

:root {
    --primary-color: #1F1F1F;
    --secondary-color: #1F1F1F;
    --accent-color: #C4161C;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

/* Language Switcher */
.lang-switcher {
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 150px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

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

.nav-link.active {
    color: var(--accent-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-with-bg {
    background-image: url('steel-warehouse.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.4;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.hero-with-bg .hero-overlay {
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-with-bg .hero-title {
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 
                 0 0 30px rgba(0, 0, 0, 0.7),
                 0 0 50px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-with-bg .hero-subtitle {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 
                 0 0 25px rgba(0, 0, 0, 0.7);
    opacity: 1;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-with-bg .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

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

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #a01218;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 22, 28, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.products {
    padding-top: 220px !important;
}

#about {
    padding-top: 140px;
}

#contact {
    padding-top: 140px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Products Section */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.products-left {
    display: flex;
    flex-direction: column;
}

.products-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flip-card-large {
    height: calc(160px + 160px + 160px + 4rem); /* 3 cards + 2 gaps */
    min-height: calc(160px + 160px + 160px + 4rem);
}

/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 160px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    top: 0;
    left: 0;
}

.flip-card-front h3,
.flip-card-back h4,
.steel-subsections,
.flip-card-back ul {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    color: var(--white);
    background-size: 100% auto; /* Zoomed out slightly from "cover" */
    background-position: center;
    background-repeat: no-repeat;
    transform: rotateY(0deg) translateZ(1px);
    transition: background-size 0.4s ease; /* Smooth zoom effect */
}

.flip-card:hover .flip-card-front {
    background-size: 120% auto; /* Subtle zoom in on hover before flip */
}

.flip-card-large .flip-card-front {
    background-size: auto 100%; /* Adjust for the tall steel card */
}

.flip-card-large:hover .flip-card-front {
    background-size: auto 110%;
}

.flip-card-steel .flip-card-front {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('steel.png');
}

.flip-card-powertools .flip-card-front {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('powertools.png');
}

.flip-card-hardware .flip-card-front {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hardware.png');
}

.flip-card-welding .flip-card-front {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('welding.png');
}

.flip-card-back {
    background: var(--white);
    color: var(--primary-color);
    transform: rotateY(180deg) translateZ(1px);
}

.flip-card-front h3,
.flip-card-back h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.steel-subsections {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.steel-subsections p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    margin: 0;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}


.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.flip-card-two-column .flip-card-back ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.flip-card-two-column .flip-card-back li {
    border-bottom: 1px solid var(--bg-light);
}

.flip-card-two-column .flip-card-back li:nth-child(odd):last-child,
.flip-card-two-column .flip-card-back li:nth-child(even):last-child {
    border-bottom: 1px solid var(--bg-light);
}

.flip-card-back li {
    padding: 0.4rem 0;
    font-size: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--bg-light);
    font-weight: 500;
}

.flip-card-back li:last-child {
    border-bottom: none;
}

/* Legacy product-card styles for compatibility */
.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.catalog-section {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.catalog-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.catalog-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.catalog-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}

/* Objectives Section */
.objectives-section {
    margin-top: 3rem;
}

.objectives-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.objective-item p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Vision and Mission Container */
.vision-mission-container {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Vision Statement */
.vision-statement {
    padding: 3rem;
    background: var(--bg-light);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.vision-statement-title {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.vision-statement-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Mission Statement */
.mission-statement {
    padding: 3rem;
    background: var(--accent-color);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-statement-title {
    font-size: 2rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.mission-objectives {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mission-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--accent-color);
    border-radius: 4px;
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(0deg);
}

.mission-item p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Vision 2030 Commitment */
.vision-2030-image {
    margin-top: 4rem;
    text-align: center;
}

.vision-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366 !important; /* WhatsApp Green */
    font-weight: 600;
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.whatsapp-link:hover {
    color: #128C7E !important; /* Darker WhatsApp Green */
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        left: 20px;
    }
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

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

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

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .products-left,
    .products-right {
        gap: 2rem;
    }

    .flip-card-large {
        min-height: 220px;
    }

    .flip-card {
        height: 140px;
    }

    .flip-card-two-column .flip-card-back ul {
        grid-template-columns: 1fr;
    }

    .flip-card-front h3 {
        font-size: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .flip-card-back li {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .objectives-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .objectives-list {
        grid-template-columns: 1fr;
    }

    .objective-item {
        padding: 1.2rem;
    }

    .objective-item p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo-img {
        height: 75px;
    }

    .footer-logo {
        height: 35px;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        margin-top: 3rem;
        gap: 2rem;
    }

    .vision-statement,
    .mission-statement {
        padding: 2rem 1.5rem;
    }

    .vision-statement-title,
    .mission-statement-title {
        font-size: 1.5rem;
    }

    .vision-statement-text {
        font-size: 1rem;
    }

    .mission-item p {
        font-size: 1rem;
    }

    .vision-2030-image {
        margin-top: 3rem;
    }

    .vision-img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .catalog-buttons {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
    }
}

/* RTL Support */
[dir="rtl"] {
    font-family: 'Cairo', 'Montserrat', sans-serif;
}

[dir="rtl"] h1, 
[dir="rtl"] h2, 
[dir="rtl"] h3, 
[dir="rtl"] h4, 
[dir="rtl"] h5, 
[dir="rtl"] h6 {
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .mission-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .mission-icon {
    transform: rotate(180deg);
}

[dir="rtl"] .mission-objectives {
    text-align: right;
}

[dir="rtl"] .objective-item {
    border-left: none;
    border-right: 4px solid var(--accent-color);
}

[dir="rtl"] .contact-wrapper {
    direction: rtl;
}

[dir="rtl"] .info-item {
    text-align: right;
}

[dir="rtl"] .contact-form {
    text-align: right;
}

[dir="rtl"] .whatsapp-float {
    left: auto;
    right: 30px;
}

[dir="rtl"] .flip-card-back ul {
    text-align: right;
}

[dir="rtl"] .footer-section {
    text-align: right;
}

[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .lang-btn {
    font-family: 'Cairo', sans-serif;
}

@media (max-width: 768px) {
    [dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
        flex-direction: column;
    }

    [dir="rtl"] .nav-menu.active {
        right: 0;
        left: auto;
    }
    
    [dir="rtl"] .whatsapp-float {
        left: auto;
        right: 20px;
    }
}
