/* Define CSS variables colors and debut*/
:root {

    /* debugs */
    --debugRed: 4px solid red;
    --debugGreen: 4px solid green;
    --debugBlue: 4px solid Blue;
    --debugYellow: 4px solid yellow;



    --darkBlue: #0078c8;
    --midBlue: #13B5EA;
    --lightBlue: #BBF3FD;
    --greenHighlight: #50DCAA;
    --lightGreen: #AEFFE0;
    --pinkHighlite: #db52d8;
    --darkText: #172C40;
    --lightText: #ECF2F6;
    --headerHeight: 120px;
    --yellowHightlight: yellow;
    --lightYellow: #FFFBA9;


    /* gradient bg */

    --lightBlueGradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, var(--lightBlue) 100%);

    --lightGreenGradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, var(--lightGreen) 100%);

    --lightYellowGradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, var(--lightYellow) 100%);

    --DarkBlueGradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, var(--darkBlue) 100%);

    --DarkGreenGradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, var(--greenHighlight) 100%);

    --DarkPinkGradient: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, var(--pinkHighlite) 100%);

    /* style */
    --globalBorder: 4px;
    --globalPadding: 5%;
}






/* Resets */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




/* general links and text tags */

img{
    width: 100%;
}

a {
    color: var(--darkText);
    text-decoration: none;
}

li {
    list-style: none;
}

/* font styles */
p {

    font-size: 1rem;
}

h1 {

    font-size: 4rem;
    font-weight: 800;
           line-height: 4rem;


}

h2{

    
    font-size: 3rem;
    font-weight: 600;
           line-height: 4rem;

}
h3 {
    font-size: 2rem;
    font-weight: 800;
}

h4 {
    font-size: 1.5rem;
    font-weight: 800;
}

h5 {
    font-size: 1rem;
    font-weight: 400;
}

.paraSmall {
    font-size: .8rem;
}

.credits {
    font-size: .7rem;
}

.bold{
    font-weight: 600;
}

.light{
    font-weight: 300;
}


/* General reset and styling for the body */
body {
    overflow-x: hidden;
    font-family: "Lato", serif;
    position: relative;
    color: var(--darkText);
    background-color: var(--lightText);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;




}


/* Header styling Desktop*/
header.siteHeader {
    position: relative;

    max-width: 1920px;
    width: 100%;

    color: var(--darkText);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-left: var(--globalPadding);
    padding-right: var(--globalPadding);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* logo holder */
.logoHolder {

    display: inline-block;
    text-align: center;


}

.logoHolder svg {
    width: 76px;
}


/* nav */
.mainNav {
    display: flex;
    align-items: center;
    gap: 32px;
}

header nav ul {
    display: flex;
    gap: 2rem;
}

header nav ul li {
    /* no changes needed */
}

header nav ul li a {
    position: relative;
    /* anchors the ::after underline */
    display: inline-block;
    padding-bottom: 4px;
    /* gives the underline room to sit below the text */
    text-decoration: none;
}

/* the underline itself, hidden by default via scaleX(0) */
header nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--midBlue);

    transform: scaleX(0);
    transform-origin: center;
    /* grows from the middle outward */
    transition: transform 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a:focus-visible::after {
    transform: scaleX(1);
}

/* active (pressed/clicked) state */
header nav ul li a:active {
    color: var(--midBlue);
}


.hamburgerBtn {
    display: none;
}


/* menu this is the ul id not the class main menu */
/* for the drop down to work */

#mainMenu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#mainMenu li {
    position: relative;
}

#mainMenu a {
    display: block;
    text-decoration: none;
}


#mainMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    margin: 0;
    padding: 10px 0;

    list-style: none;

    background: white;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}



#mainMenu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


#mainMenu .sub-menu a {
    padding: 10px 20px;
    white-space: nowrap;
}

#mainMenu .sub-menu a:hover {
    background: #f2f2f2;
}


/* ----------------------------- */
/* Mobile */
/* ----------------------------- */
/* ==========================================================
   MOBILE NAVIGATION
   ========================================================== */

