/* =====================================================
   Wedding Hashtag Generator Styles
   Version: 1.0
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* BriteCo Brand Colors - Primary */
    --color-teal: #17A2B8;
    /* Vibrant teal - hero background */
    --color-teal-dark: #138496;
    /* Darker teal for depth */
    --color-navy: #272D3F;
    /* Navy - header, footer */
    --color-navy-dark: #1F2533;
    /* Darker navy */
    --color-orange: #FC883A;
    /* Orange - primary CTA */
    --color-orange-dark: #E87622;
    /* Darker orange for hover */

    /* Updated color aliases for consistency */
    --color-primary: #FC883A;
    /* Orange - Primary CTA (updated) */
    --color-primary-dark: #E87622;
    /* Darker orange for hover */
    --color-primary-light: #FF9D5C;
    /* Lighter orange */
    --color-secondary: #272D3F;
    /* Navy - headings, text */
    --color-accent: #17A2B8;
    /* Teal - accents */

    /* BriteCo Brand Colors - Secondary */
    --color-blue-medium: #7DA3AF;
    /* Medium blue */
    --color-blue-gray: #466F88;
    /* Blue-gray */
    --color-blue-light: #A9C1CB;
    /* Light blue */

    /* Neutrals - BriteCo palette */
    --color-white: #FFFFFF;
    --color-gray-50: #F4F7FC;
    /* Lightest blue-gray */
    --color-gray-100: #E1E7EF;
    /* Very light blue */
    --color-gray-200: #A9C1CB;
    /* Light blue */
    --color-gray-300: #7DA3AF;
    /* Medium blue */
    --color-gray-400: #466F88;
    /* Blue-gray */
    --color-gray-500: #466F88;
    /* Blue-gray */
    --color-gray-600: #272D3F;
    /* Navy */
    --color-gray-700: #272D3F;
    /* Navy */
    --color-gray-800: #272D3F;
    /* Navy */
    --color-gray-900: #1A1F2E;
    /* Darker navy */

    /* Functional Colors */
    --color-success: #31D7CA;
    /* Using bright cyan */
    --color-warning: #FC883A;
    /* Using orange */
    --color-error: #FF4D4F;

    /* Typography - BriteCo uses Gilroy (using Poppins as fallback) */
    --font-heading: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius - BriteCo style (5px on buttons) */
    --radius-sm: 5px;
    --radius-md: 5px;
    --radius-lg: 8px;
    --radius-xl: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

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

html {
    background-color: #ffffff;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
}
@font-face {
    font-family: "Gilroy";
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Medium.eot");
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Medium.woff2") format("woff2"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Medium.woff") format("woff"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Medium.ttf") format("truetype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Medium.svg#Gilroy-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Bold.eot");
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Bold.woff2") format("woff2"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Bold.woff") format("woff"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Bold.ttf") format("truetype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Bold.svg#Gilroy-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Regular.eot");
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Regular.woff2") format("woff2"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Regular.woff") format("woff"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Regular.ttf") format("truetype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Regular.svg#Gilroy-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Semibold.eot");
    src: url("/wp-content/themes/BriteCo/fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Semibold.woff2") format("woff2"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Semibold.woff") format("woff"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Semibold.ttf") format("truetype"),
        url("/wp-content/themes/BriteCo/fonts/Gilroy-Semibold.svg#Gilroy-Semibold") format("svg");
    font-weight: 600;
    font-style: normal;
}

/* =====================================================
   Typography
   ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-secondary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* =====================================================
   Layout
   ===================================================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
    background-color: var(--color-navy);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    /* position: sticky;
    top: 0; */
    z-index: 100;
}

