/*
 * My Fair Claim Theme - Main Stylesheet
 * Author: Muhammad Saeed
 * Version: 3.0 - FULLY FLUID RESPONSIVE SYSTEM
 * Date: 2025-11-13
 * 
 * This CSS uses modern fluid design principles:
 * - Fluid container (% based)
 * - Fluid typography (clamp)
 * - Relative spacing (rem, em)
 * - Automatic scaling across all devices
 */

/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   0. Font Face Definitions
   1. Global Variables (Fluid System)
   2. Base & Typography (Fluid Scaling)
   3. Layout & Container (Fluid)
   4. Reusable Components
   5. Header & Navigation
   6. Footer
   
   HOME PAGE SECTIONS:
   8. Hero Section
   9. About Section
   10. Services Section
   11. Claim Process Section
   12. Video CTA Section
   13. Testimonials Section
   14. Blog Section
   15. FAQ Section
   16. Contact CTA Section
   17. CTA Banner
   
   INNER PAGE SECTIONS:
   18. Inner Page Hero
   19. Inner Page Content
   20. FAQ Variant
   21. Blog Archive & Single
   22. About Us Page
   23. Expert Slider
   24. Commitment Section
   25. Contact Page Form
   
   26. Minimal Media Queries (Only for layout changes)
   ========================================================================== */


/* ==========================================================================
   0. FONT FACE DEFINITIONS
   ========================================================================== */