@media (max-width: 880px) {

    /* Hide desktop CTA */
    .cta2 {
        display: none;
    }

    /* Show hamburger */
    .hamburgerBtn {
        display: flex;
        align-items: center;
        justify-content: center;

        background: none;
        border: 0;
        padding: 0;

        cursor: pointer;

        color: var(--darkText);
        font-size: 2rem;

        position: relative;
        z-index: 1001;
    }


    /* ------------------------------------------------------
       Main menu
       Same UL used on desktop and mobile
       ------------------------------------------------------ */

    #mainMenu {
        display: flex;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        flex-direction: column;
        gap: 0;

        margin: 0;
        padding: 1.5rem 5%;

        background: white;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;

        z-index: 1000;
    }


    /* Menu OPEN */
    #mainMenu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }


    /* Individual menu items */
    #mainMenu > li {
        width: 100%;
    }


    #mainMenu > li > a {
        display: block;
        width: 100%;

        padding: 15px 0;
    }


    /* ------------------------------------------------------
       Mobile dropdown
       ------------------------------------------------------ */

    #mainMenu .sub-menu {
        position: static;

        width: 100%;
        min-width: 0;

        display: block;

        margin: 0;
        padding: 0 0 0 1rem;

        background: transparent;

        opacity: 1;
        visibility: visible;
        transform: none;

        transition: none;
    }


    #mainMenu .sub-menu li {
        width: 100%;
    }


    #mainMenu .sub-menu a {
        padding: 10px 0;
    }


    /* Don't use the desktop hover dropdown behaviour on mobile */
    #mainMenu .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }


    /* Optional: remove desktop underline animation on mobile */
    #mainMenu a::after {
        display: none;
    }

}


/* ==========================================================
   DESKTOP
   ========================================================== */

@media (min-width: 881px) {

    .hamburgerBtn {
        display: none;
    }

}


/* /////////// Buttons////////// */

/* general buttons */
.button {

    padding: 16px 32px;
    border: none;
    cursor: pointer;
    border-radius: 1px;

}


.fa-solid,
.fa-brands,
.fa-regular {
    margin-right: 8px;

}


.fa-circle-info {
    color: var(--lightText)
}



/* cards buttons */
.cta2 {
    margin-top: auto;
    background-color: var(--midBlue);
    width: 100%;
    color: var(--lightText);
    border-radius: var(--globalBorder);

    transition: background-color 0.3s ease;
}

.cta2:hover,
.cta2:focus-visible {
    background-color: var(--greenHighlight);
}

.cta2:active {
    background-color: var(--darkBlue);
}




/* cards buttons */
/* Card button */
.cardsBtn {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 20px;

    background-color: var(--midBlue);
    color: var(--lightText);

    border-radius: var(--globalBorder);
    text-decoration: none;

    transition: background-color 0.3s ease;
}

.cardsBtn:hover,
.cardsBtn:focus-visible {
    background-color: var(--greenHighlight);
    color: var(--lightText);
}

.cardsBtn:active {
    background-color: var(--darkBlue);
}

.cardsBtn:active {
    background-color: var(--darkBlue);
}



/* //////////////sections//////////// */

/* heroPageSection */

section.heroPageSection {
    position: relative;
    width: 100%;
    height:240px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--lightText);

    background-image: url("assets/images/pageBannerBG.svg");
    background-position: left center;
    background-repeat: no-repeat;

    background-size: cover;
     padding: var(--globalPadding);
}

.heroPageContent {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
   
    flex-basis: 50%;
 
    height: 100%;
    width: 100%;
    /* border: var(--debugYellow); */
}

section.heroPageProductSection {
    position: relative;
    width: 100%;
    
height: 60px;


    background-image: url("assets/images/productHeroBG.svg");
    background-position: top center;
    background-repeat: no-repeat;

    background-size: cover;
    
 

}





/* Hero Start */
section.heroSection {
    position: relative;
    height: 80vh;
    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--lightText);
}


