/* 

---------- TYPOGRAPHY ----------

FONT SIZES
12px / 16px / 20px / 24px / 32px / 40px / 48px / 62px

FONT WEIGHTS
400 / 700

LINE HEIGHTS
1.2 / 1.5

LETTER SPACING
0 / -2px

FONT FAMILY
Poppins

---------- COLORS ----------

PRIMARY
Base: #339af0 (Sky Blue)
Tint: #d0ebff (Arctic)
Shade: #1c7ed6 (Deep Sea)

SECONDARY
Base: #9775fa (Lavendar)
Tint: #e5dbff (Moonligh Iris)
Shade: #7048e8 (Velvet Night)

TERTIARY
Base: #ff922b (Pumpkin)
Tint: #ffe8cc (Dawn)
Shade: #f76707 (Lava)

GREY
Base: #495057 (Slate)
Tint: #f1f3f5 (Pebble)
Shade: #212529 (Graphite)
White: #ffffff (White)
Black: #000000 (Black)

---------- BORDER RADIUS ----------

4px / 8px / 20px

---------- SPACING SYSTEM ----------

5px / 10px / 15px / 20px / 25px / 30px / 40px / 50px / 60px / 70px / 80px / 90px / 100px / 125px / 150px / 200px / 250px / 300px / 400px / 500px

*/

/* ----------------------- GLOBAL STYLES ----------------------- */

:root {
    /* FONT SIZE */
    --text-sm: 1.2rem;
    --text-base: 2rem;
    --text-paragraph: 2.5rem;
    --text-h5: 2.8rem;
    --text-h4: 3.2rem;
    --text-h3: 4rem;
    --text-h2: 5rem;
    --text-h1: 7rem;

    --text-sm: 1.2rem;
    --text-base: 2rem;
    --text-paragraph: 2.5rem;
    --text-h5: 2.8rem;
    --text-h4: 3.0rem;
    --text-h3: 4rem;
    --text-h2: 5rem;
    --text-h1: 6rem;

    /* FONT WEIGHT */
    --font-weight-normal: 400;
    --font-weight-bold: 700;

    /* LINE HEIGHTS */
    --line-height-tighter: 1.0;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;

    /* LETTER SPACING */
    --letter-spacing-tight: -1px;

    /* FONT FAMILY */
    --font-family: 'Outfit', sans-serif;

    /* COLORS */
    --primary-base:rgb(247,153,0);
    --primary-tint: #d0ebff;
    --primary-shade: rgb(247, 104, 0);
    --secondary-base: rgb(238,71,0);
    --secondary-tint: #e5dbff;
    --secondary-shade: rgb(211,21,0);
    --tertiary-base: rgb(32,92,118);
    --tertiary-tint: #ffe8cc;
    --tertiary-shade: #f76707;
    --grey-base: #495057;
    --grey-tint: #f1f3f5;
    --grey-shade: #212529;
    --grey-inter: #6C757D;
    --white: #ffffff;
    --black: #000000; 
    
    /* MISCELLANEOUS */
    --nav-height: 100px; /* Update the value in the flexbox topic */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
   font-size: 37.5%; 
   /* 6px / 16px = 37.5% */
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--grey-base);
}

.container {
    max-width:930px;
    width: 90%;
    margin: 0 auto;
}

img {
    max-width: 100%; /* The image can NEVER be wider than its parent container */
    height: auto;    /* Maintains the aspect ratio so it doesn't look squashed */
    display: block;  /* Removes the weird little gap at the bottom of images */
}


h1, h2, h3, h4, h5 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--grey-shade);
}

h1 {
    font-size: var(--text-h1);
}

h2 {
    font-size: var(--text-h2);
}

h3 {
    font-size: var(--text-h3);
    color: var(--gray-inter);
}

h4 {
    font-size: var(--text-h4);
}

h5 {
    font-size: var(--text-h5);
}

p {
    font-size: var(--text-paragraph);
}

a {
    text-decoration: none;
    font-size: var(--text-paragraph);
    display: inline-block;
}

a:link, a:visited, a:hover, a:active {
    color: var(--grey-base);
}

ul {
    list-style: none;
}

span {
    display: inline-block;
}

.small-text {
    font-size: var(--text-sm);
}

.section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.padding-top-half {
    padding-top: 4rem;
}

.padding-bottom-half {
    padding-bottom: 4rem;
}

.padding-top-half {
    padding-top: 3rem;
}

.padding-bottom-half {
    padding-bottom: 3rem;
}