.logo a {
    /* display: inline-block; */
    line-height: 0;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.logo a:hover .logo-image {
    opacity: 0.8;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    background: #008182;
    padding: var(--spacing-2xl) 0;
    padding-top: 160px;
    text-align: center;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

/* .social-proof-badge {
    display: inline-block;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
} */

/* Value Props */
.value-props {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    gap: 30px;
    flex-wrap: wrap;
}

.value-prop {
    background: #F4F7FC;
    box-shadow: 0px 14px 34px 0px #00000033;
    border-radius: 5px;
    padding: 20px 30px;
    text-align: left;
    max-width: 31%;
    width: 100%;


}





.value-prop-icon {
    margin-bottom: 20px;
}

.value-prop-icon img {
    max-width: 91px;
    height: auto;
}

.value-prop h3 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #272D3F;
    margin-bottom: 8px;

}

.value-prop p {
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #3B3B3B;
    margin: 0px !important;

}

/* =====================================================
   Generator Section
   ===================================================== */
.generator-section {
    padding: 60px 0;
    padding-top: 0px !important;
    padding-top: 0px !important;
    background-color: #F4F7FC;
}

.generator-card {
    background: var(--color-white);
    padding: 50px 70px;
    padding-bottom: 87px;
    border-radius: 5px;
    max-width: 960px;
    margin: 0 auto;
    transform: translateY(-450px);
    margin-bottom: -430px;

}

.generator-card h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    color: #272D3F;
    margin: 0px !important;
    margin-bottom: 7px !important;
    text-align: center !important;

}

.generator-intro {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #3B3B3B;
    margin: 0px !important;
    margin-bottom: 35px !important;

    text-align: center !important;
}

/* Form Styles */
.hashtag-form {
    margin-bottom: 0px !important;
}



.optional-fields-title {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #3B3B3B;
    margin-bottom: 20px !important;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.form-row .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 49%;
}

.form-row .form-group.full-width {
    width: 100%;
    max-width: 100%;
}

.form-group label {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #3B3B3B;
    margin-bottom: 10px !important;

}

.required {
    color: var(--color-error);
}

.form-group input[type="text"],
.form-group input[type="date"] {
    padding: 17px 16px;
    border: 0.6px solid #6C899566 !important;
    border-radius: 3px;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #272D3F;

}

.form-group input:focus {
    outline: none;
    border: 0.6px solid #6C899566 !important;
}

.form-group input::placeholder {
    color: #646464;
}

/* Optional Fields */
.optional-fields {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-gray-200);
    animation: slideDown var(--transition-slow);
}

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

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

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--color-gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.checkbox-label:hover {
    background: var(--color-gray-200);
}

.checkbox-label input[type="checkbox"] {
    margin-right: var(--spacing-xs);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked+span,
.checkbox-label:has(input[type="checkbox"]:checked) {
    background: var(--color-primary);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 14px 24px 0px #D56D284D;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
    background: #FC883A;
    width: 100% !important;
    margin-top: 30px !important;
    border: none !important;
    border-radius: 5px !important;

}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: var(--spacing-sm) 0;
    margin: var(--spacing-sm) 0;
    transition: color var(--transition-fast);
}

.btn-link:hover {
    color: var(--color-primary-dark);
}

/* =====================================================
   Results Section
   ===================================================== */
.results-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--color-gray-200);
    margin-top: 50px !important;
}

.results-header h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    color: #272D3F;
    margin: 0px !important;
    margin-bottom: 7px !important;
    text-align: center !important;
}

.results-subtitle {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #3B3B3B;
    margin: 0px !important;
    margin-bottom: 35px !important;
    text-align: center !important;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.category-tab {
    padding: 0.5rem 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: #008182;
}

.category-tab:hover {
    border-color: #008182;
    color: #008182;
    background: rgba(0, 129, 130, 0.05);
}

.category-tab.active {
    background: #008182;
    border-color: #008182;
    color: var(--color-white);
}

/* Hashtag Categories */
.hashtag-category {
    margin-bottom: var(--spacing-xl);
}

.category-title {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-secondary);
}

.hashtags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

/* Hashtag Card */
.hashtag-card {
    background: var(--color-gray-50);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    position: relative;
}

/* .hashtag-card:hover {
    border-color: #7DA3AF;
    box-shadow: var(--shadow-md);
} */

.hashtag-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    word-break: break-word;
}