/* content sits above the SVG */
.heroContent {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    
    gap: 16px;
    background-image:url(assets/images/hero_content_bg.svg) ;
    background-repeat:no-repeat;
background-position: center center;
background-size: cover;


    padding: 5% 5%;
    flex-basis: 50%;
    background-color: var(--darkText);
    height: 100%;
    width: 100%;
    /* border: var(--debugYellow); */
}

.heroImage{
    display: flex;
    align-items: last baseline;
    justify-content: center;
    flex-basis: 50%;
    width: 50%;
  height: 100%;
    z-index: 5;
    
}

.heroImage img{

    width:500px;
}


.heroCtaGroup {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
    justify-content: start;
    flex-wrap: nowrap;
    
}


/* SVG stays as the absolute-positioned background layer */
.divSvgHolder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#bannerSVG {
    width: 100%;
    height: 100%;
    display: block;
}



/* shared base for both hero buttons */
.heroBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


/* solid variant */
.heroBtnSolid {
    background-color: var(--midBlue);
    color: var(--lightText);
    border: 2px solid var(--midBlue);
}


.heroBtnSolid:hover,
.heroBtnSolid:focus-visible {
    background-color: var(--greenHighlight);
    border-color: var(--greenHighlight);
}


.heroBtnSolid:active {
    background-color: var(--darkBlue);
    border-color: var(--darkBlue);
}


/* outline variant */
.heroBtnOutline {
    background-color: transparent;
    color: var(--lightText);
    border: 2px solid var(--lightText);
}


.heroBtnOutline:hover,
.heroBtnOutline:focus-visible {
    background-color: var(--greenHighlight);
    border-color: var(--greenHighlight);
    color: var(--darkText);
}


.heroBtnOutline:active {
    background-color: var(--darkBlue);
    border-color: var(--darkBlue);
    color: var(--lightText);
}




/* Mobile — stack CTAs and make them equal width */
@media only screen and (max-width: 880px) {

section.heroSection {
   
    flex-direction: column;
     height:105vh;
     flex-direction: column-reverse;
}

.heroImage img{

    width:300px;
}

    

    .heroCtaGroup {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .heroBtn {
        width: 100%;
        text-align: center;
    }

}



/* CARDS SECTION START */
section.cardsSection {
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .......Cards tile How We Help Your Business header styling.......... */
.cardsHeader {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* container for all 3 cards desktop row */
.cardsContainer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: start;
    gap: 1rem;
    height: 100%;
}

/* cards on mobile */
@media only screen and (max-width: 880px) {
    .cardsContainer {
        flex-direction: column;
        gap: 1rem;
    }
}

.cards {
    width: 100%;
    display: flex;
    align-items: stretch;
}

/* General Styling of all 3 Inner cards inner div */
.cardsInner {
    padding: clamp(24px, 6vw, 48px);
    width: 100%;
    max-width: 600px;

    border-radius: 2px;
    background: #ecf2f6;
    box-shadow: 6px 6px 23px #c9ced1, -6px -6px 23px #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 24px);

   
}


.cardIcon{
    width: 100%;
    padding: var(--globalPadding);
}



/* general card elements styles */
.cardIcon {
    width: 50%;
    display: block;
    object-fit: contain;
    align-self: center;
}

/* All CARDs ICON Colour color all three icons */
.cardIcon path {
    stroke: var(--midBlue);
}

/* these are inside the card to give them control */
.cardsHeaderAndText {
    flex-grow: 1;
   
}






/* ...........Call-to-action styling.......... */
section.callToActionSection {

    height: 100%;
    max-width: 1920px;


  


}

/* call to actin innder with box shadow and content */
.callToActionInner {

    width: 100%;
    display: flex;
    flex-direction: row;

    color: var(--darkText);

 
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #ecf2f6;
    -webkit-box-shadow: 6px 6px 23px #c9ced1, -6px -6px 23px #ffffff;
    box-shadow: 6px 6px 23px #c9ced1, -6px -6px 23px #ffffff;
    width: 100%;

    align-items: center;

    gap: 16px;
    padding: 10% 10%;

    background: rgb(0, 120, 200);
    background: radial-gradient(circle, var(--lightGreen) 21%, rgba(187, 243, 253, 0.5858718487394958) 86%, rgba(255, 255, 255, 0) 100%);

}
        /* calltoActioninner on mobile */
        @media only screen and (max-width: 880px) {

            .callToActionInner {
                flex-direction: column;
            
        }

        .GetAQuoteTextPanel{
            text-align: center;
            justify-content: center;
        }

        .instantQuoteH3{
            align-self: center;
        }
    }  

/* quote icon holder to contain the svg */

.letsTalkSvgIconHolder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}


/* actual svg it selfquote svg inside */
.letsTalkSvgIconHolder svg {
    width: 100%;
    display: block;
    object-fit: cover;

}

.GetAQuoteTextPanel {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 8px;

}


/* colour for the instant quote svg icon */
.getQuoteIcon path {
    stroke: var(--lightText);
}


/* "Instant Quote" style for the h3 with green border on desktop */
.instantQuoteH3 {
    color: var(--lightText);
    border: 2px solid var(--greenHighlight);
    padding: 8px 16px;
    margin-bottom: 8px;
    display: inline-block;
    border-radius: var(--globalBorder);
    background-color: var(--greenHighlight);


}




/* ==========================================================
   Media Text Section
   ========================================================== */

.mediaTextSection {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}



/* each row */
.mediaTextRow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    min-height: 100%;
}