/* ----------------------- COMPONENTS ----------------------- */

.btn {
    font-size: var(--text-h4);
    text-decoration: none;
    padding: 2rem 4rem;
    border-radius: 15px;
    border: 2px solid var(--secondary-shade);
    background-image: linear-gradient(rgb(247,153,0) 0%,rgb(245,119,0) 100%);
    font-weight: 700; 
    margin-top: 4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-redirection{
    font-size: var(--text-base);
    letter-spacing: 0.05rem;
}

.btn-primary:link, .btn-primary:visited {
    color: var(--white);
    background-color: var(--primary-base);
    border: 2px solid var(--secondary-shade);
    transition: 0.5s;
}

.btn-primary:hover, .btn-primary:active {
    color: var(--white);
    background-color: var(--primary-shade);
    border: 2px solid var(--secondary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--grey-base);
}

.btn-primary-outline:link, .btn-primary-outline:visited {
    color: var(--primary-base);
    background-color: var(--white);
    border: 2px solid var(--secondary-shade);
    transition: 0.5s;
}

.btn-primary-outline:hover, .btn-primary-outline:active {
    color: var(--primary-shade);
    background-color: var(--white);
    border: 2px solid var(--primary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--grey-base);
}

.btn-secondary:link, .btn-secondary:visited {
    color: var(--white);
    background-color: var(--secondary-base);
    border: 2px solid var(--secondary-base);
    transition: 0.5s;
}

.btn-secondary:hover, .btn-secondary:active {
    color: var(--white);
    background-color: var(--secondary-shade);
    border: 2px solid var(--secondary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--grey-base);
}

.highlight {
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.highlight-primary {
    background-color: var(--primary-base);
}

.highlight-secondary {
    background-color: var(--secondary-base);
    color:#f0ece7
}

.highlight-tertiary {
    background-color: var(--tertiary-base);
}

.logo-md {
    width: 100px;
}

.logo-sm {
    width: 80px;
}

.chat-container {
    height: 7rem;
    width: 7rem;
    background-color: var(--primary-tint);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}

.chat-icon {
    width: 5rem;
    height: 5rem;
}

.beta {
    position: relative;
}

.beta::after {
    content: 'beta';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
    background-color: var(--tertiary-base);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--white);
    transform: translate(70%, -70%);
}


.heading{
    text-align: center;
    line-height: var(--line-height-tight);
}

.heading.margin{
    margin-bottom: 4rem;
}

/* ----------------------- SECTIONS ----------------------- */

/* ------ NAVBAR ------ */

.navbar {
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn-container {
    display: flex;
    gap: 2rem;
}

/* ------ HERO SECTION ------ */

.hero-discount-banner {
    background-color: VAR(--tertiary-base); /* Urgent Red */
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hero-discount-banner p {
    margin: 0;
    font-size: var(--text-h4);
    padding: 0 2rem;
}

.hero-discount-banner span {
    background-color: #f1c40f; /* Yellow highlight */
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 5px;
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .hero-discount-banner {
        padding: 10px 5px;
    }
}

.hero-section {
    /* 1. Background stays on the outer section to fill the screen */
    background: url("../images/retina_wood-main-bg.webp") center repeat;
    /* 3. Remove flex from here so it doesn't squash the container */
    display: block;
}

.container.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.heading.hero {
    color: var(--grey-shade);
    line-height: var(--line-height-tighter);
    margin-bottom: 2rem;
}

.hero-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    line-height: 0; 
    width: 95%;
    height: auto;
    border: 0.1rem solid #ccc;
    border-radius: 2rem; 
    padding: 0.5rem;
    align-items: center;
}

.hero-paragraph {
    margin-bottom: 5rem;
    text-align: center;
    font-size: var(--text-h4);
    font-weight: 500;
    line-height: var(--line-height-tight);
    color: var(--grey-shade);
    letter-spacing: -0.5px;
}


.hero-btn-container {
    display: flex;
    gap: 2rem;
}

/* ------ REVIEWS SECTION ------ */


.heading.reviews {
    text-align: center;
}


.sub-heading.reviews {
    text-align: center;
}

.container.reviews {
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    text-align: center;
}

.reviews-grid-container {
    display: grid;
    /* Create 2 columns on desktop. On mobile, they will automatically stack. */
    grid-template-columns: 1fr; 
    gap: 3rem; /* 30px gap */
    margin-top: 3rem;
}

.reviews-flex-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* 30px gap */
}


.reviews-grid-container h3{
    color:var(--secondary-base);
    font-style: italic;
    font-family: var(--font-family);
    letter-spacing: normal;
    padding-bottom: 0.5rem;
}

.testimonial-lt {
    position: relative;       /* Anchor for both absolute images */
    width: 100%;
    border-radius: 2rem;      /* 20px */
    background-color: rgb(236,236,236); 
    padding: 6rem 4rem 8rem;  /* Extra top/bottom padding for the icons */
    margin-bottom: 10rem;     /* Extra space so it doesn't hit the next item */
}

.testimonial-lt .img1 {
    position: absolute;
    top: -2rem;               /* Pops out 20px from the top */
    left: 2rem;               /* 20px from the left */
    height: 5rem;             /* 50px - adjust as needed */
    width: auto;
    z-index: 1;               /* Keeps it on top of the gray box */
}

.testimonial-lt .img2 {
    position: absolute;
    bottom: -7rem;            /* Pops out 70px (Half of 140px) */
    right: 3rem;              /* 30px from the right */
    height: 14rem;            /* 140px */
    width: 14rem;             /* 140px */
    border-radius: 50%; 
    border: 0.7rem solid rgb(254,197,82); /* 7px */
    object-fit: cover;
    background-color: #fff;
    z-index: 2;               /* Ensures photo is above the quote if they touch */
}

.testimonial-lt h3 {
    margin-top: 1rem;         /* Space for the quote icon above it */
    margin-bottom: 2rem;
    color: rgb(239,72,0);
}

.testimonial-lt p {
    font-style: italic; 
    font-size: var(--text-paragraph);
    padding-bottom: 3.33rem;
}

.testimonial-rt {
    position: relative;       /* Anchor for both absolute images */
    width: 100%;
    border-radius: 2rem;      /* 20px */
    background-color: rgb(236,236,236); 
    padding: 6rem 4rem 8rem;  /* Extra top/bottom padding for the icons */
    margin-bottom: 10rem;     /* Extra space so it doesn't hit the next item */
}

.testimonial-rt .img1 {
    position: absolute;
    top: -2rem;               /* Pops out 20px from the top */
    left: 2rem;               /* 20px from the left */
    height: 5rem;             /* 50px - adjust as needed */
    width: auto;
    z-index: 1;               /* Keeps it on top of the gray box */
}

.testimonial-rt .img2 {
    position: absolute;
    bottom: -7rem;            /* Pops out 70px (Half of 140px) */
    right: 3rem;              /* 30px from the right */
    height: 14rem;            /* 140px */
    width: 14rem;             /* 140px */
    border-radius: 50%; 
    border: 0.7rem solid rgb(254,197,82); /* 7px */
    object-fit: cover;
    background-color: #fff;
    z-index: 2;               /* Ensures photo is above the quote if they touch */
}

.testimonial-rt h3 {
    margin-top: 1rem;         /* Space for the quote icon above it */
    margin-bottom: 2rem;
    color: rgb(239,72,0);
}

.testimonial-rt p {
    font-style: italic; 
    font-size: var(--text-paragraph);
    padding-bottom: 3.33rem;
}
    
.reviews-video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    border-radius: 1.5rem; /* 9px */
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.5);
    text-align: center;
    background-color:#f0ece7;
}