.social-search-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-gray-200);
}

.social-search-label {
    font-size: 0.7rem;
    color: var(--color-gray-500);
    margin-right: var(--spacing-xs);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-md);
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-icon:hover {
    background: #027C7C;
    color: var(--color-white);
}

.social-icon svg {
    width: 14px;
    height: 14px;
}

.hashtag-actions {
    display: flex;
    gap: var(--spacing-xs);
}

.btn-icon {
    padding: 0.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.1rem;
}

.btn-icon:hover {
    /* background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white); */
}

.btn-copy {
    flex: 1;
    padding: 0.5rem 1rem;
    background: #008182;
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}



.btn-copy:hover {
    background: #006b6c;
    transform: translateY(-1px);
}

/* Regenerate Button */
.regenerate-section {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-gray-200);
}

.btn-regenerate {
    padding: 0.75rem 2rem;
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* =====================================================
   Tips Section
   ===================================================== */
.tips-section {
    background: var(--color-white);
    padding: 70px 0;
}

.tips-section h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: #272D3F;
    max-width: 566px;
    margin: auto;
    margin-bottom: 40px;
}

.tips-grid {
    display: flex;
    max-width: 100%;
    gap: 20px;
    flex-wrap: wrap;

}

.tip-card {
    text-align: left;
    padding: 30px 15px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 14px 44px 0px #466F8826;
    max-width: 48% !important;
    width: 100% !important;
    display: flex;
    gap: 20px;
}



.tip-icon img {
    max-width: 75px;
    height: auto;
}

.tip-card h3 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #272D3F;
    margin-bottom: 8px;

}

.tip-card p {
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3B3B3B;
    margin: 0px !important;

}

/* =====================================================
   How to Use Section
   ===================================================== */
.how-to-use-section {
    padding: 0px;
    background: #ffffff;
}

.how-to-use-section h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: #272D3F;
    margin: 0px !important;
    margin-bottom: 30px !important;
}

.how-to-use-section .wrapper {
    background: #F4F7FC;
    padding: 50px 40px;
    padding-bottom: 50px;

}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 0px;
    gap: 16px;
}

/* Thicker Gradient Line (Desktop) */
.timeline-container::before {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #9FCED1 0%, #9FCED1 25%, #7ABCBF 25%, #7ABCBF 50%, #4DA7A8 50%, #4DA7A8 75%, #008182 75%, #008182 100%);
    transform: translateY(-50%);
    z-index: 1;
}

/* Timeline Steps Base */
.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ODD Steps (1, 3) - Positioned ABOVE the line */


/* Move content above marker for UP steps */
.timeline-step .timeline-content {
    order: -1;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
}

/* Arrow pointing DOWN to marker */
.timeline-step .timeline-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #FFFFFF;
    border-bottom: none;
}




/* EVEN Steps (2, 4) - Positioned BELOW the line */
/* .timeline-step:nth-child(even) {
    margin-top: 60px;
} */

/* Content stays below marker for DOWN steps (default order) */
/* .timeline-step:nth-child(even) .timeline-content {
    margin-top: var(--spacing-md);
    margin-bottom: 0;
} */

/* Arrow pointing UP to marker */
/* .timeline-step:nth-child(even) .timeline-content::before {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 8px solid var(--color-gray-200);
    border-top: none;
} */




/* Marker Styles */
.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 4px solid #31D7CA;
    color: #31D7CA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    /* Reset margins */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}



/* Stem styles removed */

/* Arrow indicators base */
.timeline-content {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0px 14px 34px 0px #C5D3EB;
    background: #FFFFFF;
    border-radius: 5px;
    text-align: left;
    padding: 18px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

/* Individual Step Colors */
.timeline-step:nth-child(1) .timeline-marker {
    border-color: #9FCED1;
    color: #9FCED1;
}

.timeline-step:nth-child(2) .timeline-marker {
    border-color: #7ABCBF;
    color: #7ABCBF;
}

.timeline-step:nth-child(3) .timeline-marker {
    border-color: #4DA7A8;
    color: #4DA7A8;
}

.timeline-step:nth-child(4) .timeline-marker {
    border-color: #008182;
    color: #008182;
}

.timeline-content h3 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #272D3F;
    margin-bottom: 2px;

}

