@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --orange: #FF6600;
    --orange-light: #FF8533;
    --orange-dark: #CC5200;
    --dark: #0a0a0a;
    --dark-grey: #1a1a1a;
    --medium-grey: #2d2d2d;
    --light-grey: #f8f9fa;
    --text-grey: #6c757d;
    --gradient: linear-gradient(135deg, #FF6600 0%, #FF8533 50%, #FFa366 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(255,102,0,0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: var(--dark);
    line-height: 1.6;
    padding-bottom: 80px;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    body { padding-bottom: 0; }
}

.text-orange { color: var(--orange) !important; }
.bg-orange { background-color: var(--orange) !important; }

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-glow {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(255,102,0,0.5);
    color: white;
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-modern:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: white;
    color: var(--orange);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--light-grey);
    color: var(--orange-dark);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-orange {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

header.sticky-top {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
    background: rgba(255,102,0,0.1);
}

.top-phone-bar {
    background: var(--gradient) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-section {
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(26,26,26,0.88) 100%), 
                url('https://images.unsplash.com/photo-1562866643-d2f66f6cb795?w=1920') center/cover fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,102,0,0.15);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,102,0,0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge {
    display: inline-block;
    background: rgba(255,102,0,0.1);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 60px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-icon-modern {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.service-icon-modern i {
    font-size: 20px;
    color: white;
}

.service-content {
    padding: 40px 25px 25px;
    text-align: center;
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.6;
}

.features-section {
    padding: 100px 0;
    background: white;
}

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

@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
    background: var(--light-grey);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: rgba(255,102,0,0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.5;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.cta-card {
    background: var(--gradient);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

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

footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

footer ul li {
    margin-bottom: 12px;
}

.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1050;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-action-bar .action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.mobile-action-bar .call-btn {
    background: var(--gradient);
    color: white;
}

.mobile-action-bar .whatsapp-btn {
    background: #25D366;
    color: white;
}

.mobile-action-bar .action-btn i {
    font-size: 22px;
    margin-bottom: 5px;
}

.page-header {
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(26,26,26,0.88) 100%),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    background: white;
}

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

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 15px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.service-card .service-icon i {
    font-size: 20px;
    color: white;
}

.contact-info-card {
    background: var(--dark-grey);
    color: white;
    border-radius: 20px;
    padding: 35px;
}

.contact-info-card i {
    color: var(--orange);
    font-size: 22px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.admin-sidebar {
    background: var(--dark-grey);
    min-height: 100vh;
    color: white;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.7);
    padding: 14px 20px;
    border-radius: 10px;
    margin: 4px 12px;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: var(--gradient);
    color: white;
}

.admin-card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.admin-stat-card {
    border-radius: 20px;
    padding: 28px;
    color: white;
}

.admin-stat-card.orange { background: var(--gradient); }
.admin-stat-card.dark { background: var(--dark-grey); }
.admin-stat-card.success { background: linear-gradient(135deg, #28a745, #34ce57); }
.admin-stat-card.info { background: linear-gradient(135deg, #17a2b8, #20c9e0); }

.demo-alert {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border: none;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.demo-alert i {
    color: #856404;
}

.quote-form {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 35px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow);
}

.why-us-icon i {
    font-size: 32px;
    color: white;
}
