:root {
    --primary: #0f4c75;
    --primary-dark: #0a3a5c;
    --accent: #00b4d8;
    --accent-light: #48cae4;
    --orange: #f5a623;
    --orange-dark: #e09000;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Full Width Background Style */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-consulting.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 50px;
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}

.hero-subtitle .section-number {
    background: var(--orange);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 15px;
    font-style: normal;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background: #165b91;
    color: #fff;
    padding: 18px 50px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
   
}

.btn-primary:hover {
    background: transparent;
    color: var(--orange);
}

/* Review Section */
.review-section {
    background: var(--light);
    padding: 50px 0;
    text-align: center;
}

.quote-icon {
    display: none;
}

.review-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background: var(--white);
    
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-avatar {
    display: none;
}

.review-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.review-text {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
}

.review-stars {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.review-stars i {
    color: var(--orange);
    font-size: 0.9rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.services-label {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Section Number Badge */
.section-number {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 23px;
    font-weight: 700;
    margin-right: 10px;
}

.services-content h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* CTA Banner */
.cta-banner {
    background: var(--accent);
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 5rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
}

.cta-phone:hover {
    opacity: 0.9;
}

/* How It Works Section */
.how-section {
    padding: 30px 0;
    background: var(--white);
}

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

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

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    text-align: left;
    border-bottom: 4px solid var(--orange);
}

.how-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.how-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.how-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.how-card hr {
    border: none;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

/* Why Choose Us Section */
.why-section {
    padding: 60px 0;
    background: var(--light);
}

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

.why-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border-left: 4px solid var(--orange);
}

.why-card h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-card h3 i {
    color: var(--orange);
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-image {
    margin-bottom: 30px;
}

.final-cta-image img {
    max-width: 300px;
    border-radius: 10px;
}

.final-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

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

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.industry-tag {
    background: var(--light);
    padding: 15px 20px;
    text-align: center;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-tag:hover {
    background: var(--orange);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 25px 20px;
    }
}

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

    .hero-section {
        min-height: 300px;
        padding: 60px 20px 50px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-phone {
        font-size: 1.4rem;
    }
}