/* reverse modifier — swaps image to left, content to right */
.mediaTextRow.reverse {
    flex-direction: row-reverse;
}

/* content and image both take equal halves */
.mediaTextContent,
.mediaTextImage {
    flex-basis: 50%;
    width: 50%;
    box-sizing: border-box;
}


/* arrow that appears in the packages and product intro*/

.mediaTextContent h1 {
    display: flex;
    align-items: center;
    gap:.5rem;

   
}

.heroArrowRight {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.heroArrowRight img {
    display: block;
    width: 48px; /* adjust to suit */
    height: auto;
}

.justMediaTextContent {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   gap:1rem;
    padding-top: 2rem;
    padding-bottom: 2rem

}



.justMediaTextContent img{
width: 30%;
aspect-ratio: 1/1;align-self: center
}


/* this is the blue down arrow and and tile on the packages pages */
.moreOnTitle{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

.moreOnTitle img{

width: 10%;
}

/* justMediaText for the services and package on mobile */
@media only screen and (max-width: 880px) {
    .justMediaTextContent {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(32px, 6vw, 80px);

}



.justMediaTextContent img{
width: 30%;
aspect-ratio: 1/1;align-self: center
}
    


}

/* content panel */
.mediaTextContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(32px, 6vw, 80px);
}

.mediaTextContent h3 {
    font-weight: 700;
}

.mediaTextContent p {
    max-width: 55ch;
}

/* image panel */
.mediaTextImage {
    overflow: hidden;
}

.mediaTextImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================
   CTA button — same styling/hover pattern as .cardsBtn / .heroBtn
   ========================================================== */

.mediaTextBtn {
    background-color: var(--midBlue);
    color: var(--lightText);
    border: 2px solid var(--midBlue);
    border-radius: var(--globalBorder);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mediaTextBtn:hover,
.mediaTextBtn:focus-visible {
    background-color: var(--greenHighlight);
    border-color: var(--greenHighlight);
    color: var(--darkText);
}

.mediaTextBtn:active {
    background-color: var(--darkBlue);
    border-color: var(--darkBlue);
    color: var(--lightText);
}

/* ==========================================================
   Theme variants (background / text colour combinations)
   These map directly to the 3 options requested:
   1. dark text on light text  (default)
   2. dark text on light blue
   3. light text on dark text
   ========================================================== */

/* Default — dark text on light text */
.mediaTextRow.theme-light {
    background-color: var(--lightText);
    color: var(--darkText);
}

/* Dark text on light blue */
.mediaTextRow.theme-lightblue {
    background-color: var(--lightBlue);
    color: var(--darkText);
}

/* Light text on dark text */
.mediaTextRow.theme-dark {
    background-color: var(--darkText);
    color: var(--lightText);
}

.mediaTextRow.theme-lightBlue {
    background-color: var(--lightBlue);
    color: var(--darkText);
}

.mediaTextRow.theme-lightGreen {
    background-color: var(--lightGreen);
    color: var(--darkText);
}

.mediaTextRow.theme-lightYellow {
    background-color: var(--lightYellow);
    color: var(--darkText);
}

.mediaTextRow.theme-darkGreen {
    background-color: var(--greenHighlight);
    color: var(--lightText);
}

.mediaTextRow.theme-darkBlue {
    background-color: var(--darkBlue);
    color: var(--lightText);
}


.mediaTextRow.theme-darkPink {
    background-color: var(--pinkHighlite);
    color: var(--lightText);
}



/* ==========================================================
   PACKAGE DETAILS / WHAT'S INCLUDED
   ========================================================== */

.packageDetailsSection {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(40px, var(--globalPadding), 80px) var(--globalPadding);

    color: var(--darkText);
}


/* ----------------------------------------------------------
   Top section
   ---------------------------------------------------------- */

.packageDetailsTop {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}


/* ----------------------------------------------------------
   What's Included
   ---------------------------------------------------------- */

.packageIncluded {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.packageIncluded > h4 {
    margin-bottom: 24px;
}


/* Bullet list */

.packageIncludedList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.packageIncludedList li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    font-size: 1rem;
    line-height: 1.4;
}

.packageIncludedList li > span:last-child {
    flex: 1;
}

.packageIncludedList strong {
    font-weight: 700;
}


/* Blue arrow bullet */

.packageBullet {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

  
    border-radius: 50%;

    overflow: hidden;
}

.packageBullet img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}


/* ----------------------------------------------------------
   FAQ panel
   ---------------------------------------------------------- */

.packageFaq {
    width: 50%;
    max-width: 520px;

    padding: clamp(1rem, 3vw, 32px);

    background: var(--lightYellow);


    display: flex;
    flex-direction: column;
  gap: 1rem
}

.packageFaq h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;

    color: var(--darkText);

    margin-bottom: 4px;
}

