:root {
    --bg-color: #000000; /* Pure black to match logo background */
    --neon-pink: #ff007f;
    --neon-pink-light: #ff66b2;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --gold: #f2c94c;
    --white: #ffffff;
    --border-color: #333;
    
    /* Neon glow effect */
    --glow-text: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    --glow-text-subtle: 0 0 3px var(--neon-pink), 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
    --glow-box: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), inset 0 0 10px var(--neon-pink);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
.highlight {
    color: var(--neon-pink);
}
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    vertical-align: middle;
}

.btn-primary {
    background-color: var(--neon-pink);
    color: var(--white);
    border: none;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.btn-primary:hover {
    background-color: var(--neon-pink-light);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    padding: 9px 24px;
}

.btn-secondary i {
    color: var(--neon-pink);
    margin-right: 5px;
}

.btn-secondary:hover {
    background-color: rgba(255, 0, 127, 0.1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    min-width: 160px;
}

.nav-logo-img {
    max-width: 160px;
    height: auto;
}

.tm {
    font-size: 0.5em;
    vertical-align: super;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-pink);
}

.nav-btn {
    padding: 11px 22px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 80px 5% 60px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1.1;
    max-width: 580px;
}

.hero-content h1 {
    font-size: 4.8rem;
    margin-bottom: 24px;
    letter-spacing: -2px;
    font-weight: 800;
    line-height: 1;
}

.gold-heart {
    color: var(--gold);
    font-size: 1.5rem;
    vertical-align: super;
}

.hero-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 95%;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 127, 0.3));
}


/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 55px 8%;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.feature-item .icon {
    font-size: 3.8rem;
    color: var(--neon-pink);
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.small-heart-top {
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.3em;
    color: var(--neon-pink);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    font-weight: 800;
}

.feature-item p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.divider {
    width: 1px;
    background-color: rgba(255,255,255,0.1);
    height: 90px;
    margin: 0 15px;
}

/* We Tried It Section */
.we-tried-it {
    display: flex;
    padding: 60px 8% 80px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.left-content {
    flex: 1;
    max-width: 440px;
}

.we-tried-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.neon-line {
    border: none;
    height: 3px;
    background-color: var(--gold);
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 0 10px var(--gold);
}

.left-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.right-features {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    gap: 20px;
}

.feature-item-small {
    text-align: center;
    flex: 1;
}

.feature-item-small .icon {
    font-size: 3.2rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
}

.feature-item-small h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-item-small p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.circle-badge {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 20px;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.5);
    flex-shrink: 0;
}
.circle-badge .small-heart {
    color: var(--neon-pink);
    margin-top: 12px;
}

/* Renewal Option Section */
.renewal-option {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 60px 10%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--neon-pink);
    font-size: 1rem;
}

.renewal-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-color);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.neon-box {
    background-color: var(--bg-color);
    border: 3px solid var(--neon-pink);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--glow-box);
}

.neon-box h2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink), 0 0 3px var(--neon-pink);
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.neon-box i {
    color: var(--neon-pink);
    font-size: 3rem;
}

.renewal-text {
    text-align: left;
    max-width: 400px;
}

.renewal-text h4 {
    color: var(--neon-pink);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.renewal-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.check-list i {
    color: var(--neon-pink);
    margin-right: 10px;
}

.certificate-image img {
    width: 330px;
    height: auto;
    aspect-ratio: 7 / 10;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 10%;
    text-align: center;
}

.section-title-light {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title-light::before, .section-title-light::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
}
.section-title-light::before { left: -70px; }
.section-title-light::after { right: -70px; }

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1.8;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 5px;
}

.step .icon {
    font-size: 4rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    position: relative;
    font-weight: 300;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.step p {
    font-size: 1rem;
    color: #999;
    line-height: 1.4;
}

.arrow {
    color: var(--neon-pink);
    font-size: 2rem;
    margin-top: 25px;
}

.couple-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.couple-step-mobile {
    display: none; /* Hide mobile-only step on desktop */
}

.couple-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* What's Included Section */
.whats-included {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 60px 10%;
    text-align: center;
}

.included-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.included-item {
    text-align: center;
}

.included-item .icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
}

