* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FFDE47; /* Vibrantly clean agency yellow */
    --dark-bg: #1A1A1A;       /* Deep charcoal for excellent contrast */
    --light-bg: #F9F9F9;      /* Clean off-white background */
    --text-main: #333333;     /* Readable dark text */
    --text-muted: #666666;    /* Secondary text label */
    --white: #FFFFFF;
}

body {
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Typography Helpers */
h1, h2, h3 {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em; /* Makes the bold text look sleek */
  color: #ffffff;
}

.highlight {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 2px 8px;
    border-radius: 4px;
}
.highlight-ani {
    animation: highlightAni 2s ease-in-out 2;
    animation-delay: 1s;
}
@keyframes highlightAni {
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Promotional banner */
.promotional-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fdde4c;
}
.promotional-banner-col {
    flex-basis: 100%;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', snas-serif;
    color: #000000;
    text-align: center;
    padding: 10px;
}
.promotional-banner .close {
    position: absolute;
float: right;
right: 10px;
top: 10px;
font-size: 16px;
color: #000000;
background-color: #fdde4c;
border: none;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: var(--dark-bg);
    background-color: #1c1c1c;
    background-color: #ffffff;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 999999;
    border-bottom: 1px solid #b3b3b3;
}
.nav-col-1 {
    flex-basis: 10%;
    text-align: left;
}
@media (max-width: 600px) {
    .nav-col-1 {
        flex-basis: 5%;
    }
}
.nav-col-2 {
    flex-basis: 70%;
}
@media (max-width: 600px) {
    .nav-col-2 {
        display: none;
    }
}
.nav-col-3 {
    flex-basis: 50%;
    text-align: right;
}
@media (max-width: 600px) {
    .nav-col-3 {
        flex-basis: 90%;
    }
}
.nav-col-3 .login {
 background-color: transparent;
border: 1px solid #265c2c;
padding: 9px 8%;
color: #265c2c;
text-decoration: none;
border-radius: 100px;
margin-right: 10px;
}
@media (max-width: 600px) {
    .nav-col-3 .login {
        font-size: 14px;
    }
}
.logo {
    font-family: 'Poppinx', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 1px;
    width: 100%;
    color: #000000;
    letter-spacing: -1px;
}
@media (max-width: 600px) {
    .logo {
        font-size: 1.2em;
    }
}
.logo a {
    text-decoration: none;
    color: #000000;
}

.logo span {
    color: var(--primary-color);
    color: #000000;
}

nav a {
    display: inline-block;
    color: var(--white);
    color: #6e6e6e;
    text-decoration: none;
    font-size: 0.95rem;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    margin-left: 30px;
    margin-right: 0px;
    font-family: 'Poppins', sans-serif;
    transition: .2s ease-in-out;
}

nav a:hover {
    color: #4daa5f;
    text-decoration: underline;
}

.nav-links {
    /*
    display: flex;
    list-style: none;
    align-items: center;
    */
}

.nav-icons {
    width: 35px;
}
.nav-icons:hover {
    animation: navIcons .2s ease-in-out;
}
@keyframes navIcons {
    50% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(4deg);
    }
}

.nav-links li {
    margin-left: 30px;
    text-align: center;
}

.nav-links a {
    color: var(--white);
    color: #626262;
    text-decoration: none;
    font-size: 0.95rem;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    color: #4daa5f;
    text-decoration: underline;
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--dark-bg) !important;
    padding: 10px 8%;
    border-radius: 100px;
    font-weight: 600;
    padding: 12p 8%;
color: #000000;
text-decoration: none;
transition: .2s ease-in-out;
}
@media (max-width: 600px) {
    .btn-nav {
        font-size: 14px;
        margin-right: 0;
    }
}

.btn-nav:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* Hero Section */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
    border-radius: 0 0 50px 50px;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.90) 10%, rgba(26, 26, 26, 0.50) 80%), url('../images/hero-003.png') no-repeat center center/cover;
    border-bottom: 8px solid var(--primary-color);
}