.timeline-content p {
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3B3B3B;
    margin: 0px;
    padding: 0px;
}

/* Hide connectors since we use gradient */
.timeline-connector {
    display: none;
}

/* =====================================================
   Social Proof
   ===================================================== */
.social-proof {
    background: #466F88;
    padding: 27px 0px;
    text-align: center;
}

.social-proof-text {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0px;
    color: #FFFFFF;

}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--color-secondary);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: var(--color-white);
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.site-footer a:hover {
    color: var(--color-primary);
}

/* =====================================================
   Toast Notification
   ===================================================== */
.copy-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    font-weight: 500;
    transition: bottom var(--transition-base);
    z-index: 1000;
}

.copy-toast.show {
    bottom: 30px;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* .social-proof-badge {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    } */



    .value-prop {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .value-prop-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .value-prop-icon img {
        width: 40px;
        height: 40px;
    }





    .form-row {
        grid-template-columns: 1fr;
    }

    .generator-card {
        padding: var(--spacing-lg);
    }

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

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline Responsive */
    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0px;
    }

    .timeline-container::before {
        display: none;
        /* Hide horizontal gradient line */
    }

    /* Reset alternating on mobile - all items centered */
    .timeline-step:nth-child(2),
    .timeline-step:nth-child(4),
    .timeline-step:nth-child(6),
    .timeline-step:nth-child(8) {
        margin-top: 0;
    }

    .timeline-step {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0;
        padding-bottom: var(--spacing-lg);
    }

    .timeline-connector {
        display: block;
        width: 3px;
        height: 30px;
        margin: -10px auto 10px;
    }

    /* Color connectors to match the step below */
    .timeline-step:nth-child(1)~.timeline-connector {
        background: #31D7CA;
    }

    .timeline-step:nth-child(3)~.timeline-connector {
        background: #7DA3AF;
    }

    .timeline-step:nth-child(5)~.timeline-connector {
        background: #466F88;
    }

    .timeline-step:nth-child(7)~.timeline-connector {
        background: #272D3F;
    }
}

@media (max-width: 480px) {

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


    .tip-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .tip-icon img {
        width: 40px;
        height: 40px;
    }




    /* .social-proof-badge {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    } */
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .generator-card {
        padding: var(--spacing-md);
    }
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn var(--transition-slow);
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    font-size: 3rem;
    animation: spin 1.5s linear infinite;
}

.loading-text {
    margin-top: var(--spacing-md);
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 600;
}

/* =====================================================
   New UX Improvements
   ===================================================== */

/* Hero Social Proof Badge */
/* .social-proof-badge {
    display: inline-block;
    background: rgba(0, 129, 130, 0.1);
    color: #FC883A;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: var(--spacing-sm);
} */

@media (max-width: 768px) {
    /* .social-proof-badge {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    } */
}

