:root {
    --primary: #ff4b36;
    --primary-dark: #e63a25;
    --primary-light: rgba(255, 75, 54, 0.1);
    --secondary: #1a1f36;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --gray-dark: #475569;
    --success: #22c55e;
    --accent: #ffd700;
    --white: #ffffff;
    --shadow-sm: 0 5px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem;
    min-height: 76px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 0;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Page Header Styles */
.page-header {
    margin-top: 76px;
    padding: 60px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    margin-bottom: 3rem;
    border-bottom: 4px solid var(--primary);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    opacity: 0.6;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    background-color: var(--secondary);
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(1px);
    max-width: 800px;
    margin: 0 auto;
}

.hero-features {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.hero-features .d-flex {
    padding: 12px;
    transition: all 0.3s ease;
}

.hero-features .d-flex:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.hero-features i {
    font-size: 1.2rem;
}

.hero-buttons {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 800px;
}

.hero-buttons .btn {
    flex: 1 1 calc(50% - 15px);
    min-width: 200px;
    max-width: calc(50% - 15px);
    margin: 0;
    padding: 12px 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .btn-primary {
    background-color: rgba(255, 75, 54, 0.85);
    border-color: transparent;
    backdrop-filter: blur(5px);
}

.hero-section .btn-outline-light {
    background-color: rgba(26, 31, 54, 0.5);
    backdrop-filter: blur(5px);
}

/* Card Styles */
.feature-card,
.service-card,
.testimonial-card,
.brand-card,
.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.brand-card:hover,
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Form Styles */
.form-control,
.form-select {
    border: 1px solid var(--gray-light);
    padding: 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary-light);
}

.form-label {
    color: var(--gray-dark);
    font-weight: 500;
}

/* Button Styles */
.btn {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding-top: 5rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar {
        min-height: 60px;
        padding: 0.75rem 1rem;
    }

    .navbar-collapse {
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-header {
        margin-top: 60px;
        padding: 40px 0;
    }

    .hero-bg {
        background-size: 130% auto;
        background-position: center 25%;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .hero-section .hero-buttons {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-section .btn {
        flex: 1 1 calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
        padding: 1rem;
        font-size: 1rem;
        margin: 0;
    }

    .hero-section .btn i {
        font-size: 1.2rem;
    }

    .hero-content {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-buttons {
        flex-direction: column;
    }

    .hero-section .btn {
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040;
}

.floating-call .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-call .btn:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-call .btn i {
    font-size: 24px;
    color: white;
}

@media (min-width: 992px) {
    .floating-call {
        display: none;
    }
}