.hero-content {
    max-width: 800px;
    text-align: left;
    width: 50%;
    padding: 50px 20px;
}
@media (max-width: 600px) {
    .hero-content {
        width: 100%;
    }
}

.badge {
    background-color: rgba(255, 222, 71, 0.2);
    color: var(--primary-color);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .badge {
        color: #fdde4c;
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    width: 90%;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #CCCCCC;
    font-size: 22px;
margin-bottom: 10px;
letter-spacing: normal;
color: #ffffff;
line-height: 1.5;
}

.hero-btns a {
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 100px;
    font-weight: 600;
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 600px) {
    .btn-secondary {
        background-color: #ffffff;
        color: #000000 !important;
    }
}
.hero-button-subtext {
    display: block;
    font-size: 10px; 
    color: #ffffff;
    margin-left: 20px;
    margin-top: 10px;
}
@media (max-width: 600px) {
    .hero-button-subtext {
        
    }
}

.btn-primary {
    background-color: var(--primary-color);
    background-color: #35aa5e;
    color: var(--dark-bg);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

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

/* How It Works Section */
.how-it-works {
padding: 50px 8%;
text-align: center;
background-color: var(--white);
}

.how-it-works h2 {
    font-size: 2.8em;
margin-bottom: 15px;
color: var(--dark-bg);
font-family: 'Poppins', sans-serif;
font-weight: 400;
line-height: 1;
margin-bottom: 40px;
}
@media (max-width: 600px) {
    .how-it-works h2 {
        font-size: 2.5em;
    }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px 30px;
    /*
    background-color: #dedede;
    background-color: #c8efd6;
    background-color: #f1f0ec;*/
    border-radius: 8px;
    text-align: left;
    border-top: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.highlight-card {
    border-top-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 222, 71, 0.15);
}

.card-icon {
    width: 60%;
    font-size: 2.5rem;
    margin-bottom: 0;
    position: relative;
    float: right;
    z-index: 999995;
}
.card-icon:hover {
    
}
.card-icon-1 {
    animation: cardIconAni 3s infinite;
}
.card-icon-2 {
    animation: cardIconAni 3s infinite;
    animation-delay:  2s;
}
.card-icon-3 {
    animation: cardIconAni 3s infinite;
    animation-delay: 4s;
}
@keyframes cardIconAni {
    50% {
        top: 0;
    }
        75% {
            top: -20px;
        }
        100% {
            top: 0;
        }
    }

.card h3 {
    margin-bottom: 15px;
font-size: 2em;
font-weight: 600;
margin-bottom: 15px;
color: #000000;
color: #4daa5f;
line-height: 1;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Portfolio Slider */
/* Standalone Slider Layout Architecture */
.portfolio-slider-section {
    background-color: #FFFFFF; 
    color: #1A1A1A;
    padding: 50px 8%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.slider-viewport .portfolio-frame-dots {
    position: relative;
    background-color: #f3f3f3;
    text-align: left;
    width: 100%;
    padding: 20px;
}
   .portfolio-frame-dots .red-dot {
    display: inline-block;
        background-color: #9f2525;
        width: 15px;
        height: 15px;
        border-radius: 100px;
        margin-right: 5px;
    }
    .portfolio-frame-dots .yellow-dot {
        display: inline-block;
        background-color: #fdde4c;
        width: 15px;
        height: 15px;
        border-radius: 100px;
        margin-right: 5px;
    }
    .portfolio-frame-dots .green-dot {
        display: inline-block;
        background-color: #4daa5f;
        width: 15px;
        height: 15px;
        border-radius: 100px;
    }
    .portfolio-frame-dots .address-bar {
        display: inline-block;
        width: 80%;
        padding: 8px 8px 8px 20px;
        border: 1px solid #ffffff;
        border-radius: 100px;
        color: #969696;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 300;
        background-color: #e6e6e6;
    }
    .portfolio-frame-dots .search-btn {
        font-size: 20px;
        position: relative;
        float: right;
        right: 0;
        top: 0px;
    }


.slider-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.portfolio-badge {
    background-color: rgba(255, 222, 71, 0.2);
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.portfolio-slider-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-highlight {
    display: inline-block;
    background-color: #FFDE47; 
    padding: 2px 8px;
    border-radius: 4px;
    transform: rotate(0deg);
}

.portfolio-subtitle {
    color: #666666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Viewport and Track Frame configurations */
.slider-viewport {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.slides-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.portfolio-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #1A1A1A;
    border: 20px solid #f1f0ec;
}

.portfolio-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Interactive Text Hover Overlays */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,26,26,0.9));
    color: #FFFFFF;
    padding: 40px 30px 30px;
    text-align: left;
}

.slide-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.slide-overlay p {
    color: #FFDE47;
    font-size: 0.95rem;
}

.slide-overlay a {
    color: #FFDE47;
    font-size: 0.95rem;
    text-decoration: underline;
}

/* Navigation Element Vectors */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 26, 26, 0.7);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background-color: #FFDE47;
    color: #1A1A1A;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dot Bullet Element Indicator System */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #DDDDDD;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    outline: none;
}

.dot.active {
    background-color: #FFDE47; /* Highlights color when corresponding item runs */
    transform: scale(1.2);
}

/* Mobile Configurations */
@media (max-width: 768px) {
    .portfolio-slider-section { padding: 60px 5%; }
    .portfolio-slider-section h2 { font-size: 2rem; }
    .nav-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .prev { left: 10px; }
    .next { right: 10px; }
    .slide-overlay { padding: 20px 15px; }
    .slide-overlay h3 { font-size: 1.2rem; }
}

/* Services Section */
/* Standalone Services Section Layout */
.services-included {
    /*background-color: #1A1A1A; 
    background-color: #dde9ff;*/
    color: #FFFFFF;
    padding: 100px 8%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.servicesBanana {
    position: relative;
    float: right;
    transition: .2s ease-in-out;
    top: 0;
right: 0x;
bottom: 0;
width: 30%;
}
.servicesBanana:hover {
   /* transform: rotate(-8deg);*/
}

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

.services-badge {
    background-color: rgba(255, 222, 71, 0.15);
    color: #FFDE47; 
    color: #000000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.services-included h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #000000;
}

.services-highlight {
    display: inline-block;
    background-color: #FFDE47;
    color: #1A1A1A;
    padding: 2px 8px;
    border-radius: 4px;
    transform: rotate(0deg);
}

.services-subtitle {
    color: #CCCCCC;
    color: #000000;
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Services 3-Column Grid Configuration */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: #262626; 
    background-color: #383838;
    background-color: #35aa5e;
    background-color: #f1f0ec;
    padding: 40px 30px;
    border-radius: 8px;
    border: 0px solid #35aa5e;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: #FFDE47;
    border-color: #135c2c;
    /*
    box-shadow: 0 10px 25px rgba(255, 222, 71, 0.05);
    box-shadow:  0 0 10px rgba(255, 222, 71, 0.2),
  0 0 20px rgba(255, 222, 71, 0.4),
  0 0 40px rgba(255, 222, 71, 0.6);*/
}

.service-box .tag {
    display: inline-block;
    width: fit-content;
    padding: 2px 6px;
    background-color:#fdde4c;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    font-style: uppercase;
    margin-bottom: 10px;
    border-radius: 8px;
}

.service-box .teal {
    background-color: teal;
    color: #ffffff;
}

.service-box .purple {
    background-color: rgb(45, 0, 128);
    color: #ffffff;
}

.service-box .brown {
    background-color: rgb(128, 100, 0);
    color: #ffffff;
}

.service-box .pink {
    background-color: rgb(85, 42, 83);
    color: #ffffff;
}

.service-icon-wrapper {
    background-color: rgba(255, 222, 71, 0.1);
    background-color: #135c2c;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 0px solid rgba(255, 222, 71, 0.2);
    float: right;
position: relative;
top: -50px;
}

.service-icon {
    font-size: 1.8rem;
}

.service-box h3 {
    font-size: 2em;
font-weight: 600;
margin-bottom: 15px;
color: #000000;
color: #4daa5f;
color: #404040;
line-height: 1;
}

.service-box p {
    color: #696969;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Responsiveness Viewports */
@media (max-width: 768px) {
    .services-included {
        padding: 60px 5%;
    }
    .services-included h2 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-box {
        padding: 30px 20px;
    }
}


/* Pricing */
/* Pricing Section Base Typography & Layout */
.agency-pricing {
    background-color: #FFFFFF;
    color: #1A1A1A;
    padding: 100px 8%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-badge {
    background-color: rgba(255, 222, 71, 0.2);
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.agency-pricing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-highlight {
    display: inline-block;
    background-color: #FFDE47; /* Core Yellow Theme */
    padding: 2px 8px;
    border-radius: 4px;
    transform: rotate(0deg);
}

.pricing-subtitle {
    color: #666666;
    font-size: 1.1rem;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* 1-Price Plan Main Container Box */
.price-box-wrapper {
    margin-bottom: 80px;
}

.price-card {
    background-color: #1A1A1A;
    background-color: #f1f0ec;
    color: #000000;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.price-card:hover {
    
}

.price-header {
    text-align: center;
    border-bottom: 1px solid #333333;
    padding-bottom: 30px;
    margin-bottom: 35px;
}

.price-header h3 {
    font-size: 1.6rem;
    color: #4daa5f;
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.price-amount .currency {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: #000000;
}

.price-amount .setup-text {
    font-size: 1.1rem;
    color: #4daa5f;
    font-weight: 600;
    margin-top: 5px;
}

.monthly-disclosure {
    font-size: 1.05rem;
    color: #000000;
}

.monthly-disclosure strong {
    color: #4daa5f;
}

/* Split Lists Box Mechanics */
.lists-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.list-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 5px;
}

.included h4 {
    color: #000000;
    border-bottom: 2px solid #4daa5f;
}

.excluded h4 {
    color: #272727;
    border-bottom: 2px solid #444444;
}

.list-column ul {
    list-style: none;
    padding: 0;
}

.list-column ul li {
    font-size: 0.98rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.included ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4daa5f;
    font-weight: bold;
}

.excluded ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #666666;
}

.excluded ul li {
    color: #888888;
}

/* Plan Button Elements */
.price-action {
    text-align: center;
}

.btn-pricing-cta {
    display: inline-block;
    background-color: #FFDE47;
    background-color: #35aa5e;
    color: #1A1A1A;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-pricing-cta:hover {
    background-color: #FFDE47;
    transform: translateY(-2px);
    color: #000000;
}

/* Chart Comparison Grid Styles */
.comparison-sub-section {
    margin-top: 80px;
    border-top: 1px solid #EEEEEE;
    padding-top: 60px;
}

.comparison-sub-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.comparison-subtitle-text {
    text-align: center;
    color: #666666;
    margin-bottom: 40px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.comparison-table th, .comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #EEEEEE;
}

.comparison-table th {
    font-weight: 700;
    background-color: #F9F9F9;
    color: #1A1A1A;
}

.comparison-table .highlight-column-header {
    background-color: #FFDE47;
    color: #1A1A1A;
    text-align: center;
}

.comparison-table td:last-child {
    text-align: center;
    font-weight: 600;
    background-color: rgba(255, 222, 71, 0.03);
}

.feature-title {
    font-weight: 600;
}

.cost-danger {
    color: #CC3333;
}

.cost-success {
    color: #0088CC;
    color: #4daa5f;
    font-weight: 700;
}

.comparison-table .total-row td {
    font-weight: 700;
    font-size: 1.1rem;
    background-color: #F9F9F9;
    border-bottom: 2px solid #1A1A1A;
    padding: 22px 20px;
}

.comparison-table .total-row td:last-child {
    background-color: rgba(255, 222, 71, 0.1);
    color: #1A1A1A;
}

/* Mobile Responsiveness Viewports */
@media (max-width: 768px) {
    .agency-pricing {
        padding: 60px 5%;
    }
    .price-card {
        padding: 35px 20px;
    }
    .lists-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .price-amount .currency {
        font-size: 3.5rem;
    }
    .comparison-table th, .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}


/* Faq section */
/* Standalone FAQ Base Layout */
.agency-faq {
    background-color: #FFFFFF; /* Bright white background for crisp separation */
    color: #1A1A1A;
    padding: 50px 0%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
    max-width: 70%;
    margin: 0 auto;
}

.faq-badge {
    background-color: rgba(255, 222, 71, 0.2);
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.agency-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.faq-highlight {
    display: inline-block;
    background-color: #FFDE47; /* Agency Yellow */
    padding: 2px 8px;
    border-radius: 4px;
    transform: rotate(0deg);
}

.faq-subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Accordion Element Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #F9F9F9;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #FFDE47;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(255, 222, 71, 0.05);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: #666666;
    color: #4daa5f;
    transition: transform 0.3s ease;
}

/* Hidden by default, toggled via JavaScript */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
    background-color: #FFFFFF;
}

.faq-answer p {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.7;
    padding-bottom: 22px;
}

/* Active State Trigger Classes */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #1A1A1A;
    color: #4daa5f;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if answers become longer */
    padding: 10px 30px 0;
    color: #4daa5f;
}

/* Responsive Scaling */
@media (max-width: 600px) {
    .agency-faq {
        padding: 50px 0;
    }
    .agency-faq h2 {
        font-size: 2rem;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
}


/* How It Works Section */
/* Standalone Process Section Grid Layout */
.how-it-works-section {
    display: none;
    background-color: #F9F9F9; /* Off-white canvas frame for standard layout structure */
    color: #1A1A1A;
    padding: 100px 8%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hiw-badge {
    background-color: rgba(255, 222, 71, 0.2);
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.hiw-highlight {
    background-color: #FFDE47; /* Primary Brand Yellow */
    padding: 2px 8px;
    border-radius: 4px;
}

.hiw-subtitle {
    color: #666666;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* 3-Column Box Interface Grid */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hiw-card {
    background-color: #FFFFFF;
    padding: 50px 35px;
    border-radius: 8px;
    border: 1px solid #EEEEEE;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Middle Card Highlight to Draw Eye Down conversion funnels */
.active-step {
    border-top: 4px solid #FFDE47;
    box-shadow: 0 10px 30px rgba(255, 222, 71, 0.1);
}

.hiw-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 222, 71, 0.4); /* Transparent yellow impact counter */
    line-height: 1;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.hiw-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.hiw-card p {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Mobile Responsiveness Viewports */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 5%;
    }
    .how-it-works-section h2 {
        font-size: 2rem;
    }
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hiw-card {
        padding: 35px 25px;
    }
}


/* Call to Action & Lead Form */
.cta-section {
    padding: 100px 8%;
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 650px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: #BBBBBB;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form input {
    padding: 15px 20px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #222;
    color: var(--white);
    font-size: 1rem;
}

.cta-form input:focus {
    outline: 2px solid var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 16px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-message {
    margin-top: 20px;
    font-weight: 600;
    display: none;
}

/* Customer Reviews Section */
/* Standalone Testimonials Layout */
.agency-testimonials {
    background-color: #FFFFFF; /* High contrast clean white backdrop */
    color: #1A1A1A;
    padding: 100px 8%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-badge {
    background-color: rgba(255, 222, 71, 0.2);
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.agency-testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.testimonials-highlight {
    background-color: #FFDE47; /* Primary Yellow Theme Accent */
    padding: 2px 8px;
    border-radius: 4px;
}

.testimonials-subtitle {
    color: #666666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Reviews Grid Structure */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #F9F9F9;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #EEEEEE;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Special styling for the middle/featured review card to draw visual focus */
.featured-review {
    border-top: 4px solid #FFDE47;
    box-shadow: 0 10px 30px rgba(255, 222, 71, 0.1);
    background-color: #FFFFFF;
}

.rating-stars {
    color: #FFDE47; /* Yellow Stars */
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    color: #444444;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

/* Author Section Layout inside card */
.client-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #EEEEEE;
    padding-top: 20px;
}

.client-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.client-meta {
    color: #777777;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Responsive Viewports */
@media (max-width: 768px) {
    .agency-testimonials {
        padding: 60px 5%;
    }
    .agency-testimonials h2 {
        font-size: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
}

.banana-strip {
    height: 20vh;
    width: 100%;
    /*ackground-image: url(images/banana-pattern-2.png);*/
    background-repeat: repeat;
    background-position: center;
}

/* Contact */
/* Standalone Homepage Quote Section Layout */
.home-quote-section {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}
.home-quote-section a[href^="tel"] {
    color: inherit; 
    text-decoration: none; 
}

.contact-overlay {
    background-color: #1a1a1af2;
    background-color: #383838;
    padding: 100px 8%;
}

.home-quote-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: top;
}

/* Left Sidebar Presentation Column */
.quote-info-side {
    display: flex;
    flex-direction: column;
}

.quote-badge {
    background-color: rgba(255, 222, 71, 0.15);
    color: #FFDE47; /* Agency Yellow Accent */
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    align-self: flex-start;
}

.quote-info-side h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.quote-highlight {
    display: inline-block;
    background-color: #FFDE47;
    color: #1A1A1A;
    padding: 0 6px;
    border-radius: 4px;
    transform: rotate(0deg);
}

.quote-description {
    color: #CCCCCC;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.quote-description strong {
    color: #FFDE47;
}

.quote-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    font-size: 1.5rem;
    background-color: rgba(255, 222, 71, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 222, 71, 0.2);
}

.method-box h4 {
    font-size: 0.95rem;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.method-box p {
    color: #AAAAAA;
    font-size: 0.9rem;
}

/* Right Side High-Contrast Form Box Column */
.quote-form-side {
    background-color: #FFFFFF; /* High contrast white form background panel */
    color: #1A1A1A;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-top: 6px solid #fdde4c;
}

.home-quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-form-row {
    width: 100%;
}

.double-fields {
    display: flex;
    gap: 20px;
}

.home-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333333;
}

.home-input-group input,
.home-input-group select,
.home-input-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #DDDDDD;
    background-color: #F9F9F9;
    color: #1A1A1A;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: outline 0.2s ease, border-color 0.2s ease;
}

.home-input-group input:focus,
.home-input-group select:focus,
.home-input-group textarea:focus {
    outline: 2px solid #FFDE47;
    border-color: #FFDE47;
    background-color: #FFFFFF;
}

/* Agreement Checkbox Segment styles */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-wrapper input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #1A1A1A;
}

.checkbox-wrapper label {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.4;
}

/* Form Action Submission Buttons */
.btn-home-quote-submit {
    background-color: #1A1A1A;
    background-color: #35aa5e;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-home-quote-submit:hover {
    background-color: #FFDE47; /* Transitions into main yellow brand aesthetic */
    color: #1A1A1A;
    transform: translateY(-2px);
}

.quote-success-banner {
    display: none;
    background-color: rgba(255, 222, 71, 0.15);
    color: #1A1A1A;
    border: 1px solid #FFDE47;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}

/* Mobile Breakpoints Viewports */
@media (max-width: 900px) {
    .home-quote-section {
        padding: 0;
    }
    .home-quote-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .quote-info-side h2 {
        font-size: 2.1rem;
    }
    .quote-form-side {
        padding: 30px 20px;
    }
    .double-fields {
        flex-direction: column;
        gap: 20px;
    }
}

/* Footer */
footer {
    background-color: #111111;
    color: #666666;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}
footer a {
    color: #868686;
}

/* Standalone Back to Top Interactive Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FFDE47; /* Signature Brand Yellow */
    color: #1A1A1A;            /* Charcoal core text contrast */
    border: none;
    border-radius: 50%;        /* Perfect fluid circle mapping */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;             /* Ensures visibility over all sections */
    
    /* Animation Framework for visibility toggles */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.arrow-up {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Scroll Trigger Active State Overrides */
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Interactive Hover Actions */
.back-to-top:hover {
    background-color: #FFFFFF; /* Shifts pure crisp white on user selection */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 222, 71, 0.2);
}

/* Mobile Screen Breakpoints */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .arrow-up {
        font-size: 1.3rem;
    }
}


/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns a {
        display: block;
        margin: 15px 0;
    }
}