/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a5276;
    --secondary: #2e86c1;
    --accent: #f39c12;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 1002;
}

.lang-switch {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #007bff;
    border-radius: 25px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: white;
    transform: scale(1.05);
}

.lang-option {
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
}

.lang-option.active {
    background: #007bff;
    color: white;
}

.lang-separator {
    color: #007bff;
    font-weight: bold;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.logo-text span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover:after {
    width: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.social-icons i {
    font-size: 16px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('background.jpg') 
                no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
    margin-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 650px;
    padding: 0 20px;
    margin-top: -80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--white);
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn.primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.btn.primary:hover {
    background-color: #144260;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4);
}

.btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%231a5276" opacity="0.02"><path d="M500 50Q400 0 300 50T100 50v50h800V50Q600 100 500 50z"/></svg>') repeat-x;
    background-size: 1000px 100px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-header h6 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 82, 118, 0.1);
    border-radius: 25px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Services Category */
.services-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 82, 118, 0.1) 100%);
    transition: background 0.4s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 82, 118, 0.3) 100%);
}

.service-content {
    padding: 30px 25px;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(26, 82, 118, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent), #e67e22);
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-content h3 {
    font-size: 22px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    font-size: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 82, 118, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-link:hover::before {
    left: 100%;
}

.service-link:hover {
    background: var(--primary);
    color: var(--white);
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose {
    background-color: var(--white);
    padding: 80px 0;
}

.why-choose h2 {
    font-size: 36px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent), #e67e22);
}

.feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.learn-more:hover {
    color: var(--accent);
    gap: 8px;
}

.learn-more:hover::after {
    width: 100%;
}

.learn-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%231a5276" opacity="0.03"><path d="M500 50Q400 0 300 50T100 50v50h800V50Q600 100 500 50z"/></svg>') repeat-x;
    background-size: 1000px 100px;
}

.testimonials h2 {
    font-size: 36px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(26, 82, 118, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: var(--accent);
    transform: scale(1.1);
    opacity: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent), #e67e22);
}

.client-avatar i {
    font-size: 20px;
    color: var(--white);
}

.client-details h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-details span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: 
        linear-gradient(135deg, rgba(26, 82, 118, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%),
        url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') 
        center center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><path d="M500 50Q600 0 700 50T900 50v50H100V50Q400 100 500 50z"/></svg>') repeat-x;
    background-size: 1000px 100px;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* WhatsApp QR */
.whatsapp-qr {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.qr-container img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 2px solid #25D366;
}

.qr-container p {
    font-size: 12px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Quick Form */
.quick-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.quick-form h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(26, 82, 118, 0.1);
}

.contact-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 5px;
}

.contact-form button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Floating Action Button */
.floating-action {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-main:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

.fab-actions {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-action.active .fab-actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.fab-icon:hover {
    transform: scale(1.1);
}

.call-icon {
    background: #28a745;
}

.whatsapp-icon {
    background: #25D366;
}

/* Footer Styles */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #b0b7c3;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b7c3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b0b7c3;
    font-size: 14px;
    line-height: 1.4;
}

.contact-info-footer i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 2px;
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom-content p {
    color: #b0b7c3;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #b0b7c3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom-links a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover:after {
    width: 100%;
}

/* RTL Support */
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="rtl"] .language-toggle {
    right: 20px;
    left: auto;
}

body[dir="rtl"] .floating-action {
    left: 20px;
    right: auto;
}

body[dir="rtl"] .fab-actions {
    left: 0;
    right: auto;
}

body[dir="rtl"] .nav-container {
    text-align: right;
}

body[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

body[dir="rtl"] .features-grid {
    direction: rtl;
}

body[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

body[dir="rtl"] .hero-content {
    text-align: right;
}

body[dir="rtl"] .section-header {
    text-align: right;
}

body[dir="rtl"] .service-content {
    text-align: right;
}

body[dir="rtl"] .feature-content {
    text-align: right;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        margin-top: 30px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-section:last-child {
        grid-column: auto;
        margin-top: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .contact-info {
        order: 2;
    }
    
    .whatsapp-qr {
        order: 1;
    }
    
    .quick-form {
        order: 3;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 100px 0 20px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .social-icons {
        display: none;
    }
    
    /* Hamburger Animation */
    .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 Section Mobile */
    .hero {
        height: calc(100vh - 80px);
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Logo adjustment for mobile */
    .logo-img {
        height: 40px;
    }
    
    .logo-text h2 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
    
    /* Services Mobile */
    .services {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: -45px auto 15px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    .services-category {
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    /* Why Choose Us Mobile */
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .client-info {
        padding-top: 15px;
    }
    
    .client-avatar {
        width: 45px;
        height: 45px;
    }
    
    .client-avatar i {
        font-size: 18px;
    }
    
    .client-details h4 {
        font-size: 16px;
    }
    
    .client-details span {
        font-size: 13px;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 16px;
        gap: 10px;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 30px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .contact-info {
        order: 2;
    }
    
    .whatsapp-qr {
        order: 1;
    }
    
    .quick-form {
        order: 3;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    /* Floating Button Mobile */
    .floating-action {
        right: 15px;
        bottom: 15px;
    }
    
    .fab-main {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .fab-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Language Toggle Mobile */
    .language-toggle {
        bottom: 80px;
        left: 15px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        gap: 12px;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 16px;
    }
    
    .logo-text span {
        font-size: 11px;
    }
    
    .hero {
        height: calc(100vh - 80px);
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Services Small Mobile */
    .services {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header h6 {
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin: -40px auto 12px;
    }
    
    .service-icon i {
        font-size: 22px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .service-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Why Choose Us Small Mobile */
    .why-choose {
        padding: 50px 0;
    }
    
    .why-choose h2 {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    /* Testimonials Small Mobile */
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .testimonials-container {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .quote-icon {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .client-info {
        gap: 12px;
    }
    
    .client-avatar {
        width: 40px;
        height: 40px;
    }
    
    .client-avatar i {
        font-size: 16px;
    }
    
    /* CTA Small Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Contact Small Mobile */
    .contact {
        padding: 25px 0;
    }
    
    .contact-content {
        gap: 15px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .whatsapp-qr,
    .quick-form {
        padding: 15px;
    }
    
    .qr-container img {
        width: 80px;
        height: 80px;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .footer-bottom-links {
        gap: 15px;
        flex-direction: column;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-section a,
    .contact-info-footer p,
    .footer-bottom-content p,
    .footer-bottom-links a {
        font-size: 13px;
    }
}

/* If logo image is not available, show placeholder */
.logo-img[src=""],
.logo-img:not([src]) {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    content: "LOGO";
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden;
}

/* Ripple animation for buttons */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.cta-button {
    position: relative;
    overflow: hidden;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to elements */
.service-card,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}