.included-item p {
    font-size: 1rem;
    font-weight: 600;
}

.included-badge {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 2px solid var(--neon-pink);
    border-radius: 10px;
    padding: 10px 20px;
    gap: 15px;
}

.included-badge .icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
}

.badge-text {
    text-align: left;
}

.badge-text h4 {
    color: var(--neon-pink);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* The Trap Agreement */
.trap-agreement {
    display: flex;
    padding: 80px 10%;
    justify-content: space-between;
    align-items: center;
}

.agreement-left {
    flex: 1;
}

.agreement-left h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.agreement-left .subtitle {
    color: var(--neon-pink);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.agreement-left p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.agreement-middle {
    flex: 1.5;
}

.agreement-middle ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.agreement-middle li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
}

.agreement-middle i {
    color: var(--neon-pink);
    margin-right: 10px;
    margin-top: 5px;
}

.agreement-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.no-courthouse-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.4));
}

/* Footer Section */
.footer {
    position: relative;
    padding: 80px 10% 20px;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    gap: 10%;
}

.tm-love-img {
    max-width: 350px;
    height: auto;
}

.footer-cta {
    text-align: left;
    max-width: 400px;
}

.footer-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hashtag {
    font-weight: 600;
    color: var(--text-color) !important;
    margin-top: 15px;
    font-size: 0.9rem;
}

.city-view-img {
    position: absolute;
    bottom: -20px;
    right: -120px;
    width: 480px;
    max-width: none;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--neon-pink);
}

/* Already Married Banner Section */
.already-married-banner-section {
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: var(--bg-color);
}

.already-married-banner {
    background-color: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    border-right: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    gap: 60px;
    width: 100%;
}

.amb-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amb-left p {
    color: var(--text-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.amb-heart {
    color: var(--gold);
    font-size: 1.1rem;
}

.amb-heart-small {
    color: var(--gold);
    font-size: 1rem;
}

.amb-dot {
    display: none;
}

.amb-divider {
    width: 2px;
    height: 120px;
    background-color: #ccc;
}

.amb-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.amb-calendar {
    font-size: 5.5rem;
    color: var(--gold);
}

.amb-text h4 {
    color: var(--text-color);
    font-size: 2rem;
    margin: 0;
    line-height: 1.3;
}

.amb-underline {
    height: 4px;
    background-color: var(--neon-pink);
    width: 80px;
    margin-top: 5px;
}

/* Trap Agreement Form Section */
.trap-agreement-form-section {
    background-color: var(--bg-color);
    padding: 60px 5%;
    color: var(--text-color);
}

.ta-container {
    background-color: var(--bg-color);
    max-width: 1450px;
    margin: 0 auto;
    border-radius: 8px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(255,0,127,0.1);
    color: var(--text-color);
}

.ta-header, .ta-header-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ta-header h2 {
    font-size: 2rem;
    margin: 0;
}

.ta-header-small h3 {
    font-size: 1.5rem;
    margin: 0;
}

.ta-heart {
    color: var(--neon-pink);
    font-size: 1.2rem;
}

.ta-top-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ta-left {
    flex: 1.1;
}

.ta-intro {
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 1.25rem;
    line-height: 1.7;
}

.ta-checklist {
    list-style: none;
    padding-left: 0;
}

.ta-checklist > li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 30px;
    font-size: 1.15rem;
    line-height: 1.6;
}

.ta-checklist > li > i {
    color: var(--neon-pink);
    position: absolute;
    left: 0;
    top: 4px;
}

.ta-sublist {
    list-style: none;
    margin-top: 10px;
    margin-left: 25px;
}

.ta-sublist li {
    margin-bottom: 8px;
    position: relative;
    font-size: 1.05rem;
}

.ta-sublist li::before {
    content: "•";
    color: var(--neon-pink);
    position: absolute;
    left: -15px;
    font-size: 1.2rem;
    top: -2px;
}

.ta-right {
    flex: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ta-certificate-img {
    max-width: 65%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ta-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0;
}

.ta-details-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.ta-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.ta-field label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
    letter-spacing: 0.3px;
}

.ta-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ta-input-wrap i {
    position: absolute;
    left: 15px;
    color: #666;
}

.ta-input-wrap input {
    padding-left: 40px !important;
}

.ta-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    background-color: #fdfdfd;
}

