/* Sugar Baby Adelaide - Main Stylesheet */
/* Inspired by elegant, modern design with white/gold/rose/black color scheme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
}

h3 {
    font-size: 1.8rem;
    color: #444;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
    text-decoration: none;
}

.nav-cta {
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 194, 194, 0.1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/homepage.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

/* Page-specific hero backgrounds */
body[data-page="sugar-daddy"] .hero::before {
    background: url('images/sugardaddydating.jpg') center/cover;
    opacity: 0.15;
}

body[data-page="sugar-baby"] .hero::before {
    background: url('images/sugarbaby.jpg') center/cover;
    opacity: 0.15;
}

body[data-page="sugar-mommy"] .hero::before {
    background: url('images/sugarmommydating.jpg') center/cover;
    opacity: 0.15;
}

body[data-page="sugar-daddy-app"] .hero::before {
    background: url('images/app.jpg') center/cover;
    opacity: 0.15;
}

body[data-page="fun-events"] .hero::before {
    background: url('images/beautiful-couple-spend-time-summer-park-near-car1-695x463.jpg') center/cover;
    opacity: 0.15;
}

body[data-page="first-date-gift"] .hero::before,
body[data-page="first-date-gift"] .hero-small::before {
    background: url('images/glamour-stylish-blond-bride-with-bright-makeup-with-red-lips1-1000x667.jpeg') center/cover;
    opacity: 0.15;
}

/* Content Images Styles */
.content-with-images {
    position: relative;
    margin: 2rem 0;
}

.content-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    object-fit: cover;
}

