/* --- PRIMEX AGENCY NEW BASE STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Outfit:wght@400;600;700;800&family=Poppins:wght@400;600;700;800&display=swap');

:root {
    /* Colors */
    --primary-blue: #3B82F6;
    --dark-navy: #1E293B;
    --white: #FFFFFF;
    --light-gray-bg: #F8F9FA;
    --text-gray: #6B7280;
    --black: #000000;

    /* Spacing */
    --section-padding: 100px;
    --content-max-width: 1240px;
    --card-radius: 20px;
    --button-radius: 10px;
    --grid-gap: 36px;
    --element-margin: 28px;

    /* Typography */
    --font-family: 'Inter', 'Poppins', sans-serif;
    --heading-font: 'Outfit', 'Inter', sans-serif;

    /* Sizes */
    --hero-size: 60px;
    --heading-size: 44px;
    --subheading-size: 22px;
    --body-size: 17px;

    /* Effects */
    --transition: all 0.3s ease;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 8px 30px rgba(59, 130, 246, 0.12);
    --button-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    --button-shadow-hover: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-gray);
    background-color: var(--white);
    line-height: 1.6;
    font-size: var(--body-size);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--black);
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* Typography Variations */
.section-title {
    font-size: var(--heading-size);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-title span.accent {
    color: var(--primary-blue);
}

.subheading {
    font-size: var(--subheading-size);
    line-height: 1.4;
    font-weight: 600;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--button-radius);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--button-shadow);
}

.btn-primary:hover {
    box-shadow: var(--button-shadow-hover);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--button-shadow);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--light-gray-bg);
    transform: translateY(-2px);
}