.ta-field input[readonly] {
    background-color: #f5f5f5;
    color: #555;
    cursor: default;
}
.ta-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.ta-field input[type="file"] {
    padding: 9px 15px;
    background-color: #fdfdfd;
}

.ta-submit-wrap {
    margin-top: 40px;
}

.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--neon-pink);
    color: #fff;
    font-weight: 800;
    text-align: center;
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #000;
    color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

.btn-payment {
    display: block;
    width: 100%;
    background-color: #000;
    color: var(--neon-pink);
    font-weight: 800;
    text-align: center;
    padding: 18px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3rem;
    border: 2px solid var(--neon-pink);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
}

.btn-payment:hover {
    background-color: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-pink);
}

.ta-participants-sub {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    margin-top: -20px;
}

.ta-participants-row {
    display: flex;
    gap: 30px;
}

.ta-participant {
    flex: 1;
}

.ta-participant h4 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    min-height: 40px;
}

.ta-participant h4 span {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: none;
    font-family: 'Inter', sans-serif;
}

.ta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding: 30px;
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
}

.ta-footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1.2;
}

.ta-footer-logo {
    width: 60px;
    height: auto;
}

.ta-witness-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 2px;
}

.ta-witness-name {
    font-family: 'Yellowtail', cursive;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 2px;
    line-height: 1;
}

.ta-witness-sub {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

.ta-footer-middle {
    flex: 1;
}

.ta-footer-right {
    flex: 0.8;
    text-align: right;
}

.ta-id-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.ta-id-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-pink);
    font-family: 'Oswald', sans-serif;
}

/* Trap Agreement & Renewal Sidebar Layout */
.trap-and-renewal-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
}

.ta-top-section-col {
    flex: 1.2;
}

.ta-top-section-col .ta-top-content {
    gap: 20px;
}

.ta-renewal-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #fdfaf7;
    padding: 30px 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.renewal-5yr-img {
    flex: 0 0 auto;
    width: 200px;
    height: auto;
    object-fit: contain;
}

.ta-renewal-banner .renewal-middle {
    flex: 1.2;
    text-align: left;
}

.ta-renewal-banner h3 {
    font-size: 1.8rem;
    color: #e7005f;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
}

.ta-renewal-banner .renewal-desc {
    font-size: 1.1rem;
    color: #222;
    line-height: 1.4;
}

.ta-renewal-banner .renewal-right-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ta-renewal-banner .renewal-list {
    margin-bottom: 20px;
    text-align: left;
    list-style: none;
    padding: 0;
}