.content-image.left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.content-image.right {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-image.center {
    display: block;
    margin: 2rem auto;
    clear: both;
}

/* Clear floats after content with images */
.content-with-images::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive adjustments for content images */
@media (max-width: 768px) {
    .content-image {
        max-width: 100%;
        float: none !important;
        display: block;
        margin: 1rem auto;
    }
    
    .content-image.left,
    .content-image.right {
        float: none;
        margin: 1rem auto;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
    text-decoration: none;
}

/* Cards */
.card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

/* For 5 items - 3 in first row, 2 in second row centered */
.card-grid:has(.card:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid:has(.card:nth-child(5):last-child) .card:nth-child(4),
.card-grid:has(.card:nth-child(5):last-child) .card:nth-child(5) {
    grid-column: span 1;
}

.card-grid:has(.card:nth-child(5):last-child) .card:nth-child(4) {
    grid-column-start: 1;
    margin-left: auto;
    margin-right: 1rem;
}

.card-grid:has(.card:nth-child(5):last-child) .card:nth-child(5) {
    grid-column-start: 3;
    margin-left: 1rem;
    margin-right: auto;
}

/* For 6 items - 3 in first row, 3 in second row */
.card-grid:has(.card:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

/* Alternative approach for 5 items using CSS Grid subgrid simulation */
.card-grid-5 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.card-grid-5 .card:nth-child(1) { grid-column: 1 / 3; }
.card-grid-5 .card:nth-child(2) { grid-column: 3 / 5; }
.card-grid-5 .card:nth-child(3) { grid-column: 5 / 7; }
.card-grid-5 .card:nth-child(4) { grid-column: 2 / 4; }
.card-grid-5 .card:nth-child(5) { grid-column: 4 / 6; }

/* Profile Cards */
.profile-card {
    text-align: center;
    position: relative;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid #d4af37;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* Category Cards */
.category-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.category-card:hover .category-image {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.category-card p {
    color: #34495e;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Article Images - Mobile Friendly */
.article-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 200px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px auto;
    display: block;
}

/* Inline Article Images */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Blog Images */
.blog-image, .blog-thumbnail {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.blog-image:hover, .blog-thumbnail:hover {
    transform: scale(1.02);
}

/* App image styles */
.app-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* App Screenshots Section */
.app-screenshots-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.app-screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.app-screenshots-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.screenshot-item {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.screenshot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.screenshot-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: #d4af37;
}

.screenshot-item:hover::before {
    left: 100%;
}

.screenshot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    filter: brightness(0.95);
}

.screenshot-item:hover .screenshot-image {
    filter: brightness(1) contrast(1.1);
    border-color: #d4af37;
}

.screenshot-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.screenshot-item:hover h4 {
    color: #d4af37;
}

.screenshot-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.screenshot-item:hover p {
    color: #5a6c7d;
}

/* Event Images */
.event-image {
    width: 100%;
    height: auto;
    min-height: 180px;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.event-image:hover {
    transform: scale(1.02);
}

/* Related Images */
.related-image {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-image:hover {
    transform: scale(1.02);
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.profile-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.profile-quote {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Feature Card Styles for Sugar Daddy App */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Enhanced Features Grid - Three Columns */
.features-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

/* Enhanced Feature Item with Images */
.feature-item-enhanced {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-item-enhanced:hover .feature-image {
    transform: scale(1.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Practices Grid for Sugar Daddy App */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.practice-item {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.practice-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.practice-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.practice-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #d4af37;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* Affiliate Program Styles */
.payout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payout-tier {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payout-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.payout-tier h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tier-details p {
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tier-details ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.tier-details li:last-child {
    border-bottom: none;
}

.tier-details li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 1rem auto;
    object-fit: cover;
}

.step h3 {
    margin: 1rem 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #d4af37;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.testimonial-earnings {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #fff;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #999;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #d4af37 0%, #f4c2c2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button.primary {
    background: white;
    color: #d4af37;
    border-color: white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.cta-features .feature {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: white;
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Article Sidebar Styles */
.article-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.related-articles h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid #f4c2c2;
    padding-bottom: 0.5rem;
}

.related-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-item:hover {
    background: #f8f9fa;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.related-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.related-item:hover .related-image {
    transform: scale(1.05);
}

.related-content {
    flex: 1;
    min-width: 0;
}

.related-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.related-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: #d4af37;
}

.related-date {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Newsletter Signup in Sidebar */
.newsletter-signup {
    background: linear-gradient(135deg, #f4c2c2 0%, #d4af37 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: white;
}

.newsletter-signup h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.newsletter-signup p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.newsletter-input:focus {
    outline: none;
    background: white;
}

.newsletter-form .btn {
    background: white;
    color: #d4af37;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Sidebar Widget Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #f4c2c2;
    padding-bottom: 0.5rem;
}

.sidebar-widget.profile-optimizer {
    border-left: 4px solid #d4af37;
}

.sidebar-widget.newsletter {
    background: linear-gradient(135deg, #f4c2c2 0%, #d4af37 100%);
    color: white;
    border: none;
}

.sidebar-widget.newsletter h3 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.sidebar-widget.newsletter p {
    color: rgba(255,255,255,0.9);
}

/* Related Article Styles (Alternative Structure) */
.related-article {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-article:hover {
    background: #f8f9fa;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.related-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.related-article:hover img {
    transform: scale(1.05);
}

.article-info {
    flex: 1;
    min-width: 0;
}

.article-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.article-info h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info h4 a:hover {
    color: #d4af37;
}

.article-info .date {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card.featured {
    grid-column: span 1;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: #f4c2c2;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #d4af37;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

.blog-thumbnail {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-info {
    flex: 1;
}

.blog-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.blog-info p {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.category-card h3 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.2rem;
}

.category-card p {
    margin: 0 0 1rem 0;
    color: #666;
}

.post-count {
    display: inline-block;
    background: #f4c2c2;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #f4c2c2;
}

.story-content h3 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.story-content p {
    margin: 0 0 1rem 0;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.story-author {
    color: #333;
    font-weight: 500;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.topic-item h3 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.topic-item p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.5;
}

.topic-link {
    color: #f4c2c2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.topic-link:hover {
    color: #d4af37;
}

.newsletter-signup {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.newsletter-signup h2 {
    margin: 0 0 1rem 0;
    color: #d4af37;
}

.newsletter-signup p {
    margin: 0 0 2rem 0;
    color: #666;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d4af37;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.article-content {
    padding: 3rem 0;
    background: #f8f9fa;
}

.full-article {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0 2rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #666;
}

.article-hero {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    margin: 2rem 0 1rem 0;
    color: #d4af37;
}

.article-body h3 {
    margin: 1.5rem 0 0.5rem 0;
    color: #333;
}

.article-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Safety Page Styles */
.verification-process {
    margin-top: 2rem;
}

.verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.verification-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #d4af37;
}

.verification-step h3 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.verification-step p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.safety-tips {
    margin-top: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Comparison Table Styles for Sugar Daddy App */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header > div:last-child {
    border-right: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.comparison-row:hover {
    background-color: #f8f9fa;
}

.comparison-row > div {
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    font-size: 1rem;
    line-height: 1.5;
}

.comparison-row > div:last-child {
    border-right: none;
}

.comparison-row .feature {
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

.comparison-row .our-platform {
    color: #27ae60;
    font-weight: 600;
}

.comparison-row .other-apps {
    color: #e74c3c;
    font-weight: 600;
}

.tip-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.tip-category h3 {
    background: #d4af37;
    color: white;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.tip-content {
    padding: 1.5rem;
}

.tip-content p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.tip-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tip-content li {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

.safety-features {
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.feature-item h3 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.2rem;
}

.feature-item > p {
    margin: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

.feature-details h4 {
    margin: 1.5rem 0 0.5rem 0;
    color: #333;
    font-size: 1rem;
}

.feature-details ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
}

.feature-details li {
    margin: 0.25rem 0;
    color: #666;
    line-height: 1.5;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.privacy-section h3 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.privacy-section p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.privacy-section h4 {
    margin: 1rem 0 0.5rem 0;
    color: #333;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin: 0.25rem 0;
    color: #666;
    line-height: 1.5;
}

.abuse-handling {
    margin-top: 2rem;
}

.response-process {
    margin-top: 2rem;
}

.process-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #f4c2c2;
}

.process-step h4 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.process-step ul {
    margin: 0;
    padding-left: 1.5rem;
}

.process-step li {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

.report-types {
    margin-top: 2rem;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.report-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.report-item h4 {
    margin: 0 0 1rem 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.report-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #dc3545;
}

.emergency-section h3 {
    margin: 0 0 1rem 0;
    color: #dc3545;
    font-size: 1.1rem;
}

.emergency-section p {
    margin: 0 0 1rem 0;
    color: #666;
    line-height: 1.6;
}

.emergency-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.emergency-section li {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-item p {
    color: #333;
    line-height: 1.6;
}

.step-item ul {
    text-align: left;
    margin-top: 15px;
}

.step-item ul li {
    margin-bottom: 8px;
    color: #333;
}

/* Notice Grid */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.notice-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #f4c2c2;
}

.notice-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.notice-item p {
    color: #333;
    line-height: 1.6;
}

/* Safety Tips */
.safety-tips {
    margin-top: 40px;
}

.tip-category {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tip-category h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-category ul {
    list-style: none;
    padding: 0;
}

.tip-category ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.tip-category ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f4c2c2;
    font-weight: bold;
}

.tip-category ul li strong {
    color: #d4af37;
}

/* Privacy Highlights */
.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.privacy-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.privacy-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.privacy-item p {
    color: #333;
    line-height: 1.6;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #f4c2c2;
}

.resource-item h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.resource-item p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Design */
/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
    }
    
    .card-grid:has(.card:nth-child(6):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-grid-5 {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
    }
    
    .card-grid-5 .card:nth-child(1) { grid-column: 1 / 3; }
    .card-grid-5 .card:nth-child(2) { grid-column: 3 / 5; }
    .card-grid-5 .card:nth-child(3) { grid-column: 1 / 3; }
    .card-grid-5 .card:nth-child(4) { grid-column: 3 / 5; }
    .card-grid-5 .card:nth-child(5) { grid-column: 2 / 4; }

    /* Tablet responsive for Sugar Daddy App features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .practices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .comparison-header {
        grid-template-columns: 2fr 1.2fr 1.2fr;
        font-size: 1rem;
    }

    .comparison-row {
        grid-template-columns: 2fr 1.2fr 1.2fr;
    }

    .comparison-header > div,
    .comparison-row > div {
        padding: 1.2rem 0.8rem;
        font-size: 0.95rem;
    }
    
    /* Tablet responsive for enhanced features grid */
    .features-grid-three {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    /* Tablet Screenshots Gallery Optimization */
    .app-screenshots-section {
        padding: 60px 0;
    }
    
    .app-screenshots-section h2 {
        font-size: 2.2rem;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .screenshot-item {
        padding: 18px;
    }
    
    .screenshot-image {
        height: 190px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    /* Mobile responsive for enhanced features grid */
    .features-grid-three {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item-enhanced {
        padding: 1.5rem 1rem;
    }

    .feature-image {
        height: 150px;
    }

    /* Mobile styles for Sugar Daddy App features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Optimized Screenshots Gallery for Mobile */
    .app-screenshots-section {
        padding: 50px 0;
    }
    
    .app-screenshots-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .screenshot-item {
        padding: 12px;
        border-radius: 12px;
    }
    
    .screenshot-item h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .screenshot-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .screenshot-image {
        height: 160px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-header {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 1rem;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-header > div,
    .comparison-row > div {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .blog-item {
        flex-direction: column;
    }
    
    .blog-thumbnail {
        width: 100%;
        height: 150px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .full-article {
        padding: 2rem 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-steps {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
        gap: 1rem;
    }
    
    .card-grid:has(.card:nth-child(6):last-child) {
        grid-template-columns: 1fr;
    }
    
    .card-grid-5 {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }
    
    .card-grid-5 .card:nth-child(1),
    .card-grid-5 .card:nth-child(2),
    .card-grid-5 .card:nth-child(3),
    .card-grid-5 .card:nth-child(4),
    .card-grid-5 .card:nth-child(5) {
        grid-column: 1;
    }
    
    .card-grid:has(.card:nth-child(5):last-child) .card:nth-child(4),
    .card-grid:has(.card:nth-child(5):last-child) .card:nth-child(5) {
        grid-column: 1;
        margin-left: 0;
        margin-right: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    /* Extra Small Mobile - Single Column Layout */
    .screenshots-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }
    
    .app-screenshots-section {
        padding: 40px 0;
    }
    
    .app-screenshots-section h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .screenshot-item {
        padding: 15px;
        border-radius: 10px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .screenshot-item h4 {
        font-size: 1.1rem;
    }
    
    .screenshot-item p {
        font-size: 0.9rem;
    }
    
    .screenshot-image {
        height: 200px;
        border-radius: 8px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    /* Mobile Image Optimizations */
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .category-image {
        height: 180px;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    .article-hero-image {
        max-height: 250px;
        margin: 15px auto;
    }
    
    .intro-image {
        max-height: 200px;
        margin: 15px auto;
    }
    
    .article-content img {
        margin: 10px 0;
        border-radius: 8px;
    }
    
    /* Remove float on mobile for better layout */
    .article-content img[style*="float"] {
        float: none !important;
        margin: 15px auto !important;
        display: block !important;
        max-width: 100% !important;
    }
    
    .blog-image, .blog-thumbnail {
        max-height: 200px;
    }
    
    .event-image {
        max-height: 180px;
    }
    
    .related-image {
        max-height: 120px;
    }
    
    /* Article Sidebar Mobile Styles */
    .article-sidebar {
        position: static;
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .related-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .related-image {
        width: 60px;
        height: 45px;
        margin-right: 0.8rem;
    }
    
    .related-content h4 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .related-date {
        font-size: 0.75rem;
    }
    
    .newsletter-signup {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .newsletter-signup h3 {
        font-size: 1.1rem;
    }
    
    .newsletter-signup p {
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        gap: 0.6rem;
    }
    
    .newsletter-input,
    .newsletter-form .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    /* Sidebar Widget Mobile Styles */
    .sidebar-widget {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .sidebar-widget h3 {
        font-size: 1.1rem;
    }

    .related-article {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .related-article img {
        width: 60px;
        height: 45px;
        margin-right: 0.8rem;
    }

    .article-info h4 {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .article-info .date {
        font-size: 0.75rem;
    }

    .checklist-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .checklist-item {
        padding: 0.6rem;
        margin: 0.6rem 0;
    }

    .checklist-item label {
        font-size: 0.9rem;
    }
    
    /* Affiliate page mobile styles */
    .payout-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payout-tier,
    .benefit-item,
    .step {
        padding: 1.5rem;
    }
    
    /* Success story mobile styles */
    .success-story {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .story-profile {
        padding: 1rem;
    }
    
    .success-tracker,
    .safety-checklist,
    .emergency-contacts,
    .search-strategy,
    .prospect-tracker {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .inspiration-quotes {
        padding: 1rem;
    }
    
    .quote {
        padding: 0.8rem;
    }
    
    .checklist-item,
    .platform-item,
    .venue-item,
    .goal-item,
    .strength-item {
        padding: 0.6rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-highlights {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-category {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Special Effects */
.glassmorphism {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37, #f4c2c2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.shadow-medium {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.shadow-strong {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Success Stories Styles */
.success-story {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}

.story-profile {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.story-profile h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-profile p {
    margin: 0.5rem 0;
    color: #666;
}

.success-story h4 {
    color: #f4c2c2;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-story ul {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.success-story ul li {
    margin: 0.5rem 0;
    color: #555;
}

/* Success Planning Sidebar */
.success-tracker {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.planning-section {
    margin-bottom: 1.5rem;
}

.planning-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.goal-item,
.strength-item {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.goal-item:hover,
.strength-item:hover {
    background: #f8f9fa;
}

.goal-item input,
.strength-item input {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.goal-item label,
.strength-item label {
    color: #555;
    cursor: pointer;
    font-weight: 500;
}

/* Inspiration Quotes */
.inspiration-quotes {
    background: linear-gradient(135deg, #d4af37 0%, #f4c2c2 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.inspiration-quotes h3 {
    color: white;
    margin-bottom: 1rem;
}

.quote {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 3px solid rgba(255,255,255,0.3);
}

.quote p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: white;
}

.quote cite {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Safety Checklist Styles */
.safety-checklist {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #e74c3c;
}

.checklist-section {
    margin-bottom: 1.5rem;
}

.checklist-section h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #fff5f5;
    border-color: #e74c3c;
}

.checklist-item input {
    margin-right: 0.8rem;
    transform: scale(1.2);
    accent-color: #e74c3c;
}

.checklist-item label {
    color: #555;
    cursor: pointer;
    font-weight: 500;
}

/* Emergency Contacts */
.emergency-contacts {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.emergency-contacts h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-list {
    margin-top: 1rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    border-left: 3px solid rgba(255,255,255,0.3);
}

.contact-item strong {
    color: white;
}

/* Search Strategy Planner */
.search-strategy {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #d4af37;
}

.strategy-section {
    margin-bottom: 1.5rem;
}

.strategy-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.platform-item,
.venue-item {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.platform-item:hover,
.venue-item:hover {
    background: #f8f9fa;
    border-color: #d4af37;
}

.platform-item input,
.venue-item input {
    margin-right: 0.8rem;
    transform: scale(1.2);
    accent-color: #d4af37;
}

.platform-item label,
.venue-item label {
    color: #555;
    cursor: pointer;
    font-weight: 500;
}

/* Prospect Quality Checker */
.prospect-tracker {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quality-indicators h4 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.quality-indicators h4:first-child {
    color: #27ae60;
}

.quality-indicators h4:last-of-type {
    color: #e74c3c;
}

.quality-indicators ul {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.quality-indicators ul li {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
}