:root {
    --primary-color: #FF6B35;
    --secondary-color: #0F172A;
    --text-dark: #1E293B;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    filter: brightness(0) invert(1);

    opacity: 0.9;
}

.call-now-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.navbar {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links li a {
    color: #ffffff !important;
}

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

.navbar .nav-links li .dropdown-content {
    background: #ffffff !important;
}

.navbar .nav-links li .dropdown-content a {
    color: #333333 !important;
    font-weight: 500 !important;
    display: block !important;
    padding: 14px 24px !important;
}

.navbar .nav-links li .dropdown-content a:hover {
    color: var(--primary-color) !important;
    background: rgba(255, 107, 53, 0.05) !important;
}

.search-icon {
    color: #ffffff !important;
}

.hamburger span {
    background: #ffffff !important;
}

.mobile-nav-links a {
    color: #333333 !important;

}

.mobile-menu {
    background: #ffffff;

}

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

.service-section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-section-header h2 span {
    color: var(--primary-color);
}

.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.process-step {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 25px;
}

.benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    background: #fffcfb;
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-answer {
    padding: 0 30px 20px;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.premium-cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-cta-banner h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
}

.premium-cta-banner p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
}