.reviews-video-container h4{
    display: flex;
    align-items: center; /* This centers the text vertically within that space */
    justify-content: center; /* Optional: centers the text horizontally */
    margin-bottom: 15px;
    color:var(--tertiary-base);
    font-style: italic;
    font-family: var(--font-family);
    letter-spacing: normal;
    padding-bottom: 0.5rem;
}

.reviews-video {
    width: 100%;       /* Makes the video fit the container width */
    max-width: 100%;   /* Ensures it never overflows on mobile */
    height: auto;      /* Keeps the original shape (ratio) */
    border-radius: 1rem;
    display: block;
    /*margin-bottom: 2rem;*/
}

.review-video-caption {
    font-size: 2.5rem; /* 15px */
    color: #444;
    line-height: 1.4;
}

.review-rating-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the stars and text */
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* 1. The Container must be 'relative' so the button stays inside it */
.video-placeholder {
    position: relative; 
    display: inline-block;
    width: 100%;
    max-width: 400px; /* Matches your image width */
    cursor: pointer;
    background-color: #000; /* Fallback color */
    border-radius: 8px;
    overflow: hidden;
    margin-top:auto;
}

.video-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.8; /* Dim the image slightly */
    transition: opacity 0.3s;
}

.video-placeholder:hover img {
    opacity: 1;
}

