/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* CSS Variables for consistent styling */
:root {
    --primary-color: #2c0b2e; /* Dark plum/burgundy */
    --primary-light: #4a154c;
    --accent-color: #d4af37; /* Gold */
    --accent-hover: #e8c655;
    --bg-light: #fff8f0; /* Cream/Beige */
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease-in-out;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; }
p { margin-bottom: 1rem; font-size: 1.05rem; }

.subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); }
.bg-black { background-color: #1a051b; }

.text-center { text-align: center; }
.text-white h1, .text-white h2, .text-white h3, .text-white p, .text-white { color: var(--text-light); }
.text-light { color: rgba(255,255,255,0.7); }

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid var(--accent-color);
    object-fit: cover;
    max-height: 500px;
    width: 100%;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.align-items-center { align-items: center; }

/* Cards & Components */
.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.image-box img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
}

.feature-card svg {
    margin-bottom: 15px;
}

.feature-card h4 {
    color: var(--accent-color);
}

.icon-box {
    text-align: center;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.icon-box:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent-color);
}

.icon-box svg {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Cities */
.city-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    group: city;
}

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

.city-card:hover img {
    transform: scale(1.1);
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(44,11,46,0.9), transparent);
    padding: 20px;
    color: var(--text-light);
    transform: translateY(60%);
    transition: var(--transition);
}

.city-card:hover .city-info {
    transform: translateY(0);
}

.city-info h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.city-info p {
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s 0.2s;
}

.city-card:hover .city-info p {
    opacity: 1;
}

/* Dictionary */
.term-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Profiles */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.profile-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.profile-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-info h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.profile-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Pricing */
.pricing-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    text-align: center;
}

