* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #d97706;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --white: #ffffff;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

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

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 0;
    font-size: 11px;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    padding: 2px 0;
    border-bottom: none !important;
}

.top-bar a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
}

.top-bar i {
    font-size: 11px;
}

.top-phone {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
}

.separator {
    color: rgba(255,255,255,0.3);
    margin: 0 5px;
}

.social-link {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    border-bottom: 2px solid var(--bg-light);
}

.navbar {
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.logo img {
    height: 65px;
    width: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: fadePulse 2.5s infinite ease-in-out;
}

.logo-tagline .word-1 { color: var(--primary-color); }
.logo-tagline .word-2 { color: var(--accent-color); }
.logo-tagline .word-3 { color: var(--secondary-color); }

@keyframes fadePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0 auto;
}

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

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

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

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

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-color), #b45309);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-call:hover::before {
    left: 100%;
}

.btn-call:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    margin-top: 105px;
    position: relative;
    height: 650px;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.slide-content h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.btn-secondary-hero {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 20;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 20px;
    border-radius: 4px;
}

/* Features */
.features {
    padding: 50px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--bg-light);
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--bg-gray);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.feature-card h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 13px;
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 70px 0;
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 11px;
    color: var(--white);
    font-weight: 500;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.about-list i {
    color: var(--accent-color);
    font-size: 14px;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Why Us */
.why-us {
    padding: 70px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--bg-gray);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.why-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services */
.services {
    padding: 70px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--bg-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-service {
    display: inline-block;
    padding: 7px 14px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s;
}

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

/* References */
.references {
    padding: 70px 0;
    background: var(--white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.reference-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.reference-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.reference-card:hover .reference-image img {
    transform: scale(1.1);
}

.reference-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.reference-card:hover .reference-overlay {
    transform: translateY(0);
}

.reference-overlay h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.reference-overlay p {
    font-size: 11px;
    opacity: 0.9;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-box i {
    font-size: 32px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 12px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-cta-primary:hover {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact */
.contact {
    padding: 70px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s;
}

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

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
    .logo-tagline {
        font-size: 9px;
    }
    .top-bar {
        font-size: 10px;
        padding: 4px 0;
    }
    
    .top-bar-content {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .top-bar-left {
        display: flex;
        flex-direction: row;
        gap: 0;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .top-bar-left a:last-child {
        display: none;
    }
    
    .top-bar-right {
        display: flex !important;
        flex-direction: row !important;
        gap: 6px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .top-bar-right > span:first-child,
    .separator {
        display: none;
    }
    
    .top-bar a {
        font-size: 10px;
        white-space: nowrap;
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .social-link {
        width: 24px;
        height: 24px;
        display: inline-flex !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .top-bar-right a {
        display: inline-flex !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .top-bar-left a {
        text-decoration: none !important;
        border-bottom: none !important;
    }
    
    .header {
        top: 48px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .hero-slider {
        margin-top: 100px;
        height: 400px;
    }
    
    .nav-wrapper {
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-toggle {
        order: 2;
        margin-left: auto;
    }
    
    .btn-call {
        order: 3;
        padding: 8px 16px;
        font-size: 11px;
        margin-left: 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: 0.3s;
        gap: 15px;
        justify-content: flex-start;
        margin: 0;
    }

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

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .btn-call {
        font-size: 11px;
        padding: 7px 12px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 13px;
    }
    
    /* Mobilde 2'li grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 18px 10px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .feature-card h3 {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .feature-card p {
        font-size: 9px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .badge-content h3 {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 24px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .stat-item h3 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 26px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }

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

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 10px;
    }
    
    .top-bar-left, .top-bar-right {
        flex-direction: column;
        gap: 5px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo i {
        font-size: 20px;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary-hero {
        padding: 9px 18px;
        font-size: 11px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 12px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}


/* Call Button */
.call-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #007bff;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none !important;
    padding: 0 !important;
    overflow: hidden;
}

.call-btn i {
    margin: 0 !important;
    padding: 0 !important;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5);
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 80px;
        right: 20px;
    }
}