/* 2. The Image must be 'block' to prevent weird spacing at the bottom */
.video-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.9; /* Slightly dim it so the white button pops */
}

/* 3. The Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers it perfectly */
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent circle */
    border: 3px solid #fff; /* White border */
    border-radius: 50%;
    z-index: 10; /* Ensures it sits ON TOP of the image */
}

/* 4. The White Triangle inside the button */
.play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%; /* Nudge right to look visually centered */
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px; /* Creates the triangle shape */
    border-color: transparent transparent transparent #fff;
}

.stars {
    color:#c59d08; /* Bright Gold */
    font-size: 5rem;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
}

/* ------ PAS SECTION ------ */

.pas-section {
    display: block;
}

.container.pas {
    /* 1. This uses your existing .container logic (max-width 1200px, etc.) */
    /* 2. Centering the content inside the hero */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-heading.pas {
    text-align: center;
}

.container.pas ul li {
    margin: 0 0 10rem 0;
    background: url("../images/arrow.png") 25px center no-repeat;
    background-size: 25px; 
    background-position: 1rem 1rem; 
    padding: 1rem 1rem 0rem 8rem;
    display: block;
    margin:0 0 1rem 0;
    font-size: var(--text-h5);
    line-height: var(--line-height-tight);
}

/* ------ PROOF SECTION ------ */

/* .proof-section {
    } */

.proof-main-heading {
    text-align: center;
}

.proof-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    text-align: center;
}

.proof-headings {
    margin-bottom: 2rem;
}

.proof-img {
    display: flex;
    flex:1;
    width:100%;
    justify-content: center;
}

.proof-img img {
    max-width: 700px;
    line-height: 0; 
    border: 0.1rem solid #ccc;
    border-radius: 2rem; 
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.proof-img.normal img{
    width: 65%;
    max-width: 500px;
}

.proof-img.wide img{
    width: 95%;
    max-width: 700px;
}

.proof-img.narrow img{
    width: 55%;
    max-width: 250px;
}

.proof-container p {
    font-size: var(--text-h4);
}

.proof-container h3 {
    margin-bottom: 3rem;
    font-weight: var(--font-weight-normal);
    letter-spacing: normal;
    line-height: normal;
}

.proof-btn-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5rem;
}

.proof-btn-container p{
    font-size: var(--text-base);
    letter-spacing: 0.05rem;
}

/* --- 2. FLEX ROW LAYOUT (Mobile First) --- */
.proof-flex-row{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

/* --- 3. TED PROFILE CARD & SIGNATURE --- */
.proof-ted-profile-card {
    text-align: center;
    max-width: 100%;
    flex:1;
}

.proof-ted-bio-text{
    flex:2;
}

.proof-ted-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.proof-ted-signature {
    width: 25rem;
    transform: rotate(-5deg);
    pointer-events: none; /* Mouse ignores it */
}

.proof-ted-credentials p {
    font-size: var(--text-paragraph);
    line-height: 1.2;
    color: var(--grey-base);
}

.proof-subcontainer {
    display:flex;
}

/* ------ FEATURES SECTION ------ */

/* .features-section {
    margin-bottom: 10rem;
} */

.features-main-heading {
    text-align: center;
}

.features-heading {
    margin-bottom: 2rem;
    letter-spacing: normal;
    color: var(--secondary-base);
}

.features-heading.margin{
    margin-bottom: 4rem;
}

.features-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    text-align: center;
}

.features-container h3{
    color: var(--grey-base);
}

/*from Gemini*/


.features-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    margin-bottom: 8rem;
    border: 1px solid rgb(123, 123, 123);
    border-radius: 8px;
    padding: 3rem 2rem;
    background-color: rgb(255, 249, 233);
    width: 100%;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center; /* Centers the image if it's smaller than the div */
}

.features-image img {
    width: 100%;
    max-width: 60rem;
    border-radius: 2rem;
    box-shadow: 0 2rem 4rem rgba(0,0,0,0.1);
}

.features-text h2 {
    color:rgb(32,92,118);
    margin-bottom: 2rem;
}

.features-text ul li {
    font-size: var(--text-paragraph);
    margin: 0;
    background: url("../images/arrow.png") 25px center no-repeat;
    background-size: 25px; background-position-y: 15px; 
    padding: 8px 0 8px 68px;
    display: block;
    margin:0 0 5px 0;
    font-size: var(--text-h5);
    line-height: var(--line-height-tight);
}