.pricing-card.premium {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.prices {
    margin: 20px 0;
    color: var(--accent-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
    font-size: 1.1rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.price-row small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.mommy-card {
    background: rgba(255,255,255,0.08);
    border-color: #e8c655;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Stories */
.story-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
}

.story-content p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.story-content strong {
    color: var(--primary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-image: linear-gradient(rgba(44, 11, 46, 0.9), rgba(44, 11, 46, 0.9)), url('images/blurfemale18.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Footer */
.footer {
    padding: 3rem 0;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    margin: 0 10px;
}

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

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-ctas { 
        justify-content: center; 
        flex-direction: column;
        white-space: normal;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .reverse { flex-direction: column-reverse; }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    
    .pricing-card.premium { transform: scale(1); margin-top: 20px; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2rem; }
    .section { padding: 3rem 0; }
    .profile-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Become Perfect Sugar Mommy Page Styles (bpm- prefix)
   ========================================================================== */

.bpm-hero {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bpm-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.bpm-title {
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bpm-subtitle-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.bpm-content {
    padding: 5rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.bpm-article {
    max-width: 900px;
    margin: 0 auto;
}

.bpm-article h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.bpm-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.bpm-article p {
    margin-bottom: 1.5rem;
    color: #444;
}

.bpm-text-highlight {
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(212, 175, 55, 0.15);
    padding: 0 5px;
    border-radius: 3px;
}

.text-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

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

.bpm-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.bpm-step-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.bpm-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bpm-step-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.bpm-step-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

.bpm-quote {
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    margin: 3rem 0;
    color: #555;
    font-size: 1.25rem;
    line-height: 1.7;
    background: rgba(212, 175, 55, 0.05);
    padding: 20px 20px 20px 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.bpm-image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.bpm-image-row img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.bpm-image-row img:hover {
    transform: scale(1.02);
}

.bpm-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.bpm-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 600px;
}

.bpm-table th, .bpm-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.bpm-table th {
    background: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.bpm-table td strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.bpm-table tr:last-child td {
    border-bottom: none;
}

.bpm-table tbody tr {
    transition: var(--transition);
}

.bpm-table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Mobile Adjustments for BPM Page */
@media (max-width: 768px) {
    .bpm-title { font-size: 2.5rem; }
    .bpm-article h2 { font-size: 1.8rem; }
    .bpm-image-row { grid-template-columns: 1fr; gap: 20px; }
    .bpm-image-row img { height: 300px; }
    .bpm-quote { font-size: 1.1rem; padding: 15px; }
}

/* ==========================================================================
   Sugar Mommy Polska Culture Page Styles (smp- prefix)
   ========================================================================== */

.smp-hero {
    padding: 10rem 0 8rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    border-bottom: 5px solid var(--accent-color);
}

.smp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(44, 11, 46, 0.9), rgba(26, 5, 27, 0.7));
    z-index: 1;
}

.smp-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.smp-title {
    color: var(--accent-color);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.smp-subtitle-desc {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.5);
    max-width: 700px;
    margin: 0 auto;
}

.smp-content {
    padding: 6rem 0;
    font-size: 1.15rem;
    line-height: 1.8;
    background-color: var(--bg-white);
}

.smp-article {
    max-width: 900px;
    margin: 0 auto;
}

.smp-article h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.smp-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.smp-article p {
    margin-bottom: 1.8rem;
    color: #333;
    text-align: justify;
}

.smp-text-highlight {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.smp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 4rem 0;
}

.smp-feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.smp-feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.smp-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.smp-feature-box:hover::before {
    transform: scaleX(1);
}

.smp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--accent-color);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(44, 11, 46, 0.2);
    transition: transform 0.4s ease;
}

.smp-feature-box:hover .smp-icon {
    transform: rotateY(180deg);
}

.smp-feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.smp-feature-box p {
    font-size: 1rem;
    text-align: center;
    color: #666;
}

.smp-quote {
    font-style: italic;
    border-left: 5px solid var(--accent-color);
    margin: 4rem 0;
    color: #444;
    font-size: 1.35rem;
    line-height: 1.8;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    padding: 35px 40px;
    border-radius: 0 20px 20px 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.smp-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: var(--font-heading);
    line-height: 1;
}

.smp-image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 4rem 0;
}

.smp-image-row img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.smp-image-row img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
    z-index: 2;
}

.smp-table-wrapper {
    overflow-x: auto;
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.smp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 700px;
}

.smp-table th, .smp-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.7;
}

.smp-table th {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.smp-table td strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.smp-table tr:last-child td {
    border-bottom: none;
}

.smp-table tbody tr {
    transition: all 0.3s ease;
}

.smp-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

/* Mobile Adjustments for SMP Page */
@media (max-width: 768px) {
    .smp-title { font-size: 2.8rem; }
    .smp-article h2 { font-size: 2rem; }
    .smp-image-row { grid-template-columns: 1fr; gap: 25px; }
    .smp-image-row img { height: 280px; }
    .smp-quote { font-size: 1.15rem; padding: 25px 25px 25px 35px; }
    .smp-features-grid { grid-template-columns: 1fr; gap: 25px; }
    .smp-hero { padding: 6rem 0; }
}

/* ==========================================================================
   Sugar Mommy Polska Specific Header & Footer Overrides
   ========================================================================== */

/* Make navbar transparent over hero section */
.smp-page .navbar {
    background-color: rgba(26, 5, 27, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Add a beautiful gradient border to footer and more padding */
.smp-page .footer {
    position: relative;
    padding: 5rem 0 3rem;
    background-image: radial-gradient(circle at center, #1a051b 0%, #000 100%);
    border-top: 4px solid var(--accent-color);
}

.smp-page .footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

/* Make SVG icons bigger and animated */
.smp-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.smp-feature-box:hover .smp-icon svg {
    transform: scale(1.15);
}

/* Eye-catching gradient text for SMP specific highlights */
.smp-page .smp-title {
    background: linear-gradient(to right, #d4af37, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* ==========================================================================
   Temat Randek Sugar Mommy Page Styles (trm- prefix)
   ========================================================================== */

.trm-page {
    background-color: var(--bg-light);
}

.trm-hero {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 3px solid var(--accent-color);
}

.trm-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 5, 27, 0.7);
    z-index: 1;
}

.trm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.trm-title {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trm-subtitle-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
}

.trm-content {
    padding: 5rem 0;
}

.trm-article {
    max-width: 850px;
    margin: 0 auto;
}

.trm-article h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.trm-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.trm-text-highlight {
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.trm-image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.trm-image-row img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.trm-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.trm-feature-box {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.trm-feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.trm-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.trm-icon svg {
    background: var(--primary-color);
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.trm-feature-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trm-quote {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin: 3rem 0;
    text-align: center;
    border-left: 5px solid var(--accent-color);
}

.trm-table-wrapper {
    margin: 3rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.trm-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #fff;
}

.trm-table th, .trm-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.trm-table th {
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.trm-table td strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Mobile Adjustments for TRM Page */
@media (max-width: 768px) {
    .trm-title { font-size: 2.5rem; }
    .trm-image-row { grid-template-columns: 1fr; gap: 20px; }
    .trm-image-row img { height: 300px; }
    .trm-hero { padding: 5rem 0; }
}

/* ==========================================================================
   Sugar Mommy vs Cougar Page Styles (smc- prefix)
   ========================================================================== */

.smc-page {
    background-color: var(--bg-white);
}

.smc-hero {
    padding: 9rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 4px solid var(--accent-color);
}

.smc-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(44, 11, 46, 0.85) 0%, rgba(26, 5, 27, 0.95) 100%);
    z-index: 1;
}

.smc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.smc-title {
    font-size: 3.8rem;
    color: #fff;
    margin: 1.5rem 0;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.smc-subtitle-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.smc-content {
    padding: 6rem 0;
}

.smc-article {
    max-width: 900px;
    margin: 0 auto;
}

.smc-article h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-top: 3.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.smc-article h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -8px;
    left: 0;
}

.smc-article p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.8rem;
}

.smc-text-highlight {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px dashed var(--accent-color);
    padding-bottom: 2px;
}

.smc-image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 4rem 0;
}

.smc-image-row img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.smc-image-row img:hover {
    transform: translateY(-8px);
}

.smc-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 4rem 0;
}

.smc-comparison-box {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.smc-comparison-box:hover {
    transform: translateY(-5px);
}

.smc-sugar-box {
    background: linear-gradient(145deg, #fff, #fff8f0);
    border: 2px solid var(--accent-color);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.smc-cougar-box {
    background: linear-gradient(145deg, #fff, #f9f9f9);
    border: 2px solid #ccc;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.smc-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.smc-comparison-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.smc-comparison-box p {
    font-size: 1.05rem;
    text-align: justify;
    margin-bottom: 0;
}

.smc-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    padding: 40px;
    margin: 4rem 0;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    position: relative;
}

.smc-quote::before, .smc-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.5;
    position: absolute;
    font-family: var(--font-heading);
}

.smc-quote::before { top: 10px; left: 20px; }
.smc-quote::after { bottom: -20px; right: 20px; }

.smc-table-wrapper {
    margin: 4rem 0;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.smc-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: #fff;
}

.smc-table th, .smc-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.smc-table th {
    background: var(--primary-color);
    color: #fff;
    font-size: 1.25rem;
    width: 33.33%;
}

.smc-table th:first-child {
    background: #1a051b;
    color: var(--accent-color);
}

.smc-table td strong {
    color: var(--primary-color);
    font-size: 1.15rem;
}

/* Mobile Adjustments for SMC Page */
@media (max-width: 768px) {
    .smc-title { font-size: 2.8rem; }
    .smc-image-row { grid-template-columns: 1fr; gap: 25px; margin: 3rem 0; }
    .smc-image-row img { height: 300px; }
    .smc-comparison-grid { grid-template-columns: 1fr; gap: 30px; margin: 3rem 0; }
    .smc-hero { padding: 6rem 0; }
    .smc-article h2 { font-size: 2rem; }
    .smc-quote { font-size: 1.2rem; padding: 30px 20px; }
}

/* ==========================================================================
   Long-Term Relationship Page Styles (ltr- prefix)
   ========================================================================== */

.ltr-page {
    background-color: var(--bg-light);
}

.ltr-hero {
    padding: 10rem 0;
    background-size: cover;
    background-position: center 30%;
    position: relative;
    border-bottom: 5px solid var(--accent-color);
}

.ltr-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 5, 27, 0.7), rgba(44, 11, 46, 0.9));
    z-index: 1;
}

.ltr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.ltr-title {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin: 1.2rem 0;
    line-height: 1.2;
    text-shadow: 1px 3px 10px rgba(0,0,0,0.6);
}

.ltr-subtitle-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.ltr-content {
    padding: 5rem 0;
}

.ltr-article {
    max-width: 850px;
    margin: 0 auto;
}

.ltr-article h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
}

.ltr-article p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.6rem;
}

.ltr-article ul {
    margin: 2rem 0 3rem 2rem;
}

.ltr-article ul li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
    position: relative;
}

.ltr-article ul li strong {
    color: var(--primary-color);
}

.ltr-text-highlight {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.ltr-image-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3.5rem 0;
}

.ltr-image-row img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ltr-image-row img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.ltr-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 3.5rem 0;
}

.ltr-feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ltr-feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.ltr-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.ltr-icon svg {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 12px;
    border-radius: 50%;
    width: 65px;
    height: 65px;
}

.ltr-feature-box h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ltr-quote {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 35px 40px;
    border-radius: 12px;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    margin: 4rem 0;
    text-align: center;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ltr-table-wrapper {
    margin: 4rem 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.ltr-table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    background: #fff;
}

.ltr-table th, .ltr-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    width: 50%;
    line-height: 1.6;
}

.ltr-table th {
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
}

.ltr-table th:last-child {
    background: var(--accent-color);
    color: var(--primary-color);
}

.ltr-table td strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Mobile Adjustments for LTR Page */
@media (max-width: 768px) {
    .ltr-title { font-size: 2.5rem; }
    .ltr-image-row { grid-template-columns: 1fr; gap: 20px; }
    .ltr-image-row img { height: 300px; }
    .ltr-features-grid { grid-template-columns: 1fr; gap: 20px; }
    .ltr-hero { padding: 6rem 0; }
    .ltr-article h2 { font-size: 1.8rem; }
    .ltr-quote { font-size: 1.15rem; padding: 25px; }
}