.faqItem {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.faqItem h5 {
    font-size: .9rem;
    line-height: 1.2;
    font-weight: 700;
}

.faqItem p {
    font-size: .8rem;
    line-height: 1.25;
}


/* ----------------------------------------------------------
   Bottom onboarding message
   ---------------------------------------------------------- */

.packageOnboarding {
    width: 100%;
    margin: clamp(1rem, var(--globalPadding), 80px) auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 1rem;
}


/* Large blue circular arrow */

.packageOnboardingIcon {
    width:128px;
    height:128px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

  
}

.packageOnboardingIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Bottom text */

.packageOnboardingText {
    flex: 1;
}

.packageOnboardingText h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.packageOnboardingText ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 18px;
}

.packageOnboardingText li {
    list-style: disc;
    font-size: .9rem;
    line-height: 1.35;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media only screen and (max-width: 880px) {

    .packageDetailsTop {
        flex-direction: column;
        gap: 40px;
    }

    .packageFaq {
        width: 100%;
        max-width: none;
    }

    .packageOnboarding {
        width: 100%;
        align-items: flex-start;
    }

}


@media only screen and (max-width: 600px) {

    .packageDetailsSection {
        padding: 40px 5%;
    }

    .packageIncludedList li {
        font-size: .9rem;
    }

    .packageBullet {
        width: 34px;
        height: 34px;
    }

    .packageOnboarding {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .packageOnboardingText ul {
        text-align: left;
    }

}











/*  form version of the content */
/* ==========================================================
   Media Form Section — shares layout pattern with mediaTextSection
   ========================================================== */

.mediaFormSection {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.mediaFormRow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    min-height: 480px;
}

/* reverse modifier — swaps form to right, image to left */
.mediaFormRow.reverse {
    flex-direction: row-reverse;
}

.mediaFormContent,
.mediaFormImage {
    flex-basis: 50%;
    width: 50%;
    box-sizing: border-box;
}

/* content panel holding heading, subheading, form, phone link */
.mediaFormContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: clamp(32px, 6vw, 80px);
}

.mediaFormContent h3 {
    font-weight: 400;
}

/* image panel — identical pattern to mediaTextImage */
.mediaFormImage {
    overflow: hidden;
}

.mediaFormImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================
   Form styling
   ========================================================== */

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.contactForm input,
.contactForm textarea {
    background-color: var(--lightBlue);
    border: none;
    border-radius: 2px;
    padding: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--darkText);
    resize: none;
    transition: box-shadow 0.3s ease;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
    color: var(--darkText);
    opacity: 0.6;
}

