/*-------------------------------------------------
   Unmuted - Modern Redesign
   Warm & Inviting Style
   Primary: #DB3833 (Red)
-------------------------------------------------*/

:root {
    --primary: #DB3833;
    --primary-dark: #b92d29;
    --primary-light: #ff5a55;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --grey-dark: #4a4a5a;
    --grey: #6b6b7b;
    --grey-light: #9a9aaa;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

/* Base Overrides */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--lighter);
    color: var(--dark);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* Reset list styles globally */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Reset navbar styles */
.navbar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.navbar-default {
    background: transparent !important;
    border: none !important;
}

.navbar-brand {
    padding: 0 !important;
    height: auto !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

p {
    color: var(--grey-dark);
    line-height: 1.8;
}

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

/*-------------------------------------------------
   Header / Navigation
-------------------------------------------------*/
#header {
    background: var(--lighter);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

#header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

#header .navbar {
    margin-bottom: 0;
    border: none;
    min-height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header #logo {
    float: none;
}

#header #logo img {
    max-height: 40px;
    transition: var(--transition);
}

#header #logo img.retina {
    display: none;
}

#header #sidemenu {
    float: none;
}

#header #sidemenu .menu-holder ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

#header #sidemenu .menu-holder ul li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

#header #sidemenu .menu-holder ul li::before,
#header #sidemenu .menu-holder ul li::after {
    display: none !important;
    content: none !important;
}

#header #sidemenu .menu-holder ul li a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

#header #sidemenu .menu-holder ul li a:hover,
#header #sidemenu .menu-holder ul li a.active-item {
    color: var(--primary);
    background: rgba(219, 56, 51, 0.08);
}

/* CTA button in nav */
#header #sidemenu .menu-holder ul li:last-child a {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
}

#header #sidemenu .menu-holder ul li:last-child a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(219, 56, 51, 0.3);
}

/* Hide mobile menu button on desktop */
#header #menu-responsive-sidemenu {
    display: none;
}

/* Additional resets for old styles */
#header .navbar-default,
#header nav.navbar {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    min-height: 0 !important;
}

#header #sidemenu .menu-holder ul li {
    display: inline-block;
}

#header #sidemenu .menu-holder ul li a::before,
#header #sidemenu .menu-holder ul li a::after,
#header #sidemenu .menu-holder ul li::marker {
    display: none !important;
    content: none !important;
}

/* Aggressive list style reset */
#header ul,
#header ol,
#header li,
.menu-holder ul,
.menu-holder li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#header .menu-holder ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

/*-------------------------------------------------
   Hero Section
-------------------------------------------------*/
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--lighter) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(135deg, rgba(219, 56, 51, 0.03) 0%, rgba(219, 56, 51, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--grey);
    margin-bottom: 35px;
    max-width: 540px;
}

/*-------------------------------------------------
   Buttons
-------------------------------------------------*/
.btn-primary-custom {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(219, 56, 51, 0.35);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    display: inline-block;
    background: transparent;
    color: var(--dark) !important;
    padding: 14px 34px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--dark);
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background: var(--dark);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-outline-light-custom {
    display: inline-block;
    background: transparent;
    color: var(--grey-dark) !important;
    padding: 14px 34px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--grey-light);
}

.btn-outline-light-custom:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    text-decoration: none;
}

/*-------------------------------------------------
   Section Styling
-------------------------------------------------*/
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 50px;
    max-width: 600px;
}

.section-subtitle.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*-------------------------------------------------
   Service Cards
-------------------------------------------------*/
.service-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--grey);
    margin-bottom: 0;
    line-height: 1.7;
}

/*-------------------------------------------------
   Feature List
-------------------------------------------------*/
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--grey-dark);
}

.feature-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
    margin-top: 2px;
}

.feature-list li strong {
    color: var(--dark);
}

/*-------------------------------------------------
   Project Cards
-------------------------------------------------*/
.project-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.project-card .project-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-card .project-content {
    padding: 25px;
}

.project-card .project-tag {
    display: inline-block;
    background: rgba(219, 56, 51, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.project-card p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 0;
    line-height: 1.6;
}

/*-------------------------------------------------
   Stats Section
-------------------------------------------------*/
.stats-section {
    background: var(--dark);
    padding: 60px 0;
}

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

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/*-------------------------------------------------
   CTA Section
-------------------------------------------------*/
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 35px;
}

/*-------------------------------------------------
   About Section
-------------------------------------------------*/
.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.1;
}

/*-------------------------------------------------
   Value Props
-------------------------------------------------*/
.value-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.value-card .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(219, 56, 51, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 22px;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--grey);
    margin-bottom: 0;
}

/*-------------------------------------------------
   Contact Form
-------------------------------------------------*/
.contact-form {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition);
    background: var(--light);
}

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

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/*-------------------------------------------------
   Footer
-------------------------------------------------*/
.footer-new {
    background: var(--dark);
    padding: 70px 0 30px;
    color: rgba(255,255,255,0.7);
}

.footer-new h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-new p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-new a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-new .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-new .footer-links li {
    margin-bottom: 12px;
}

.footer-new .footer-links a {
    font-size: 0.95rem;
}

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

.footer-new .footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/*-------------------------------------------------
   Page Header
-------------------------------------------------*/
.page-header-new {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, var(--lighter) 100%);
    text-align: center;
}

.page-header-new h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-new p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/*-------------------------------------------------
   Testimonials
-------------------------------------------------*/
.testimonial-card {
    background: var(--lighter);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    color: var(--grey-dark);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
}

.testimonial-card .author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.testimonial-card .author-info span {
    font-size: 0.85rem;
    color: var(--grey);
}

/*-------------------------------------------------
   Responsive
-------------------------------------------------*/
@media (max-width: 991px) {
    .hero-section {
        padding: 140px 0 80px;
    }

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

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    #header #sidemenu {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 14px 28px;
        font-size: 15px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .footer-new {
        padding: 50px 0 25px;
    }
}

/*-------------------------------------------------
   Animations
-------------------------------------------------*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/*-------------------------------------------------
   Utility Classes
-------------------------------------------------*/
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mt-30 { margin-top: 30px !important; }
.pt-0 { padding-top: 0 !important; }