/* Links */
.text-link {
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.text-link:hover {
    text-decoration: underline;
    color: #2563EB;
}

.text-link::after {
    content: " →";
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.text-link:hover::after {
    transform: translateX(4px);
}


/* --- TOP BAR & HEADER --- */
.top-bar {
    height: 44px;
    background: var(--dark-navy);
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar a:hover {
    color: var(--primary-blue);
}

.navbar {
    height: 85px;
    background: var(--white);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    gap: 12px;
}

.logo img {
    height: 40px;
    border-radius: 8px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-tabs {
    display: flex;
    gap: 24px;
}

.nav-tab {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 16px;
}

.nav-tab:hover,
.nav-tab.active {
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
}

/* --- HERO SECTION --- */
.hero {
    background: var(--dark-navy);
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(59, 130, 246, 0.2), rgba(30, 41, 59, 0.95));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-tagline {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: var(--hero-size);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-title span.accent {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    /* Lighter gray for dark bg */
    margin-bottom: 40px;
    max-width: 700px;
    margin-inline: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-cta a.text-link {
    color: var(--white);
    font-weight: 400;
}

.hero-cta a.text-link:hover {
    color: var(--primary-blue);
}

/* --- MARQUEE --- */
.marquee-wrapper {
    height: 65px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    margin-top: 48px;
    max-width: 115%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    align-items: center;
}

.marquee-item {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-asterisk {
    font-size: 20px;
    color: var(--white);
    line-height: 1;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- SERVICES SECTION --- */
.services {
    background: var(--light-gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--grid-gap);
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 0;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.icon-container {
    background: var(--primary-blue);
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.6;
}

/* See Work Button */
.btn-see-work {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: var(--button-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
}

.btn-see-work span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-see-work:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--button-shadow);
    transform: translateY(-2px);
}

.btn-see-work:hover span {
    transform: translateX(4px);
}

/* --- ABOUT SECTION --- */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: var(--card-radius);
    border: 4px solid var(--primary-blue);
    box-shadow: var(--card-shadow);
}

.badge-plus {
    position: absolute;
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 800;
    z-index: 5;
}

.plus-1 {
    top: -16px;
    left: -16px;
}

.plus-2 {
    bottom: -16px;
    right: -16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: var(--light-gray-bg);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.stat-box h4 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
}

.signature {
    margin-top: 32px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    color: var(--black);
    font-style: italic;
    font-weight: 600;
}

/* --- WORK PROCESS SECTION --- */
.work-process {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 48px;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--light-gray-bg);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 24px auto;
    position: relative;
    box-shadow: 0 0 0 10px var(--white);
    /* To break the line */
}

.process-number {
    position: absolute;
    top: 0;
    right: -5px;
    background: var(--dark-navy);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    background: var(--light-gray-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--grid-gap);
    margin-top: 48px;
    margin-bottom: 48px;
}

.portfolio-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 400px;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.95) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

.tag-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-arrow {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transform: translateX(-10px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* --- WHY CHOOSE US --- */
.why-choose-us {
    background: var(--dark-navy);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-video-wrapper {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.why-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(59, 130, 246, 0.2);
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.why-feature h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.why-feature p {
    color: #cbd5e1;
    font-size: 15px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

/* --- AWARDS / TESTIMONIALS --- */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--light-gray-bg);
    border-radius: var(--card-radius);
    padding: 40px;
}

.testimonial-quote {
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 32px;
    line-height: 1.5;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-info img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

/* --- PRE-FOOTER CTA & FOOTER --- */
.pre-footer-cta {
    background: var(--dark-navy);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: block;
    clear: both;
}

.pre-footer-cta p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
    width: 100%;
    display: block;
    clear: both;
    position: relative;
    z-index: 10;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
    color: var(--white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--primary-blue);
}

.footer-tagline {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-brand .social-links {
    display: flex;
    gap: 16px;
}

.footer-brand .social-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-brand .social-links a:hover {
    color: var(--primary-blue);
}

.footer-links-wrapper {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: #94a3b8;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* --- RATE LIST SPECIFIC --- */
.pricing-hero {
    background: var(--light-gray-bg);
    padding: 180px 0 80px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: -40px;
    /* pull up into hero slightly */
    padding-bottom: 80px;
}

/* --- UTILITIES & ANIMATIONS --- */
.text-center {
    text-align: center;
}

@media (max-width: 1199px) {
    .container {
        padding: 0 40px;
    }

    .section-padding {
        padding: 80px 0;
    }

    h1.hero-title {
        font-size: 48px;
    }

    .about-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .nav-controls {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Hero Mobile Fixes */
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
        height: auto;
    }

    h1.hero-title {
        font-size: 32px;
        line-height: 1.25;
    }

    h1.hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    /* Hero CTA — side-by-side compact buttons */
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .hero-cta a.btn {
        width: auto;
        padding: 12px 20px;
        font-size: 14px;
        flex: 0 1 auto;
    }

    .hero-cta a.text-link {
        display: none;
    }

    /* Marquee Mobile Fix */
    .marquee-wrapper {
        max-width: 100%;
        height: 48px;
        border-radius: 8px;
        margin-top: 32px;
    }

    .marquee-item {
        font-size: 13px;
        padding: 0 20px;
        gap: 20px;
    }

    .marquee-asterisk {
        font-size: 14px;
    }

    /* Process */
    .process-grid::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* --- MOBILE MENU FIX --- */
@media (max-width: 767px) {
    .nav-controls.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 32px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #f1f5f9;
    }

    .nav-controls.active .nav-tabs {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 32px;
    }

    .nav-controls.active .btn {
        width: 100%;
        margin-top: 16px;
    }
}

.menu-toggle {
    font-size: 32px;
    padding: 5px;
}

/* --- CONTACT FORM STYLES & RECTANGULAR DESIGN --- */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rectangular-form {
    border-radius: 0 !important;
    border: 2px solid var(--dark-navy) !important;
    box-shadow: 8px 8px 0px rgba(30, 41, 59, 0.1) !important;
}

.rectangular-form .btn {
    border-radius: 0;
}

.rectangular-form input,
.rectangular-form select,
.rectangular-form textarea {
    border-radius: 0 !important;
    border: 1px solid #ccc !important;
}

.rectangular-form input:focus {
    border-color: var(--primary-blue) !important;
    outline: none;
}

.radio-card {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.radio-card:hover {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.radio-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.radio-grid.vertical {
    grid-template-columns: 1fr;
}

.form-progress {
    height: 6px;
    background: #eee;
    margin-bottom: 24px;
    position: relative;
    border-radius: 0;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

/* --- FAQ SECTION --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-gray);
    margin: 0;
}

/* --- YASHTEX STYLE PRICING CARDS --- */
.yt-pricing-card {
    border-radius: 28px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.yt-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
}

.yt-badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    font-family: var(--font-family);
    letter-spacing: 0.5px;
}

.yt-card-title {
    font-size: 32px;
    font-family: var(--font-family);
    font-weight: 600;
    letter-spacing: -1px;
    color: #171717;
    margin-bottom: 8px;
    min-height: auto;
}

.yt-card-desc {
    color: #525252;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    border-top: none;
    padding-top: 0;
}

.yt-price-section {
    flex-grow: 1;
    margin-bottom: 24px;
}

.yt-payment-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #737373;
    margin-bottom: 8px;
    font-weight: 600;
}

.yt-price {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: #171717;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.yt-features {
    margin-top: 24px;
    margin-bottom: 32px;
}

.yt-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #404040;
    margin-bottom: 12px;
}

.yt-feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.yt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.yt-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.yt-btn:hover svg {
    transform: translateX(4px);
}

/* Emerald Variant */
.yt-emerald {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border: 1px solid rgba(167, 243, 208, 0.7);
}

.yt-emerald .yt-feature-icon {
    color: #10b981;
}

.yt-emerald .yt-btn {
    background: #059669;
}

.yt-emerald .yt-btn:hover {
    background: #047857;
}

/* Blue Variant */
.yt-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border: 1px solid rgba(191, 219, 254, 0.7);
}

.yt-blue .yt-badge-popular {
    background: #3b82f6;
    color: #ffffff;
}

.yt-blue .yt-feature-icon {
    color: #3b82f6;
}

.yt-blue .yt-btn {
    background: #2563eb;
}

.yt-blue .yt-btn:hover {
    background: #1d4ed8;
}