.contactForm input:focus,
.contactForm textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--midBlue);
}

.contactForm textarea {
    min-height: 140px;
}

/* submit button reuses the same hover/active pattern as .cardsBtn / .mediaTextBtn */
.contactForm .mediaTextBtn {
    align-self: flex-start;
    background-color: var(--midBlue);
    color: var(--lightText);
    border: 2px solid var(--midBlue);
    border-radius: var(--globalBorder);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contactForm .mediaTextBtn:hover,
.contactForm .mediaTextBtn:focus-visible {
    background-color: var(--greenHighlight);
    border-color: var(--greenHighlight);
    color: var(--darkText);
}

.contactForm .mediaTextBtn:active {
    background-color: var(--darkBlue);
    border-color: var(--darkBlue);
    color: var(--lightText);
}

/* ==========================================================
   Phone link
   ========================================================== */

.phoneLink {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--darkBlue);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phoneLink i {
    font-size: 1.1rem;
}

.phoneLink:hover,
.phoneLink:focus-visible {
    color: var(--greenHighlight);
}

/* ==========================================================
   Theme variants — same 3 options as mediaTextSection
   ========================================================== */

.mediaFormRow.theme-light {
    background-color: var(--lightText);
    color: var(--darkText);
}

.mediaFormRow.theme-lightblue {
    background-color: var(--lightBlue);
    color: var(--darkText);
}

.mediaFormRow.theme-dark {
    background-color: var(--darkText);
    color: var(--lightText);
}

/* on the dark theme, phone link needs to stay legible against dark bg */
.mediaFormRow.theme-dark .phoneLink {
    color: var(--lightBlue);
}

/* ==========================================================
   Responsive — stack under 880px
   ========================================================== */

@media only screen and (max-width: 880px) {

    .mediaFormRow,
    .mediaFormRow.reverse {
        flex-direction: column;
    }

    .mediaFormContent,
    .mediaFormImage {
        width: 100%;
        flex-basis: auto;
    }

    .mediaFormImage {
        height: 320px;
    }

    .mediaFormContent {
        align-items: center;
        text-align: center;
        padding: clamp(24px, 8vw, 48px);
    }

    .contactForm {
        max-width: 100%;
        align-items: center;
 
    }

    .contactForm input,
    .contactForm textArea{
        width: 100%;
    }


    .contactForm .mediaTextBtn {
        align-self: center;
    }

}







/* ==========================================================
   Responsive — stack under 880px, image always on top,
   content underneath, regardless of reverse setting
   ========================================================== */

@media only screen and (max-width: 880px) {

    .mediaTextRow,
    .mediaTextRow.reverse {
        flex-direction: column;
    }

 
    
    .mediaTextContent,
    .mediaTextImage {
        width: 100%;
        flex-basis: auto;
    }

    .mediaTextImage {
        height: 320px;
    }

    
    .mediaTextContent {
        align-items: center;
        text-align: center;
        padding: clamp(24px, 8vw, 48px);
    }

    .mediaTextContent p {
        max-width: 100%;
    }

}





/* desk top Footer styling full with using the "foot" grid area name*/
.siteFooter {
    /* grid-area: foot; */
    background-color: var(--darkText);
    color: var(--lightText);
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3%;
    padding-bottom: 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;



}


section.prefooter{
    height: 100%;
    width: 100% ;
     padding-left: 5%;
    padding-right: 5%;

    display: flex;
    align-items: center;
    flex-direction: column;

  background: linear-gradient(to top, #BBF3FD 0%, transparent 100%);
  
    
}

.logosContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
}

.footerLogo {
    width: 100px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footerLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#footerImg{
    width: 50%;
    margin: -2rem;
    z-index: 1;
   
}


@media only screen and (max-width: 880px) {
    #footerImg{
    width: 50%;
    margin: -1rem;
    z-index: 1;
   
}

}

