:root {
    --primary: #FF6B35;
    --secondary: #2C3E50;
    --dark-bg: #1a2332;
    --light: #F8F9FA;
    --text-dark: #2D3748;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary:hover {
    background: #e55a28;
    transform: translateY(-2px);
}

.text-primary{
    color: var(--primary) !important;
    font-size: 10px;
}

.text-primary:hover {
    transition: all 0.3s;
    background: transparent;
    text-decoration: underline;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    background: transparent;
    font-size: 14px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #ff6b35  100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1566933293069-b55c7f326dd4?w=1600&q=80') center/cover;
    opacity: 0.08;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-slogan {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.hero-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.hero-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 40px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light);
}

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

.section-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #6c757d;
    font-size: 1rem;
}

.service-box {
    background: white;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.service-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-box p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-box .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
}

/* Feature Section */
.feature-section {
    background: var(--primary);
    padding: 80px 0;
    color: white;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.feature-section .lead {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: var(--dark-bg);
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-overlay i {
    color: var(--primary);
    font-size: 1.8rem;
    margin-left: 4px;
}

.video-thumbnail:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.value-box {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s;
}

.value-box:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-box h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.value-box p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

footer h5 {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-slogan {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Video Modal - YouTube Shorts Style */
#videoModal .modal-dialog {
    max-width: 500px;
    height: 90vh;
    margin: 1.75rem auto;
}

#videoModal .modal-content {
    background: #000;
    height: 100%;
    border-radius: 0;
}

#videoModal .modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    border: none;
    padding: 15px;
}

#videoModal .modal-body {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#videoModal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Quote Modal */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), #e55a28);
    color: white;
    border-radius: 12px 12px 0 0;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

/* Service Modal */
.service-modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

#serviceModal .modal-body h4 {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

#serviceModal .modal-body h4:first-of-type {
    margin-top: 0;
}

#serviceModal .modal-body .lead {
    background: var(--light);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin-bottom: 1.5rem;
}

#serviceModal .modal-body ul li {
    margin-bottom: 0.8rem;
}

#serviceModal .modal-body ul li strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .stat-number, .stat-suffix {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    #videoModal .modal-dialog {
        max-width: 95vw;
        height: 80vh;
    }
}