/* Form Step Indicator */
.form-step-indicator {
    text-align: center;
    color: var(--color-gray-500);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* Field Hints */
.field-hint {
    color: var(--color-gray-500);
    font-weight: 400;
    font-size: 0.85rem;
    font-style: italic;
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.5rem 1.25rem;
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-tab:hover {
    border-color: var(--color-accent);
    background: var(--color-gray-50);
}

.category-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/* Editor's Pick Badge */
.editors-pick-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    box-shadow: 0px 4px 4px 0px #466F8845;
    background: #466F88;

    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 10;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;

}

.btn-favorite svg path {
    fill: none;
    /* default */
}

.btn-favorite .is-favorite {
    fill: #960000;
    /* active */
}

.btn-favorite .is-favorite path {
    fill: #960000;
    /* active */
}

.btn-favorite svg {
    transition: transform 0.15s ease, fill 0.15s ease;
}



.trending-badge {
    box-shadow: 0px 4px 4px 0px #CC69261C;
    background: #FC883A;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;

}

.guest-friendly-badge {
    box-shadow: 0px 4px 4px 0px #00818221;
    background: #58E3E0;
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #272D3F;

}

/* Copy All Favorites Section */
/* Copy All Favorites Section */
.copy-all-section {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    margin-top: var(--spacing-xl);
    border: 1px solid var(--color-gray-200);
}

/* Compact version for top placement */
.copy-all-section.compact {
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background: #F4F7FC !important;
    border: 1px solid rgba(0, 129, 130, 0.2);
    /* Teal border #008182 at 20% */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-all-content {
    display: contents;
    /* Let children participate in flex container */
}

.copy-hint {
    font-size: 0.95rem;
    color: #008182;
    /* BriteCo Teal */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-copy-all {
    background: #008182;
    color: var(--color-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-copy-all-small {
    background: #008182;
    color: var(--color-white);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-copy-all:hover,
.btn-copy-all-small:hover {
    background: #006b6c;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-copy-all:disabled,
.btn-copy-all-small:disabled {
    background: var(--color-gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 600px) {
    .copy-all-content {
        justify-content: center;
        text-align: center;
    }

    .btn-copy-all-small {
        width: 100%;
    }
}


/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-section {
    background: #ffffff;
    padding: 70px 0px;
}

.testimonials-section h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    color: #272D3F;
    margin: 0px;
    margin-bottom: 30px;

}

.testimonials-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.testimonial-card {
    box-shadow: 0px 14px 34px 0px #C5D3EB66;
    background: #FFFFFF;
    padding: 20px !important;
    border-radius: 5px !important;
    max-width: 32%;
}

.testimonial-stars img {
    max-width: 87px;
    height: auto;
}

.name_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.name_wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.name_wrapper img {
    max-width: 40px;
    height: auto;
}


.testimonial-text {
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 25px;
}

.testimonial-author {
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #3B3B3B;

}

.testimonial-author b {
    font-weight: 700;

}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    background: #ffffff;
    padding: 40px 0px;
    padding-bottom: 70px;
}

.faq-section h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    text-align: center;
    color: #272D3F;
    margin: 0px;
    margin-bottom: 15px;

}

.title_wrapper {
    max-width: 660px;
    margin: auto;
}

.title_wrapper .sub_heading {
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #3B3B3B;
    margin: 0px !important;
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    box-shadow: 0px 14px 44px 0px #6C899526;
    background: #FFFFFF;
    border-radius: 5px;
    margin-top: 30px;
    padding: 0 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-toggle:focus {
    outline: none;
}

/* .faq-toggle:hover .faq-question {
    color: #008182;
} */

.faq-question {
    margin: 0;
    flex: 1;
    padding-right: var(--spacing-md);
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    color: #3B3B3B;


}

.faq-icon {
    width: 24px;
    height: 24px;
    background: #008182;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.faq-answer {
    font-family: "Gilroy";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #3B3B3B;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px !important;
}

.faq-answer p {
    margin: 0;
    max-width: 93%;
}

/* .header-v-new #menu .mobile-button.n-90-5 {
    display: none !important;
} */

/* =====================================================
   Responsive Updates for New Sections
   ===================================================== */
@media (max-width: 768px) {

    .faq-answer p {
        margin: 0;
        max-width: 98%;
    }

    .checker-input-group {
        flex-direction: column;
    }

    .btn-check {
        width: 100%;
    }

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

    .category-tabs {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .category-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* =====================================================
   Accessibility
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

button:focus,
input:focus,
select:focus {
    outline: none;
    /* box-shadow: 0 0 0 3px rgba(49, 215, 202, 0.3); */
    /* Soft teal glow instead of harsh orange */
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* custom styling  */
/* .menu.right,
.top-menu-menu-links.menu,
.footer_mdgrey.mdgrey,
#footer {
    display: none !important;
} */

/* .header-v-new .head-cont___inner-sec {
    margin-top: 0 !important;
} */

/* .menu.left.dkgrey.desk {
    transform: translate(0px) !important;
} */

.follow-on,
.follow {
    height: 0px !important;
}

/* .header-v-new div#menu {
    padding-bottom: 27px !important;
    padding-top: 13px !important;
} */

.hero {
    padding-top: 160px !important;
    padding-bottom: 450px !important;
}

.eyebrow {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #006667;
    padding: 4px 10px;
    border-radius: 4px;
    margin: auto;
    margin-bottom: 30px;
    max-width:
        fit-content !important;
}

.hero h1 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
    max-width: 770px;
    margin: auto;
    display: block;
}

.hero h1 u {
    text-decoration: none !important;
    /* position: relative; */
}

.hero h1 u::after {
    display: block !important;
    content: "";
    width: 100%;
    height: 10px;
    background: url(../img/underline.webp);
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -5px;

}

.hero-subtitle {
    opacity: 1;
    max-width: 720px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: "Gilroy";
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;

}

.couple_count_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0px 15px 24px 0px #00484978;
    background: #31D7CA;
    border-radius: 70px;
    max-width: 378px;
    margin: auto;
    padding: 10px 10px;

}

.couple_count_wrapper p {
    font-family: "Gilroy";
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    color: #272D3F;
    text-align: left !important;
    margin: 0px !important;

}

.couple_count_wrapper p.social-proof-badge {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 25px;
    line-height: 100%;
    color: #272D3F;
    padding-bottom: 3px !important;
}

.couple_count_wrapper .left {
    max-width: 40%;
}

.couple_count_wrapper .left img {
    max-width: 100%;
    height: auto;
}

.couple_count_wrapper .right {
    max-width: 58%;
}

.value_prop_wrapper {
    background: #006667;
    border-radius: 20px;
    padding: 50px 40px 40px 40px;
    margin-top: 60px !important;
    margin-bottom: 50px !important;
}

.value_prop_wrapper h2 {
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 34px;
    line-height: 44px;
    text-align: center;
    color: #FFFFFF;
    margin: 0px;
    text-align: center;
}

.form-row.top_row {
    background: #F3F6FB;
    padding: 20px;
    margin: 0px !important;
}

.optional-fields {
    background: #F3F6FB !important;
    padding: 20px !important;
    margin: 0px !important;
    border: 0px !important;
    margin-top: 30px !important;
    padding-bottom: 1px !important;
    padding-top: 25px !important;
}

@media (max-width:991.98px) {
    .testimonial-card {
        max-width: 48%;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .tips-section {
               padding: 50px 0;
        padding-bottom: 60px;
    }

    .faq-section {
        padding: 10px 0;
        padding-bottom: 60px;
    }

    /* .header-v-new div#menu {
        padding-left: 15px;
    } */

    .generator-section {
        padding: 110px 0;
    }

    .timeline-step .timeline-content {
        margin-bottom: 0px;
        margin-top: 15px;
    }



    .timeline-container::before {
        display: none;
    }

    .timeline-container {
        flex-wrap: wrap;
    }

    .timeline-step {
        flex-direction: column-reverse;
    }

    .timeline-step .timeline-content::before {
        display: none;
    }

    .timeline-step {
        text-align: center;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        background: #FFFFFF;
        border-radius: 5px;
        text-align: left;
        padding: 18px;
        margin-bottom: 20px !important;
    }


    .timeline-content {
        box-shadow: none;
        text-align: left;
        padding: 0px;
    }



    .timeline-step {
        max-width: 48%;
        width: 100%;
        margin: 0px !important;
    }

    .timeline-container {
        align-items: unset;
    }

    .timeline-step {
        max-width: 48%;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .value-prop {
        max-width: 47%;
        width: 100%;
    }

    .generator-card {
        padding: 40px 30px;
        margin-bottom: -480px;
    }
}

@media (max-width:767.98px) {
    .couple_count_wrapper p {
        font-size: 12px;
    }

    .logo a svg {
        padding: 6px;
        padding-left: 16px;
    }

    .generator-card h2 {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 7px !important;
    }

    .results-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 25px !important;
    }

    .copy-all-section.compact {
        flex-direction: column;
    }

    .copy-hint {
        font-size: 14px;
        line-height: 20px;
        text-align: left;
    }

    .hashtag-card {
        padding: 15px;
    }

    .hashtag-text {
        font-size: 18px;
        line-height: 20px;
    }

    .hashtag-category {
        margin-bottom: 0px;
    }

    .btn-favorite svg {
        width: 20px;
        height: 17px;
    }

    .site-footer p {
        max-width: 400px !important;
    }

    .site-footer {
        padding: 15px 0px;
    }

    .social-proof-text {
        font-size: 16px;
        line-height: 26px;
    }

    .faq-section {
        background: #ffffff;
        padding: 0px 0px;
        padding-bottom: 50px;
    }

    .faq-section h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .title_wrapper .sub_heading {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-item {
        margin-top: 20px;
        padding: 0 15px;
    }

    .faq-question {
        font-size: 18px;
        line-height: 24px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-toggle {
        padding: 15px 0px;
    }

    .testimonials-section {
        padding: 50px 0px;
    }

    .testimonials-section h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .how-to-use-section {
        background: #F4F7FC;
    }

    .how-to-use-section .wrapper {
        padding: 50px 0px;
    }

    .how-to-use-section h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 30px !important;
    }

    .timeline-step .timeline-content {
        margin-bottom: 0px;
        margin-top: 15px;
    }

    .timeline-step {
        flex-direction: column-reverse;
    }

    .timeline-step .timeline-content::before {
        display: none;
    }

    .timeline-step {
        text-align: center;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        background: #FFFFFF;
        border-radius: 5px;
        text-align: left;
        padding: 18px;
        margin-bottom: 20px !important;
    }


    .timeline-content {
        box-shadow: none;
        text-align: left;
        padding: 0px;
    }

    .timeline-step {
        align-items: flex-start;
        max-width: 100%;
    }

    .tips-section {
        padding: 50px 0;
    }

    .tips-section h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .tip-card {
        max-width: 100% !important;
        width: 100% !important;
        flex-direction: column;
    }

    /* .header-v-new div#menu {
        padding-bottom: 0px !important;
        padding-top: 0px !important;
    } */

    /* .mobile-button .orange-menu-button {
        display: none;
    } */

    .generator-section {
        padding: 90px 0;
    }

    .generator-card h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 7px !important;
    }

    .generator-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px !important;
    }

    .form-row .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-row.top_row {
        flex-wrap: wrap;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .optional-fields {
        padding: 20px !important;
    }

    .btn-primary {
        margin-top: 20px !important;
        font-size: 16px;
        line-height: 20px;
    }

    .hero {
        padding-top: 120px !important;
        padding-bottom: 450px !important;
    }

    .eyebrow {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 10px;
        border-radius: 4px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 37px;
        line-height: 46px;
    }

    .hero h1 u {
        text-decoration: underline !important;
        text-underline-offset: 5px;
        text-decoration-color: #FC883A !important;
    }
.value-props {
    margin-top: 20px;
}
    .hero h1 u::after {
        display: none !important;

    }

    .couple_count_wrapper p.social-proof-badge {
        font-size: 16px;
        line-height: 20px;
    }

    .couple_count_wrapper .left {
        max-width: 30%;
    }

    .couple_count_wrapper {
        gap: 14px;
    }

    .value_prop_wrapper {
        padding: 20px 20px 20px 20px;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .value_prop_wrapper h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .value-prop {
        padding: 15px 15px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }

    .value-prop h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0px;
    }

    .value-prop p {
        font-size: 16px;
        line-height: 24px;
        margin: 0px !important;
    }

    .value-props {
        gap: 20px;
    }
}

@media (max-width:450.98px) {
    .site-footer p {
        margin: 0;
        font-size: 12px !important;
        max-width: 260px !important;
        margin: auto !important;
    }

}

/* custom styling  */