.siteFooter .footerInner {

    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    /* self-centers regardless of parent flex settings */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    height: 100%;

}

    @media only screen and (max-width: 880px) {

        .siteFooter .footerInner{
            flex-direction: column;
            text-align: center;
        }

    }

/* small description text under logo text in the first colume*/
.siteFooter .footerInner .footerDescriptionText {
    margin-top: 8px;
    font-size: .8rem;

}

.siteFooter .footerLinks ul li a {
    color: var(--lightText);
    font-size: .8rem;
    font-weight: 400;
}


/* footer columes desk top */
.columes {

    width: 100%;
    padding-right: 5%;


}



footer h5 {
    color: var(--yellowHightlight);
    margin-bottom: 8px;

}


.endCreditsDiv {
    text-align: center;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;


}






/* .............................. */

/* Laptop */
@media only screen and (max-width: 1320px) {

    h1 {

        font-size: 4rem;
        font-weight: 800;
        

    }
}


/* .............................. */

/* Tablet */

@media only screen and (max-width: 1180px) {


    h1 {

        font-size: 3rem;
        font-weight: 800;

    }
}







/* ==========================================================
   Testimonials Section
   ========================================================== */

.testimonialsSection {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    
   
}

.swiper {
    width: 100%;
    max-width: 500px;
    padding-bottom: 48px; /* room for pagination dots below cards */
    overflow: visible;
}

/* keeps card heights consistent per-slide */
.swiper-slide {
    height: auto;
    display: flex;
}


.swiper {
    cursor: grab;
}

.swiper:active {
    cursor: grabbing;
}

.swiper-slide{
    transition:transform .35s ease, opacity .35s ease;
    opacity:.5;
    transform:scale(.9);
}

.swiper-slide-active{
    opacity:1;
    transform:scale(1);
}


.swiper-scrollbar {
    display: none;
}


/* ==========================================================
   Testimonial Card — reuses cardsInner's visual language
   ========================================================== */

.testimonialCard {
    width: 100%;
    padding: clamp(24px, 6vw, 48px);

    border-radius: 2px;
    background: #ecf2f6;
    box-shadow: 6px 6px 23px #c9ced1, -6px -6px 23px #ffffff;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 52%, rgba(187, 243, 253, 0.586) 100%);

   
}

.testimonialQuoteIcon {
    font-size: 1.5rem;
    color: var(--midBlue);
    line-height: 1;
}

.testimonialQuote {
    margin: 0;
    border: none;
}

.testimonialQuote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--darkText);
}

/* author footer */
.testimonialAuthor {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto; /* pushes author to bottom, matches cardsHeaderAndText flex-grow pattern */
 
    align-self: center;
}

.testimonialAvatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonialAuthorInfo {
    display: flex;
    flex-direction: column;
}

.testimonialName {
    font-weight: 700;
    color: var(--darkText);
}

.testimonialTitle {
    font-size: 0.85rem;
    color: var(--darkText);
    opacity: 0.7;
}

/* ==========================================================
   Swiper navigation/pagination colour overrides
   ========================================================== */

.swiper-button-prev,
.swiper-button-next {
    color: var(--midBlue);
}

.swiper-pagination-bullet-active {
    background: var(--midBlue);
}