@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Light.otf') format('opentype'),
         url('../fonts/Guminert Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Light Italic.otf') format('opentype'),
         url('../fonts/Guminert Light Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Regular.otf') format('opentype'),
         url('../fonts/Guminert Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Regular Italic.otf') format('opentype'),
         url('../fonts/Guminert Regular Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Medium.otf') format('opentype'),
         url('../fonts/Guminert Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Medium Italic.otf') format('opentype'),
         url('../fonts/Guminert Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Semi Bold.otf') format('opentype'),
         url('../fonts/Guminert Semi Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Semi Bold Italic.otf') format('opentype'),
         url('../fonts/Guminert Semi Bold Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Bold.otf') format('opentype'),
         url('../fonts/Guminert Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Bold Italic.otf') format('opentype'),
         url('../fonts/Guminert Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Extra Bold.otf') format('opentype'),
         url('../fonts/Guminert Extra Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Guminert';
    src: url('../fonts/Guminert Extra Bold Italic.otf') format('opentype'),
         url('../fonts/Guminert Extra Bold Italic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}


/* ==========================================================================
   1. GLOBAL VARIABLES - FULLY FLUID SYSTEM
   ========================================================================== */

:root {
    /* Colors */
    --color-red: #DF3934;
    --color-blue: #3071FF;
    --color-white: #ffffff;
    --color-dark: #212121;
    --color-semidark: #333333;
    --color-text-light: #666666;
    --color-rating: #FC5804;
    --color-background-light: #F8F8F8;

    /* Typography - Base */
    --font-primary: 'Guminert', sans-serif;
    
    /* 🌟 FLUID FONT SIZES - Automatically scale with viewport */
    --fs-nav-links: clamp(12px, 1vw, 18px);
    --fs-buttons: clamp(16px, 1.1vw, 19.5px);
    --fs-hero-subheading: clamp(24px, 2.8vw, 48px);
    --fs-hero-heading: clamp(48px, 8.5vw, 147px);
    --fs-hero-heading-inner: clamp(40px, 6.5vw, 117px);
    --fs-body-pre-heading: clamp(18px, 1.4vw, 25px);
    --fs-body-main-heading: clamp(32px, 3.2vw, 56px);
    --fs-body-main-heading-inner: clamp(24px, 2vw, 35px);
    --fs-body-paragraph: clamp(16px, 1.25vw, 22px);
    --fs-rating-text: clamp(16px, 1.2vw, 21px);

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* 🌟 FLUID LAYOUT - Automatically scales */
    --container-width: min(86%, 1654px); /* Takes 86% of viewport, max 1654px */
    --container-padding: clamp(0px, 3.5vw, 5rem); /* 0px to 80px */
    
    /* 🌟 FLUID SPACING - Consistent vertical rhythm */
    --spacing-xs: clamp(0.5rem, 1vw, 1rem);      /* 8px to 16px */
    --spacing-sm: clamp(1rem, 2vw, 2rem);        /* 16px to 32px */
    --spacing-md: clamp(2rem, 3vw, 3rem);        /* 32px to 48px */
    --spacing-lg: clamp(3rem, 5vw, 6rem);        /* 48px to 96px */
    --spacing-xl: clamp(4rem, 6.5vw, 8rem);      /* 64px to 128px */
    
    /* 🌟 FLUID GAPS - For flexbox/grid */
    --gap-sm: clamp(1rem, 2vw, 2rem);            /* 16px to 32px */
    --gap-md: clamp(2rem, 3vw, 3.5rem);          /* 32px to 56px */
    --gap-lg: clamp(3rem, 5vw, 5.5rem);          /* 48px to 88px */
}


/* ==========================================================================
   2. BASE & TYPOGRAPHY - FLUID SCALING
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%; /* 16px base */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body-paragraph);
    font-weight: var(--fw-medium);
    color: var(--color-text-light);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    font-weight: var(--fw-extrabold);
    line-height: 1.2;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ==========================================================================
   3. LAYOUT & CONTAINER - FLUID SYSTEM
   ========================================================================== */

.site-main {
    flex-grow: 1;
}

.container {
    width: var(--container-width);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}


/* ==========================================================================
   4. REUSABLE COMPONENTS - BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
    border-radius: 0.5rem;
    font-size: var(--fs-buttons);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    text-align: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.9;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-red {
    background-color: var(--color-red);
}

.btn-blue {
    background-color: var(--color-blue);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-dark);
    font-weight: var(--fw-bold);
}

.btn-white:hover {
    color: var(--color-dark);
}

.btn-ghost {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-ghost:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}


/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    transition: background-color 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    height: clamp(35px, 3vw, 50px);
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.main-navigation a {
    position: relative;
    color: var(--color-white);
    font-size: var(--fs-nav-links);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-white);
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    width: 100%;
}

.nav-toggle-button {
    display: none;
    background: transparent;
    border: 1px solid var(--color-white);
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle-button .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle-button .icon-bar + .icon-bar {
    margin-top: 4px;
}


/* ==========================================================================
   6. FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-dark);
    color: #a0a0a0;
    padding: clamp(8rem, 12vw, 14rem) 0 0;
    font-size: clamp(16px, 1vw, 18px);
    position: relative;
}

.footer-logo-centered {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo-centered img {
    height: clamp(35px, 3vw, 50px);
    width: auto;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--gap-md);
    padding-bottom: var(--spacing-md);
}

.footer-widget {
    flex: 1;
    min-width: clamp(200px, 25%, 250px);
}

.footer-widget p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-widget p strong {
    color: #fff;
    font-weight: var(--fw-medium);
}

.widget-title {
    color: var(--color-white);
    font-size: clamp(18px, 1.3vw, 22px);
    font-weight: var(--fw-bold);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-white);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.9rem;
}

.footer-widget a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--color-white);
}

.footer-social-icons {
    display: flex;
    margin-left: 10px;
    gap: clamp(1.5rem, 2vw, 2rem);
    margin-top: var(--spacing-lg);
}

.footer-social-icons a img {
    width: clamp(20px, 1.5vw, 24px);
    height: clamp(20px, 1.5vw, 24px);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.footer-social-icons a:hover img {
    opacity: 1;
}

.footer-bottom-bar {
    border-top: 1px solid #444;
    padding: var(--spacing-sm) 0;
    text-align: center;
    font-size: clamp(14px, 0.9vw, 16px);
}

.footer-bottom-bar p {
    margin: 0;
}


/* =========================================
   FIXED FLOATING ELEMENTS (Call Button & Tagline)
   ========================================= */

/* --- 1. Fixed Call Button --- */
.fixed-call-btn {
    position: fixed;
    right: 20px; 
    bottom: 90px; /* Positioned higher to avoid overlap */
    width: 60px;
    height: 60px;
    background-color: #DF3934; /* Theme Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulse-red 2s infinite;
}

.fixed-call-btn:hover {
    transform: scale(1.1);
    background-color: #b82e2a;
}

.fixed-call-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

/* --- 2. Fixed Tagline Toast --- */
.fixed-tagline-toast {
    position: fixed;
    right: 20px;
    top: 100px; 
    bottom: auto; 
    background: white;
    border-left: 5px solid #DF3934;
    padding: 15px 20px 15px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    z-index: 9998;
    font-family: 'Guminert', sans-serif;
    animation: slideInRight 0.5s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tagline-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tagline-text {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

.tagline-close {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.tagline-close:hover {
    color: #DF3934;
}

/* --- Animations --- */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(223, 57, 52, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(223, 57, 52, 0); }
    100% { box-shadow: 0 0 0 0 rgba(223, 57, 52, 0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .fixed-call-btn {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .fixed-tagline-toast {
        bottom: auto; /* Reset top for mobile */
        top: 75px; /* Keep at bottom on mobile */
        right: 10px;
        left: 10px;
        max-width: none;
    }
}


/* ==========================================================================
   8. HERO SECTION (HOME)
   ========================================================================== */

.hero-section {
    position: relative;
    color: var(--color-white);
    padding: clamp(4rem, 8vw, 6rem) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-lg);
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    flex-basis: 50%;
    max-width: 700px;
}

.hero-subheading {
    font-size: var(--fs-hero-subheading);
    font-weight: var(--fw-bold);
    margin: 0;
}

.hero-heading {
    font-size: var(--fs-hero-heading);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin: 0.5rem 0;
    color: var(--color-white);
}

.hero-text .btn-blue {
    margin-top: var(--spacing-sm);
    padding: clamp(1rem, 1.2vw, 1.2rem) clamp(1.8rem, 2.5vw, 2.2rem);
}

.hero-infographic {
    flex-basis: 45%;
    min-height: clamp(350px, 35vw, 596px);
    background-image: url('../images/hero-infographic.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* ==========================================================================
   9. ABOUT SECTION (HOME)
   ========================================================================== */

.about-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.about-images {
    flex-basis: 50%;
    position: relative;
    min-height: clamp(400px, 35vw, 600px);
}

.about-images img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: all 0.3s ease;
    object-fit: cover;
}

.about-img-1 {
    width: min(80%, 508px);
    height: auto;
    aspect-ratio: 508 / 483;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    width: min(65%, 409px);
    height: auto;
    aspect-ratio: 409 / 375;
    bottom: 0;
    right: 8%;
    z-index: 2;
}

.about-text {
    flex-basis: 50%;
}

.pre-heading {
    font-size: var(--fs-body-pre-heading);
    color: var(--color-red);
    font-weight: var(--fw-regular);
    margin-bottom: var(--spacing-xs);
}

.section-heading {
    font-size: var(--fs-body-main-heading);
    color: var(--color-dark);
    font-weight: var(--fw-extrabold);
    margin-bottom: var(--spacing-sm);
}

.section-paragraph {
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    margin-bottom: var(--spacing-md);
}

.ratings-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.rating-avatars-img {
    max-width: clamp(70px, 5vw, 90px);
    height: auto;
}

.rating-stars-img {
    max-width: clamp(100px, 7vw, 130px);
    height: auto;
}

.rating-text {
    font-size: var(--fs-rating-text);
    color: var(--color-rating);
    font-weight: var(--fw-medium);
    margin: 0;
}


/* ==========================================================================
   10. SERVICES SECTION (HOME)
   ========================================================================== */

.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.section-title-centered {
    text-align: center;
    font-size: var(--fs-body-main-heading);
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-lg);
    background-color: var(--color-background-light);
    padding: clamp(0px, 4vw, 4rem);
    border-radius: clamp(12px, 1.5vw, 20px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.service-text,
.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-title {
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: var(--fw-extrabold);
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    margin-bottom: var(--spacing-md);
}

.service-description p {
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-card .btn-red {
    font-size: var(--fs-buttons);
    padding: clamp(0.8rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
}


/* ==========================================================================
   11. CLAIM PROCESS SECTION (HOME)
   ========================================================================== */

.claim-process-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    color: var(--color-white);
    overflow: hidden;
}

.claim-process-section .section-background {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/claim-process-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: skewY(-4deg);
    z-index: -2;
}

.claim-process-section .section-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

.section-title-centered-white {
    text-align: center;
    font-size: var(--fs-body-main-heading);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.process-steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(3rem, 10vw, 11rem);
    position: relative;
    z-index: 2;
    background-image: url('../images/claim-process-infographic.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: clamp(6rem, 10vw, 11rem);
    min-height: clamp(300px, 28vw, 450px);
}

.process-step {
    max-width: clamp(200px, 17vw, 290px);
    text-align: center;
}

.process-step p {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    line-height: 1.4;
    margin: 0;
}


/* ==========================================================================
   12. VIDEO CTA SECTION (HOME)
   ========================================================================== */

.video-cta-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.section-intro-text {
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
    text-align: center;
    max-width: min(90%, 950px);
    margin: 0 auto var(--spacing-md);
    line-height: 1.7;
}

.video-block {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 8vw, 140px);
    height: clamp(60px, 8vw, 140px);
    background-color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.play-button-link:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: clamp(25px, 3vw, 40px);
    height: auto;
    display: block;
}


/* ==========================================================================
   13. TESTIMONIALS SECTION (CAROUSEL - ALL SCREENS)
   ========================================================================== */

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    transition: transform 500ms ease-in-out;
}

.testimonial-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    height: auto;
    min-height: clamp(450px, 38vw, 627px);
    background-color: var(--color-background-light);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 var(--spacing-xs);
}

.testimonial-image {
    position: relative;
    height: clamp(250px, 24vw, 400px);
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--color-background-light) 5%, transparent 95%);
}

.testimonial-content {
    padding: clamp(1.5rem, 2vw, 2rem);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-content::before {
    content: '';
    background-image: url('../images/quote-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: clamp(20px, 1.5vw, 25px);
    height: auto;
    aspect-ratio: 25 / 23;
    opacity: 1;
    position: absolute;
    top: 0;
    left: clamp(1.5rem, 2vw, 2rem);
    z-index: -1;
}

.testimonial-text {
    font-size: clamp(16px, 1.1vw, 19px);
    font-weight: var(--fw-medium);
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    font-size: clamp(13px, 0.9vw, 15px);
    color: var(--color-dark);
    margin: 0;
    margin-top: auto;
    text-align: end;
}

.author-title {
    font-weight: var(--fw-regular);
    color: var(--color-text-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.nav-arrow {
    width: clamp(50px, 5vw, 84px);
    height: clamp(35px, 3vw, 51px);
    border-radius: clamp(20px, 2vw, 28px);
    border: 2px solid #ddd;
    background-color: var(--color-white);
    color: var(--color-dark);
    font-size: clamp(22px, 2vw, 32px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-bottom: 0.3rem;
}

.nav-arrow:hover {
    background-color: var(--color-background-light);
    border-color: #ccc;
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ==========================================================================
   14. BLOG SECTION (CAROUSEL - HOME)
   ========================================================================== */

.blog-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: var(--fs-body-main-heading);
    color: var(--color-dark);
    font-weight: var(--fw-extrabold);
    margin: 0;
}

.blog-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-section .blog-grid {
    display: flex;
    transition: transform 500ms ease-in-out;
}

.blog-section .blog-post-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    box-sizing: border-box;
    padding: 0 var(--spacing-xs);
}

.post-image {
    margin-bottom: var(--spacing-sm);
}

.post-image img {
    width: 100%;
    height: clamp(220px, 24vw, 396px);
    border-radius: 15px;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.post-image a:hover img {
    opacity: 0.9;
}

.post-title {
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: var(--fw-extrabold);
    line-height: 1.4;
    margin: 0 0 var(--spacing-xs) 0;
}

.post-title a {
    color: var(--color-dark);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--color-blue);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: clamp(30px, 2.5vw, 35px);
    height: clamp(30px, 2.5vw, 35px);
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.author-name {
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
}

.author-role {
    font-size: clamp(12px, 0.85vw, 14px);
    font-weight: var(--fw-medium);
    color: var(--color-text-light);
}

.blog-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}


/* ==========================================================================
   15. FAQ SECTION (HOME)
   ========================================================================== */

.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.faq-list {
    max-width: min(95%, 1280px);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: clamp(1.2rem, 1.5vw, 1.6rem) 0;
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
}

.faq-icon {
    width: clamp(16px, 1.2vw, 20px);
    height: clamp(16px, 1.2vw, 20px);
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
    line-height: 1.7;
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.faq-answer p {
    margin: 0;
    padding-bottom: clamp(1rem, 1.5vw, 1.6rem);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* ==========================================================================
   16. CONTACT CTA SECTION (HOME)
   ========================================================================== */

.contact-layout {
    display: flex;
    background-color: var(--color-dark);
}

.contact-image-col,
.contact-form-col {
    flex-basis: 50%;
}

.contact-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-col {
    padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 2.5vw, 2.2rem);
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: var(--fw-medium);
    color: #aaa;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #777;
    color: var(--color-white);
    font-size: clamp(16px, 1.05vw, 18px);
    padding: 0.6rem 0;
    transition: border-color 0.3s ease;
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-white);
}

.contact-form .btn-red {
    margin-top: var(--spacing-md);
}


/* ==========================================================================
   17. CTA BANNER (PRE-FOOTER)
   ========================================================================== */

.cta-banner {
    width: min(90%, 1654px);
    height: auto;
    min-height: clamp(250px, 22vw, 364px);
    margin: clamp(4rem, 8vw, 7.5rem) auto clamp(-6rem, -11vw, -11.4rem) auto;
    border-radius: 15px;
    position: relative;
    z-index: 5;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: clamp(2rem, 3.5vw, 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-text {
    text-align: center;
}

.cta-text h2 {
    font-size: clamp(28px, 2.9vw, 50px);
    font-weight: var(--fw-extrabold);
    color: var(--color-white);
    margin: 0 0 0.5rem 0;
}

.cta-text p {
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: var(--fw-regular);
    margin: 0;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}


/* ==========================================================================
   18. INNER PAGE HERO
   ========================================================================== */

.page-hero-section {
    position: relative;
    color: var(--color-white);
    padding: clamp(4rem, 6vw, 6rem) 0;
    min-height: clamp(400px, 45vw, 70vh);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: min(95%, 1200px);
    margin: 0 auto;
}

.page-hero-subheading {
    font-size: var(--fs-hero-subheading);
    font-weight: var(--fw-bold);
    margin: 0;
}

.page-hero-heading {
    font-size: var(--fs-hero-heading-inner);
    font-weight: var(--fw-bold);
    line-height: 1.1;
    margin: 0.5rem 0 var(--spacing-md) 0;
    color: var(--color-white);
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}


/* ==========================================================================
   19. INNER PAGE CONTENT SECTIONS
   ========================================================================== */

.content-section-split {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.content-section-split.section-intro .section-title-centered {
    margin-bottom: var(--spacing-lg);
}

.content-grid {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.content-grid.reverse {
    flex-direction: row-reverse;
}

.content-text-col,
.content-image-col {
    flex-basis: 50%;
}

.content-image-col {
    width: 100%;
    max-width: 696px;
    height: auto;
    aspect-ratio: 696 / 416;
}

.content-image-col img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.content-title {
    font-size: var(--fs-body-main-heading-inner);
    color: var(--color-semidark);
    font-weight: var(--fw-bold);
    margin-bottom: var(--spacing-sm);
}

.content-text-col p {
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.content-text-col ol,
.content-text-col ul {
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.content-text-col ol li,
.content-text-col ul li {
    margin-bottom: 0.9rem;
}


/* ==========================================================================
   20. FAQ - APPRAISAL CLAUSE VARIANT
   ========================================================================== */

.appraisal-clause-faq {
    padding-top: var(--spacing-xl);
    background-color: var(--color-white);
}

.appraisal-clause-faq .faq-question {
    font-weight: var(--fw-bold);
}

.section-cta-centered {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.appraisal-clause-faq .faq-icon {
    width: clamp(24px, 1.8vw, 30px);
    height: clamp(10px, 0.7vw, 12px);
    transition: transform 0.3s ease-in-out;
    filter: invert(32%) sepia(82%) saturate(3031%) hue-rotate(345deg) brightness(91%) contrast(92%);
}

.appraisal-clause-faq .faq-item.active .faq-icon {
    transform: rotate(180deg);
}


/* ==========================================================================
   21. BLOG ARCHIVE & SINGLE POST
   ========================================================================== */

.blog-archive-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.pagination {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.pagination .nav-links {
    display: flex;
    gap: 0.6rem;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background-color: var(--color-background-light);
    border-color: #ccc;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-size: clamp(16px, 1.2vw, 20px);
    padding: 0.5rem 0.9rem;
}

.no-posts-found {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.no-posts-found h2 {
    font-size: clamp(32px, 2.4vw, 40px);
    margin-bottom: var(--spacing-sm);
}

.single-post-hero .page-hero-heading {
    font-size: clamp(40px, 4.7vw, 80px);
}

.single-post-content-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.single-post-content {
    max-width: min(95%, 1654px);
    margin: 0 auto;
}

.post-featured-image {
    margin-bottom: var(--spacing-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.post-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: clamp(14px, 0.95vw, 16px);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
    margin-bottom: var(--spacing-md);
}

.post-meta .post-author {
    font-weight: var(--fw-bold);
    color: var(--color-dark);
}

.post-entry-content {
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
    line-height: 1.8;
}

.post-entry-content p {
    margin-bottom: clamp(1.2rem, 1.5vw, 1.6rem);
}

.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4 {
    color: var(--color-dark);
    font-weight: var(--fw-bold);
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.post-entry-content h2 { font-size: clamp(26px, 1.9vw, 32px); }
.post-entry-content h3 { font-size: clamp(22px, 1.6vw, 28px); }
.post-entry-content h4 { font-size: clamp(20px, 1.4vw, 24px); }

.post-entry-content ul,
.post-entry-content ol {
    margin: 0 0 clamp(1.2rem, 1.5vw, 1.6rem) clamp(1.5rem, 2vw, 2rem);
}

.post-entry-content li {
    margin-bottom: 0.6rem;
}

.post-entry-content blockquote {
    border-left: 4px solid var(--color-red);
    padding-left: clamp(1.2rem, 1.5vw, 1.6rem);
    margin: var(--spacing-md) 0;
    font-size: clamp(18px, 1.2vw, 20px);
    font-style: italic;
    color: var(--color-text-light);
}


/* ==========================================================================
   22. ABOUT US PAGE
   ========================================================================== */

.content-image-cluster {
    display: flex;
    gap: var(--spacing-sm);
}

.content-image-cluster img {
    flex: 1;
    width: 50%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-image-col .our-story-img {
    margin-top: clamp(-3rem, -5vw, -5rem);
    width: 100%;
    height: auto;
    aspect-ratio: 696 / 607;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
   23. EXPERT SLIDER SECTION
   ========================================================================== */

.expert-slider-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
    overflow-x: hidden;
}

.expert-slider-section .section-header {
    margin-bottom: var(--spacing-md);
}

.slider-nav {
    display: flex;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.slider-nav .nav-arrow {
    width: clamp(50px, 4.7vw, 80px);
    height: clamp(50px, 4.7vw, 80px);
    border-radius: 50%;
    border: 1px solid var(--color-red);
    position: static;
    transform: none;
}

.slider-nav .expert-prev {
    padding: 0.1rem 0.5rem 0 0;
}

.slider-nav .expert-next {
    padding: 0.1rem 0 0 0.5rem;
}

.expert-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.expert-slider-grid {
    display: flex;
}

.expert-card {
    flex: 0 0 32%;
    max-width: clamp(350px, 29vw, 500px);
    background-color: var(--color-red);
    color: var(--color-white);
    padding: clamp(2rem, 2.5vw, 2.5rem);
    border-radius: 12px;
    margin-right: var(--gap-md);
    box-sizing: border-box;
    height: auto;
}

.expert-icon {
    width: clamp(70px, 5.3vw, 90px);
    height: clamp(70px, 5.3vw, 90px);
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.expert-icon img {
    width: clamp(50px, 3.8vw, 64px);
    height: clamp(50px, 3.8vw, 64px);
}

.expert-title {
    font-size: clamp(22px, 1.6vw, 28px);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.expert-card p {
    font-size: clamp(16px, 1.05vw, 18px);
    font-weight: var(--fw-regular);
    color: var(--color-white);
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}


/* ==========================================================================
   24. COMMITMENT SECTION
   ========================================================================== */

.text-intro-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.text-intro-section .section-title-centered {
    margin-bottom: var(--spacing-md);
}

.text-intro-section .section-intro-text {
    max-width: min(90%, 1000px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-sm);
    font-size: var(--fs-body-paragraph);
    color: var(--color-text-light);
}

.text-intro-section.commitment-intro {
    padding-bottom: 0;
}

.text-intro-section.commitment-outro {
    padding-top: clamp(2rem, 3vw, 3rem);
}

.commitment-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}

.commitment-grid-item {
    height: 100%;
}

.commitment-title-cell {
    background-color: var(--color-white);
    padding: 0.6rem;
}

.commitment-title-cell .section-title {
    font-size: clamp(32px, 2.6vw, 45px);
}

.commitment-card {
    background-color: var(--color-background-light);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: 12px;
    height: 100%;
}

.commitment-card h3 {
    font-size: clamp(20px, 1.4vw, 24px);
    font-weight: var(--fw-bold);
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.commitment-card p {
    font-size: clamp(16px, 1.2vw, 20px);
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}


/* ==========================================================================
   25. CONTACT PAGE FORM
   ========================================================================== */

.new-contact-page-section {
    max-width: min(95%, 1393px);
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.new-contact-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.new-contact-header .section-title-centered {
    margin-bottom: var(--spacing-xs);
}

.new-contact-header .section-intro-text {
    font-size: clamp(16px, 1.2vw, 20px);
}

.contact-card-wrapper {
    display: flex;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: clamp(2rem, 3vw, 3rem);
    background: #EEEEEE;
    overflow: hidden;
}

.contact-info-col {
    flex-basis: 40%;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: clamp(2rem, 3vw, 3rem);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-info-col::before,
.contact-info-col::after {
    content: '';
    position: absolute;
    background-color: var(--color-white);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.contact-info-col::before {
    width: clamp(150px, 12vw, 217px);
    height: clamp(150px, 12vw, 217px);
    bottom: clamp(-60px, -5vw, -85px);
    right: clamp(-40px, -3.5vw, -60px);
}

.contact-info-col::after {
    width: clamp(80px, 7vw, 124px);
    height: clamp(80px, 7vw, 124px);
    bottom: clamp(25px, 2.5vw, 40px);
    right: clamp(40px, 3.5vw, 60px);
}

.contact-info-title {
    font-size: clamp(24px, 1.9vw, 32px);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: 0.6rem;
}

.contact-info-sub {
    font-size: clamp(16px, 1.05vw, 18px);
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-bottom: clamp(1.2rem, 1.5vw, 1.6rem);
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: var(--fw-medium);
    line-height: 1.6;
}

.contact-details-list li img {
    width: clamp(18px, 1.2vw, 20px);
    height: clamp(18px, 1.2vw, 20px);
    flex-shrink: 0;
    margin-top: 0.25rem;
    filter: brightness(0) invert(1);
}

.contact-social-icons-new {
    display: flex;
    gap: clamp(1.2rem, 1.5vw, 1.6rem);
    margin-top: var(--spacing-lg);
}

.contact-social-icons-new a {
    text-decoration: none;
}

.contact-social-icons-new img {
    width: clamp(20px, 1.4vw, 24px);
    height: clamp(20px, 1.4vw, 24px);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.contact-social-icons-new a:hover img {
    opacity: 1;
}

.contact-form-col-new {
    flex-basis: 60%;
    background-color: transparent;
    padding: clamp(2rem, 3vw, 3rem);
    border-radius: 0 20px 20px 0;
}

.form-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: var(--spacing-sm);
}

.form-group-new {
    margin-bottom: var(--spacing-md);
}

.form-group-new.full-width {
    grid-column: 1 / -1;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0.6rem 0;
    font-size: clamp(14px, 0.95vw, 16px);
    font-family: var(--font-primary);
    font-weight: var(--fw-medium);
    color: var(--color-dark);
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group-new ::placeholder {
    color: #aaa;
    font-weight: var(--fw-regular);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-red);
}

.form-group-checkbox label {
    font-size: clamp(14px, 0.95vw, 16px);
    color: var(--color-text-light);
    font-weight: var(--fw-medium);
}

.form-submit-row {
    text-align: right;
    margin-top: var(--spacing-md);
}


/* ==========================================================================
   26. MINIMAL MEDIA QUERIES - LAYOUT CHANGES ONLY
   ========================================================================== */

/* 🌟 Most responsive behavior is handled by fluid units above
   These queries only handle LAYOUT STRUCTURE changes */

/* --- Tablets & Below (1024px) --- */
@media (max-width: 1024px) {
    
    .container{
        padding: 0;
    }
    /* Header - Mobile Navigation */
    .site-header {
        position: relative;
        z-index: 1000;
        background-color: var(--color-white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-toggle-button {
        display: block;
        border-color: var(--color-dark);
    }

    .nav-toggle-button .icon-bar {
        background-color: var(--color-dark);
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: var(--spacing-md);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .site-header.nav-open .main-navigation {
        display: flex;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
        width: 100%;
        padding: 0;
    }

    .main-navigation ul li {
        width: 100%;
        text-align: center;
    }

    .main-navigation a {
        color: var(--color-dark);
        font-weight: var(--fw-bold);
    }

    .header-action {
        display: none;
    }

    .site-header.nav-open .header-action {
        display: block;
        width: 80%;
        text-align: center;
    }

    .nav-toggle-button.active .icon-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle-button.active .icon-bar:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle-button.active .icon-bar:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }
    .services-section{
        padding: 0;
    }
    /* Layout - Stack columns */
    .hero-content,
    .about-content,
    .service-card,
    .contact-layout,
    .content-grid,
    .content-grid.reverse,
    .contact-card-wrapper {
        flex-direction: column;
    }

    .service-card:nth-child(2) {
        flex-direction: column-reverse;
    }

    /* Hero */
    .hero-section {
        align-items: flex-start;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        padding-top: var(--spacing-lg);
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-infographic {
        width: 100%;
    }

    /* About Images */
    .about-images {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
    }

    .about-images img {
        position: static;
        width: 100%;
        height: auto;
    }

    /* Testimonials - 2 cards on tablet */
    .testimonial-card {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Blog Carousel - 2 cards on tablet */
    .blog-section .blog-post-card {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .section-header {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }

    /* Expert Slider */
    .expert-card {
        flex-basis: 50%;
    }

    /* Commitment Grid - 2 columns */
    .commitment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .commitment-title-cell {
        grid-column: 1 / -1;
        text-align: center;
    }

    /* Blog Archive - 2 columns */
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Claim Process - Remove background image */
    .process-steps-container {
        background-image: none;
        flex-direction: column;
        gap: var(--spacing-md);
        padding-top: 0;
        min-height: auto;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
}


/* --- Mobile Phones (767px) --- */
@media (max-width: 767px) {

    /* Header - Fixed position */
    .site-header {
        position: static;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    /* Single column layouts */
    .testimonial-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .blog-section .blog-post-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .expert-card {
        flex-basis: 85%;
    }

    /* Commitment Grid - 1 column */
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .commitment-title-cell {
        text-align: left;
    }

    /* Blog Archive - 1 column */
    .blog-archive-grid {
        grid-template-columns: 1fr;
    }

    /* Content Images */
    .content-image-cluster {
        flex-direction: column;
    }

    .content-image-cluster img {
        width: 100%;
    }

    .content-image-col .our-story-img {
        margin-top: 0;
        width: 100%;
        height: auto;
    }

    /* Contact Form - Stack fields */
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-new {
        grid-template-columns: 1fr;
    }

    .form-submit-row {
        text-align: left;
    }

    .form-submit-row .btn {
        width: 100%;
    }

    /* CTA Actions - Stack buttons */
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer-widgets {
        flex-direction: column;
    }
}


/* ==========================================================================
   27. PRINT STYLES (BONUS)
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .nav-toggle-button,
    .testimonial-nav,
    .blog-nav,
    .cta-banner {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        text-decoration: underline;
    }
}
/* ==========================================================================
   28. PAYMENT BADGES (FOOTER)
   ========================================================================== */
.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.payment-badges img {
    height: 24px; /* Clean, consistent height */
    width: auto;
    transition: filter 0.3s ease;
}

/* End of main.css - Fully Fluid Responsive System */