.features-number {
    display: block;
    color: var(--secondary-base); /* Your brand orange */
    font-weight: bold;
    font-size: var(--text-h3);
    margin-bottom: 1rem;
}

.features-list {
    display:flex;
    align-items: left;
    text-align: left;
}


.features-img {
    max-width: 700px;
    line-height: 0; 
    width: 95%;
    border: 0.1rem solid #ccc;
    border-radius: 2rem; 
    padding: 0.5rem;
    margin-bottom: 5rem;
}

.features-img1 {
    max-width: 700px;
    line-height: 0; 
    width: 45%;
    border-radius: 2rem;
}

.features-container p {
    margin-bottom: 3rem;
    font-size:var(--text-h5);
}


/* ------ SEARCH & BUILT SECTION ------ */

.search_built-main-heading {
    text-align: center;
}

.search_built-sub-heading {
    text-align: center;
}

.search_built-container {
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
}

.search_built-imgcaption{
    font-size: var(--text-paragraph);
}

.search_built-container ul li {
    margin: 0;
    background: url("../images/icon.png") 25px center no-repeat;
    background-size: 25px; background-position-y: 15px; 
    padding: 8px 0 8px 68px;
    display: block;
    margin:0 0 5px 0;
    font-size: var(--text-h5);
    line-height: var(--line-height-tight);
}

.search_built-container h3{
    line-height: var(--line-height-tight);
    letter-spacing: normal;
}

.search_built-headings {
    margin-bottom: 2rem;
}

.search_built-blueprint-img {
    max-width: 900px;
    line-height: 0; 
    width: 100%;
    margin-top: 4rem;
    border: 0.1rem solid #ccc;
    border-radius: 2rem; 
    border: 0.1rem solid #2c3e50;
    padding: 1rem;
    background-color: #f4f9ff; /* Very light "blueprint" blue */
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
    margin-bottom:2.5rem;
}

.search_built-blueprint-imgcaption{
    font-size: var(--text-paragraph);
    margin-bottom: 4rem;
    text-align: center;
}

.search_built-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2 images side-by-side */
    gap: 2rem; /* That's 12px in your 6px base */
    margin-top: 5rem; /* 30px spacing */
    justify-items:center;
    padding: 0 1rem 0 1rem;
}

.search_built-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.search_built-item img {
    width: 100%;
    max-width: 90%;
    border-radius: 1.5rem; /* 9px rounded corners */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.search_built-grid1 {
    display: grid;
    grid-template-columns: 1fr; /* One single column */
    justify-items: center;      /* Centers all images horizontally */
    margin-top: 4rem;
    margin-bottom: 4rem;
     padding: 0 1rem 0 1rem;
}

.search_built-grid1 img {
    width: 100%;
    max-width: 100%;           /* 700px */
    display: block;             /* Removes ghost gaps */
    border-left: 0.1rem solid #ccc;
    border-right: 0.1rem solid #ccc;
}

.search_built-img-top {
    border-top: 0.1rem solid #ccc;
    border-radius: 2rem 2rem 0 0;
}

.search_built-img-mid {
    border-top: 0.1rem solid #ccc; /* Only top border to avoid doubling with Img1 bottom */
}

.search_built-img-bot {
    border-top: 0.1rem solid #ccc;
    border-bottom: 0.1rem solid #ccc;
    border-radius: 0 0 2rem 2rem;
}







/* ------ CTA SECTION ------ */

.heading.cta {
    text-align: center;
}

.cta-sub-heading {
    text-align: center;
    color: var(--tertiary-base);
    margin-bottom: 3rem;
}

.cta-container {
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
}

.cta-img {
    max-width: 100%;
    line-height: 0; 
    width: 85%;
    height: auto;
    padding: 2rem;
}

.cta-btn-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.cta-trust-badge{
    display: flex;
    align-items: center;
    max-width: 100%;
}

.cta-trust-badge img{
    width: 50%;
    
}

.badge-icon svg {
    width: 45px;
    height: 45px;
    color: #28a745; /* This now fills the shield because of fill="currentColor" */
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1)); /* Adds subtle depth */
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: #fffdf5; /* Very subtle warm gold tint */
    border: 2px solid #d4af37; /* Metallic Gold border */
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    max-width: 500px; /* Slightly wider to accommodate larger font */
    margin: 3rem auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15); /* Soft gold glow */
}

