* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #f97316;
    --primary-orange-hover: #ea580c;
    --dark-text: #0e3264;
    --light-text: #414754;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.topbar {
    background: var(--primary-orange);
    color: var(--light-bg);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 2rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-bg);
}

.topbar-right {
    display: flex;
    gap: 1.5rem;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-bg);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.topbar-link:hover {
    text-decoration: underline;
}

.topbar-icon {
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0 .245rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-container {
    padding: 0.45rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.325rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text{
    font-family: 'Dosis', sans-serif;
     font-weight: 700;
     letter-spacing: 0.5px;
     font-size:1.65rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}
.logo-img{
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 5px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-orange);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-cta-btn:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
    padding: 0.5rem;
}

.nav-cta-btn.mobile-cta-btn {
    display: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}
.nav-right{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Dosis', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.lang-current {
    min-width: 24px;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
}

.lang-option.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    font-weight: 600;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2001;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: white;
    z-index: 2002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer-header .logo {
    font-size: 1.25rem;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-drawer-close:hover {
    background: var(--light-bg);
    color: var(--dark-text);
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    color: var(--dark-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
}

.mobile-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.mobile-drawer-contact {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.8;
}

.mobile-drawer-contact p {
    margin-bottom: 1rem;
}

.mobile-drawer-contact strong {
    color: var(--dark-text);
}

/* Mobile Language Selector */
.mobile-lang-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.mobile-lang-section h4 {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mobile-lang-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-text);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-lang-option:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.mobile-lang-option.active {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
}

/* Page Sections */
.page-section {
    display: none;
    min-height: 100vh;
    padding-top: 128px;
    animation: fadeIn 0.5s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text h1 span {
    color: var(--primary-orange);
}

.hero-text .subtitle {
    font-size: 1.325rem;
    color: var(--dark-text);
    margin-bottom: 1.45rem;
    font-weight: 400;
}

.hero-text .description {
    font-size: 1.134rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.8;
    padding-right: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.hero-image {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-orange);
    border: 2px solid var(--border);
}

.stats-bar {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
}

.stat-number {
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 1.124rem;
    color: var(--light-text);
}

/* Section Styles */
.section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    background: var(--light-bg);
    border-radius: 20px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-orange);
    border: 2px solid var(--border);
    max-width: 500px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.credential-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.credential-text h4 {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.credential-text p {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-orange-hover);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.success {
    background: #10b981;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: #d3d8e0;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-text);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: #10b981;
}

/* Service Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-drawer {
    position: fixed;
    top: 0;
    right: -600px;
    width: 100%;
    max-width: 560px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.service-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.drawer-header h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: var(--light-bg);
    color: var(--dark-text);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.drawer-icon {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.drawer-icon img {
    width: 48px;
    height: 48px;
}

.drawer-description {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.drawer-features {
    margin-bottom: 2rem;
}

.drawer-features h4 {
    font-size: 1.125rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.drawer-features ul {
    list-style: none;
}

.drawer-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
    font-size: 0.95rem;
}

.drawer-features li::before {
    content: '✓';
    color: var(--primary-orange);
    font-weight: bold;
    flex-shrink: 0;
}

.drawer-cta {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1.1rem;
}

/* Hero Enhancements */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid white;
    margin-left: -10px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.hero-trust p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.hero-trust strong {
    color: var(--dark-text);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--border);
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    font-size: 2rem;
}

.hero-image-badge strong {
    display: block;
    color: var(--dark-text);
    font-size: 1.1875rem;
    line-height: 1;
}

.hero-image-badge span {
    color: var(--light-text);
    font-size: 1rem;
}

/* Home Services Section */
.home-services {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.section-tag {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.home-services .section-header {
    margin-bottom: 3rem;
}

.home-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.home-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.home-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.home-service-card:hover::before {
    transform: scaleX(1);
}

.home-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.home-service-icon img {
    width: 32px;
    height: 32px;
}

.home-service-card h3 {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.home-service-card p {
    font-size: 0.875rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.home-service-arrow {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.home-service-card:hover .home-service-arrow {
    transform: translateX(5px);
}

.home-services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Section */
.why-choose {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.85rem;
    line-height: 1.24;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.why-choose-text h2 span {
    display: block;
    color: var(--primary-orange-hover);
}
.why-choose-text > p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-feature h4 {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.why-feature p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-orange);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem 2rem;
    background: var(--light-bg);
}

.gallery-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 50%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.gallery-prev {
    left: -20px;
}

.gallery-next {
    right: -20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gallery-dots .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dots .carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-slide {
        min-width: 100%;
        padding: 0 5px;
    }
    
    .gallery-slide img {
        max-height: 300px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn.phone {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

@media (max-width: 768px) {
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-text);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sticky Footer */
@media (max-width: 768px) {
    .floating-actions {
        position: fixed;
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        background: white;
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .floating-btn .tooltip {
        display: none;
    }
    
    /* Add padding to body to prevent content being hidden behind sticky footer */
    body {
        padding-bottom: 80px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel-container {
    position: relative;
    padding: 0 3rem;
}

.reviews-carousel-wrapper {
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.reviews-carousel .review-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-author strong {
    display: block;
    color: var(--dark-text);
    font-size: 1rem;
}

.review-author span {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-orange);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}

/* Quick CTA Section */
.quick-cta {
    background: var(--dark-text);
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.quick-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quick-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-cta > p {
    color: #9ca3af;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.quick-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 968px) {
    .topbar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .page-section {
        padding-top: 80px;
    }

    .hero {
        padding-top: 50px;
    }
    .home-services {
        padding: 4rem 1rem;
        background: var(--light-bg);
    }
    .home-services-grid{
        gap: .5rem;
    }

    .nav-cta-btn:not(.mobile-cta-btn) {
        display: none;
    }

    .nav-cta-btn.mobile-cta-btn {
        display: flex;
    }

    .language-selector {
        display: none;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .stats-bar {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 968px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-text h2 {
        font-size: 2rem;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }

    .quick-cta h2 {
        font-size: 2rem;
    }

    .hero-image-badge {
        left: 20px;
    }

    .reviews-carousel-container {
        padding: 0 2rem;
    }

    .reviews-carousel .review-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .logo-img{
        width: 40px;
        height: 40px;
        object-fit: cover;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .nav-container,
    .navbar.scrolled .nav-container{
        padding: 0 1rem;
    }
    .navbar.scrolled .nav-container{
        padding: 1rem;
    }

    .drawer-header{
        padding: 1rem;
    }
    .drawer-header h3{
        line-height: 1.4;
    }
    .about-image{
        max-width: 100%;
    }
    .services-grid{
        gap: 1rem;
    }
    .section{
        padding: 3rem 1rem;
    }
    .contact-form{
        padding: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .credentials {
        grid-template-columns: 1fr;
    }

    .stats-bar, .hero-badge strong {
        display: none;
    }

    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-carousel-container {
        padding: 0 1rem;
    }

    .reviews-carousel .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .experience-badge {
        padding: 1rem;
    }

    .exp-number {
        font-size: 1.75rem;
    }
}