/* Modern Typography Styles */
:root {
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

/* Base Typography */
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: 0.75rem;
}

/* Service Section Specific */
.services-block-three .content-box .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}


.services-block-three .content .inner span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FBB326;
    font-weight: 500;
}

/* Section Titles */
.sec-title .sub-title {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.sec-title h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Button Typography */
.quote-btn {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Responsive Text */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .services-block-three .content-box .title {
        font-size: 1.25rem;
    }
    
    .sec-title h2 {
        font-size: 2rem;
    }
}