.badge-icon svg {
    width: 60px;
    height: 60px;
    color: #b8860b; /* Darker "Dark Goldenrod" for better contrast */
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.1));
}

.badge-text strong {
    font-size: 2.2rem; /* Big and bold */
    color: #4a3c00; /* Deep golden-brown text instead of harsh black */
    line-height: 1.1;
    display: block;
    margin-bottom: 0.3rem;
}

.badge-text span {
    font-size: 1.6rem;
    color: #7a6a35; /* Muted gold-brown */
    font-weight: 500;
    text-transform: uppercase; /* Adds a bit of "official" flair */
    letter-spacing: 0.5px;
}

/* If you increase the text, you should increase the icon to match */
.badge-icon svg {
    width: 55px;  /* Increased from 45px */
    height: 55px;
}
/* ------ FOOTER ------ */

.footer-section {
    display:block;
    background-color:rgb(255, 249, 233);   
    border-top: 1px solid #ddd; 
}

.container.footer{
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    text-align: center; 
    padding: 8rem 3rem;
}

.footer-disclaimer{
    display: flex;
    flex-direction: column;
    text-align: left; 
}

.footer-disclaimer.margin{
    margin-bottom: 3rem;
}

.social-icons-container {
    display: flex;
    gap: 1.5rem;
}

.footer-links-container {
    display: flex;
    gap: 1rem;
}

.footer-links-container ul{
    display: flex;
    gap: 2rem;
}
.social-icons {
    width: 20px;
}

.heart-icon {
    color: var(--secondary-base);
}

/* XS - PHONE PORTRAINT:  < 576px */

@media (min-width: 544px) {
    /* 530px / 16px = 34rem */
    /* 34rem x 16px = 544px */

    html {
        font-size: 43.75%;
        /* 7px / 16px = 43.75% */
    }

    .hero-heading-break {
        display: none;
    }

    .hero-section {
        height: auto;
    }

    .features-grid-container {
        grid-template-columns: 1fr;
    }

    .feature-img-swap-order {
        grid-row: auto;
        grid-column: auto; 
    }

    .cta-card {
        padding: 8rem 6rem;
    }
}

/* SM - PHONE LANDSCAPE: 576px - 768px */

@media (min-width: 688px) {
    /* 680px / 16px = 43rem */
    /* 43rem x 16px = 688px */

    html {
        font-size: 50%;
        /* 8px / 16px = 50% */
    }

    .cta-card {
        padding: 8rem 16rem;
    }

    .features-grid-container {
        row-gap: 5rem;
        column-gap: 0.5rem;
    }

    .reviews-grid-container{
        grid-template-columns: 1fr 1fr;
    }

}


/* MD - TABLETS: 768px - 1024px */

@media (min-width: 816px) {
    /* 815px / 16px = 51rem */
    /* 51rem x 16px = 816px */

    html {
        font-size: 56.25%;
        /* 9px / 16px = 56.25% */
    }

    .proof-flex-row {
        flex-direction: row; 
        gap: 5rem;
        align-items: initial;
        justify-content: center;
     }
    
    .proof-ted-bio-text {
        flex: 0 0 60%; /* Text takes up the remaining space */
    }

    .proof-ted-profile-card {
        flex: 0 0 30%; /* This is your 1/3 ratio */
        max-width: 28rem; /* Keeps it from getting too big on Desktop */
    }
    .proof-flex-row .proof-img.narrow {
        flex: 0 0 40%; /* Image takes up 40% of the row width */
    }

    .proof-img.narrow img{
        width: 90%; 
    }

    .features-row, .features-row.reverse {
        flex-direction: row;
        text-align: center;
        gap: 4rem;
        align-items:center;
    }

    /* This flips the layout for the "reverse" class */
    .features-row.reverse {
        flex-direction: row-reverse;
    }

    .features-image {
        flex: 0 0 40%;       /* Image stays exactly 40% of the row */
    }

    .search_built-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images side-by-side */
    }
    
    .search_built-item img {
        max-width: 100%; /* Let them fill the grid columns on desktop */
    }
}

/* LG - SMALL LAPTOPS: 1024px - 1280px */

@media (min-width: 1152px) {
    /* 1150px / 16px = 72rem */
    /* 72rem x 16px = 1152px */

    html {
        font-size: 62.5%;
        /* 10px / 16px = 62.5% */
    }

    .features-grid-container {
        column-gap: 2rem;
    }

    .cta-section {
        margin-bottom: 8rem;
    }
}