.ta-renewal-banner .renewal-list li {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.ta-renewal-banner .renewal-list i {
    color: var(--neon-pink);
    margin-right: 10px;
}

.ta-renewal-banner .btn-renew {
    font-size: 1.1rem;
    padding: 12px 25px;
}



.renewal-right {
    flex: 1.1;
}

.renewal-right h3 {
    color: #e7005f;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.renewal-desc {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #222;
}

.renewal-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.renewal-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.renewal-list li i {
    color: #e7005f;
    font-size: 1.1rem;
}

.btn-renew {
    display: inline-block;
    background-color: #e7005f;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-renew:hover {
    background-color: #c0004f;
    transform: translateY(-2px);
}

/* --- Desktop overrides for Hamburger --- */
.nav-toggle, .nav-toggle-label {
    display: none;
}

/* --- Mobile View (Elegant & Non-stacked) --- */
@media (max-width: 1024px) {
    /* Navbar & Hamburger Menu */
    .navbar {
        position: relative;
    }
    .nav-btn {
        display: none; /* Hide button on mobile or move it into menu */
    }
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 100;
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--white);
        height: 2px;
        width: 30px;
        position: relative;
        transition: all 0.3s ease;
    }
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    .nav-toggle-label span::before { bottom: 8px; }
    .nav-toggle-label span::after { top: 8px; }
    
    /* Toggle animations */
    #nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    #nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    #nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
    
    /* Dropdown menu */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-bottom: 2px solid var(--neon-pink);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 99;
    }
    #nav-toggle:checked ~ .nav-links {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    /* Hero - Overlapping Badge */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        position: relative;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-image {
        position: relative;
        margin-top: 40px; /* Space it nicely below buttons */
        z-index: 2;
    }
    .badge-img {
        max-width: 250px;
    }
    
    /* Features - 2x2 Grid */
    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        justify-content: center;
    }
    .features .divider {
        display: none; /* Remove flexbox dividers from grid layout */
    }
    .feature-item {
        border-right: none;
        padding: 10px;
    }
    /* Add border to the 1st and 3rd visual items (DOM children 1 and 5) */
    .feature-item:nth-child(4n+1) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    /* We Tried It */
    .we-tried-it {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }
    .left-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .right-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .circle-badge {
        grid-column: span 2;
        margin: 20px auto;
    }
    
    /* Horizontal Scroll / Carousel for How It Works */
    .steps-container {
        display: block; /* Override previous */
    }
    .steps-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0 40px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for cleaner look */
    }
    .steps-row::-webkit-scrollbar {
        display: none;
    }
    .step {
        flex: 0 0 70%; /* Show part of next card */
        scroll-snap-align: center;
        background: rgba(255,255,255,0.05);
        padding: 30px;
        border-radius: 15px;
    }
    .arrow {
        display: none; /* Hide arrows in swipe mode */
    }
    .couple-image-container {
        display: none; /* Hide desktop couple image */
    }
    .couple-step-mobile {
        display: flex; /* Override display:none from desktop */
        align-items: center;
        justify-content: center;
        padding: 0; /* Remove step padding so image fills the card nicely */
    }
    .couple-step-mobile img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
    /* What's Included - 2x2 Grid */
    .included-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .included-item::after {
        display: none;
    }
    .included-badge {
        grid-column: span 2;
        margin-top: 20px;
    }
    
    /* Renewal Option */
    .renewal-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .renewal-text {
        padding: 30px 0;
    }
    .certificate-image img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Agreement */
    .trap-agreement {
        flex-direction: column;
        padding: 50px 5%;
    }
    .agreement-left, .agreement-middle, .agreement-right {
        max-width: 100%;
        margin: 0 auto 30px auto;
        text-align: center;
    }
    .agreement-middle ul li {
        justify-content: center;
    }
    
    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .city-view-img {
        position: relative; /* Change from absolute to sit nicely */
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        right: auto;
        bottom: auto;
        opacity: 0.8;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .already-married-banner {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    .amb-left p {
        justify-content: center;
    }
    .amb-divider {
        width: 100%;
        height: 1px;
    }
    .amb-right {
        flex-direction: column;
        text-align: center;
    }
    .amb-underline {
        margin: 5px auto 0;
    }
    
    .ta-top-content, .ta-details-row, .ta-participants-row, .ta-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .ta-details-grid, .ta-details-grid.col-2 {
        grid-template-columns: 1fr;
    }
    
    .ta-footer-right {
        text-align: left;
    }
    
    .trap-and-renewal-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .ta-top-section-col .ta-top-content {
        flex-direction: column;
    }
    
    .ta-renewal-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .ta-renewal-banner .renewal-middle, .ta-renewal-banner .renewal-right-list {
        text-align: center;
        align-items: center;
    }
}
