:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B4941F;
    --dark-bg: #1A1A1A;
    --text-main: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #F9F9F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --spacing-section: 80px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-bg);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: var(--white);
}

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

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

.text-gold {
    color: var(--primary-gold) !important;
}

.text-white {
    color: var(--white) !important;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.text-left.section-title::after {
    left: 0;
    transform: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover, .btn-gold:hover {
    background-color: var(--primary-gold-dark);
}

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

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

/* Sugar Mommy Bogotá Page Styles */
.bog-hero {
    background: url('images/helicopter-tour-over-bogot-695x530.jpg') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}
.bog-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
.bog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}
.bog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}
.bog-hero h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-gold);
}
.bog-section-padding {
    padding: 80px 0;
}
.bog-bg-light {
    background-color: #f8f9fa;
}
.bog-bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}
.bog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bog-flex-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}
.bog-flex-row.reverse {
    flex-direction: row-reverse;
}
.bog-text-col {
    flex: 1;
}
.bog-img-col {
    flex: 1;
}
.bog-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.bog-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.bog-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bog-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.bog-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.bog-card-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}
.bog-profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.bog-profile-card:hover {
    transform: translateY(-5px);
}
.bog-profile-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.bog-profile-info {
    padding: 20px;
    text-align: center;
}
.bog-profile-info h4 {
    color: var(--dark-bg);
    margin-bottom: 5px;
}
.bog-role {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.bog-list-check {
    list-style: none;
    margin-top: 20px;
}
.bog-list-check li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.bog-list-check li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}
.bog-gift-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-bottom: 3px solid var(--primary-gold);
    text-align: center;
}
.bog-gift-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}
.bog-travel-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}
.bog-travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.bog-travel-card:hover img {
    transform: scale(1.1);
}
.bog-travel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
}
.bog-travel-overlay h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}
.bog-cta-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
}
.bog-table-container {
    overflow-x: auto;
    margin: 30px 0;
}
.bog-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.bog-table th, .bog-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.bog-table th {
    background-color: var(--primary-gold);
    color: var(--white);
}
@media (max-width: 768px) {
    .bog-flex-row, .bog-flex-row.reverse {
        flex-direction: column;
    }
    .bog-grid-2, .bog-grid-3, .bog-grid-4 {
        grid-template-columns: 1fr;
    }
    .bog-hero {
        min-height: 500px;
    }
    .bog-hero h1 {
        font-size: 2.2rem;
    }
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.mobile-only {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* Centering content horizontally */
    margin-top: 80px; /* Offset for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    text-align: center; /* Center text */
    margin: 0 auto; /* Center block */
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.hero-text-block {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center buttons */
}

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

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

.flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
}

/* Cards & Components */
.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-gold);
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

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

.profile-type ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
}

.profile-type h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Benefits */
.benefit-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-gold);
}

.benefit-box ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefit-box ul li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

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

.city-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    text-decoration: none;
    color: inherit;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 20px;
}

.city-info h3 {
    color: var(--primary-gold);
    margin-bottom: 5px;
}

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

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

.profile-img {
    height: 300px;
    overflow: hidden;
}

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

.profile-details {
    padding: 20px;
}

.profile-details h4 {
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.profile-details .location {
    display: block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Blog */
.blog-preview {
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-preview h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

/* Footer */
.footer {
    background-color: #111;
    color: #999;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Security Page Styles */
.bg-gold {
    background-color: var(--primary-gold);
    color: var(--white);
}

.p-4 {
    padding: 30px;
}

.rounded {
    border-radius: 10px;
}

.white-check li {
    color: var(--white);
}

.white-check li::before {
    color: var(--white);
}

.info-box {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-block a {
    color: var(--primary-gold);
    font-weight: bold;
    text-decoration: underline;
}

.content-block a:hover {
    color: var(--primary-gold-dark);
}

/* Safety Section Fix */
.section-padding .text-center {
    margin-left: auto;
    margin-right: auto;
}

/* Pricing */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.toggle-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-btn.active, .toggle-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}
.pricing-wrapper {
    display: none;
    animation: fadeIn 0.5s ease;
}
.pricing-wrapper.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-gold);
}
.pricing-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
    z-index: 1;
}
.pricing-card.featured:hover {
    transform: scale(1.08);
}
.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
.plan-name {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.plan-price {
    font-size: 3rem;
    color: var(--dark-bg);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}
.plan-period {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.plan-weekly {
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.plan-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}
.plan-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}
.plan-features li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- Enhanced Testimonials --- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.story-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}
.story-card::before {
    content: '“';
    font-family: serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
}
.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}
.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.story-card cite {
    font-weight: bold;
    color: var(--primary-gold);
    display: block;
    font-style: normal;
}

/* --- FAQ Accordion --- */
.faq-section {
    max-width: 800px;
    margin: 50px auto 0;
}
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    border-radius: 5px;
    transition: var(--transition);
}
.faq-question:hover {
    background: #eee;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
}
.faq-item.active .faq-question::after {
    content: '-';
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}
.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px; /* Adjust as needed */
}

/* Final CTA */
.final-cta {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 1));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.final-cta h2 {
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive Updates --- */
@media (max-width: 992px) {
    .grid-3, .grid-2, .cities-grid, .pricing-grid, .stories-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .flex-row, .flex-row-reverse {
        flex-direction: column;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-box.featured, .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header-cta, .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    /* Header Fixes for Mobile */
    .logo a {
        font-size: 1rem; /* Reduced slightly to fit */
        gap: 5px;
        max-width: 85%; /* Increased from 70% */
        white-space: nowrap; /* Force one line */
    }

    .logo img {
        height: 30px; /* Reduced slightly */
    }
    
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mobile-only {
        display: block;
    }
    
    .grid-3, .grid-2, .cities-grid, .pricing-grid, .stories-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hero Fixes for Overflow */
    .hero {
        text-align: center;
        justify-content: center;
        height: auto;
        min-height: 100vh;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 10px;
        white-space: normal;
        height: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: url('images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

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

.about-img:hover {
    transform: scale(1.02);
}

.about-img-full {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* History Section */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
}

/* App Page Specific Styles */
.download-section {
    position: relative;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-step {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.download-step h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 10px;
    display: inline-block;
    color: var(--dark-bg);
}

.download-step ol {
    counter-reset: download-counter;
    list-style: none;
}

.download-step ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.download-step ol li::before {
    counter-increment: download-counter;
    content: counter(download-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Table Wrapper for Mobile */
.features-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.features-table {
    min-width: 600px; /* Force min width to trigger scroll on small screens */
}

/* Join Cards */
.join-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.join-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.join-card h3 {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Features Table */
.features-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.features-table th, .features-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.features-table th {
    background-color: var(--primary-gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.features-table tr:hover {
    background-color: #f9f9f9;
}

.feature-img-centered {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
}

/* Lists */
.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.styled-list li::before {
    content: '★';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.service-list li::before {
    content: '➤';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.rule-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Safety Section */
.safety-content {
    order: 1;
}

.safety-img-wrapper {
    order: 2;
}

/* About CTA Overrides */
.about-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
}

/* App Page Specific Styles */
.download-section {
    background-color: var(--light-bg);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.os-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.step-list {
    text-align: left;
    margin-top: 20px;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.step-num {
    background: var(--primary-gold);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.features-table th, .features-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.features-table th {
    background-color: var(--dark-bg);
    color: var(--white);
}

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

.features-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.check-icon {
    color: #27ae60;
    font-weight: bold;
}

.cross-icon {
    color: #c0392b;
    font-weight: bold;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

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

.screenshot-item img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0 auto 15px;
    max-height: 400px;
    object-fit: cover;
}

.screenshot-item:hover img {
    transform: translateY(-5px);
}

/* Meme Page Styles */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.meme-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.meme-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.meme-caption {
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-main);
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    font-style: italic;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .meme-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Contact Page Styles */
.contact-hero {
    background: url('images/appmessage-576x633.jpg') no-repeat center center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-method-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.contact-method-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark-bg);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-map {
    margin-top: 60px;
    height: 400px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Sugar Baby Page Styles */
.sb-hero {
    background: url('images/sugarbabiesmx-1500x916.jpg') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px; /* Header offset */
}

.sb-hero h1, 
.sb-hero h2 {
    color: var(--white);
}

.sb-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.sb-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.sb-flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sb-text-content {
    flex: 1;
}

.sb-image-content {
    flex: 1;
}

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

.sb-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sb-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

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

.sb-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sb-benefit-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sb-benefit-item h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.sb-faq-style {
    display: grid;
    gap: 30px;
}

.sb-misconception {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.sb-misconception h4 {
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.sb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sb-text-block {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.sb-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sb-type-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sb-type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sb-type-info {
    padding: 20px;
}

.sb-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sb-step {
    text-align: center;
}

.sb-step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.sb-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sb-feature {
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .sb-flex-row {
        flex-direction: column;
    }
    
    .sb-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Sugar Mommy Bogotá Page Styles */
.bog-hero {
    background: url('images/helicopter-tour-over-bogot-695x530.jpg') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.bog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

.bog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.bog-hero h1, .bog-hero h2 {
    color: var(--white);
}

.bog-hero-subtitle {
    font-size: 1.2rem;
    margin: 20px auto 30px;
    max-width: 700px;
}

.bog-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bog-flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bog-text-content {
    flex: 1;
}

.bog-image-content {
    flex: 1;
}

.bog-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bog-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bog-feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.bog-feature-card:hover {
    transform: translateY(-5px);
}

.bog-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bog-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bog-benefit-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.bog-benefit-item h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.bog-attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bog-attraction-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.bog-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.bog-profile-info {
    padding: 20px;
}

.bog-role {
    color: var(--primary-gold);
    font-weight: bold;
    font-style: italic;
    margin-bottom: 10px;
}

.bog-day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bog-day-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bog-day-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bog-day-text {
    padding: 20px;
}

.bog-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.bog-gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.bog-gift-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-top: 3px solid var(--primary-gold);
}

.bog-travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bog-travel-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
}

.bog-travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.bog-travel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 20px;
}

.bog-culture-content {
    max-width: 800px;
    margin: 0 auto;
}

.bog-final-cta {
    background: var(--primary-gold);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.bog-cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .bog-flex-row {
        flex-direction: column;
    }
    .bog-hero {
        min-height: 500px;
    }
}

/* Sugar Mommy Medellín Page Styles */
.med-hero {
    background: url('images/medelln-695x462.jpg') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.med-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.med-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.med-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.med-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--white);
}

.med-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.med-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.med-section-padding {
    padding: 80px 20px;
}

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

.med-bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.med-container {
    max-width: 1200px;
    margin: 0 auto;
}

.med-flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.med-text-col {
    flex: 1;
}

.med-img-col {
    flex: 1;
}

.med-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.med-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.med-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.med-card:hover {
    transform: translateY(-5px);
}

.med-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.med-pros-box, .med-cons-box {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.med-list-check, .med-list-cross {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.med-list-check li, .med-list-cross li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.med-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.med-list-cross li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff4d4d;
    font-weight: bold;
}

.med-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.med-info-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.med-info-card h4 {
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.med-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.med-profile-info {
    padding: 25px;
}

.med-role {
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 10px;
    font-style: italic;
}

.med-tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.med-alert-box {
    margin-top: 40px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
}

.med-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.med-lifestyle-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.med-lifestyle-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.med-lifestyle-item h3 {
    padding: 15px 20px 5px;
}

.med-lifestyle-item p {
    padding: 0 20px 20px;
}

.med-faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.med-faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.med-faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

.med-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.med-faq-item.active .med-faq-question::after {
    content: '-';
}

.med-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.med-faq-item.active .med-faq-answer {
    max-height: 300px; /* Adjust as needed */
    padding: 20px;
}

.med-cta-section {
    background: url('images/medelln-695x462.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: var(--white);
}

.med-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.med-cta-section .med-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .med-flex-row {
        flex-direction: column;
    }
    .med-hero h1 {
        font-size: 2.5rem;
    }
}

/* Sugar Mommy Cartagena Page Styles */
.cart-hero {
    background: url('images/cartagena-695x434.jpg') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.cart-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.cart-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.cart-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cart-hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--white);
}

.cart-hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cart-hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cart-bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.cart-flex-row, .cart-flex-row-reverse {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cart-flex-row-reverse {
    flex-direction: row-reverse;
}

.cart-text-content, .cart-image-content {
    flex: 1;
    min-width: 300px;
}

.cart-image-content img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
}

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

.cart-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cart-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.cart-card:hover {
    transform: translateY(-5px);
}

.cart-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.cart-list {
    list-style: none;
    padding: 0;
}

.cart-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.cart-list li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cart-info-box {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-info-box h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

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

.cart-location-item {
    text-align: center;
}

.cart-location-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cart-location-item h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.cart-steps-list {
    counter-reset: cart-step;
    list-style: none;
    padding: 0;
}

.cart-steps-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.cart-steps-list li::before {
    counter-increment: cart-step;
    content: counter(cart-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

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

.cart-feature {
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.cart-feature h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.cart-tip-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
}

.cart-tip-card h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.cart-dates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cart-date-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cart-date-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cart-date-item h4 {
    padding: 20px 20px 5px;
    color: var(--dark-bg);
}

.cart-date-item p {
    padding: 0 20px 20px;
}

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

.cart-profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.cart-profile-card:hover {
    transform: translateY(-5px);
}

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

.cart-profile-info {
    padding: 20px;
}

.cart-profile-info h4 {
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.cart-role {
    font-weight: bold;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cart-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.cart-list-detailed {
    list-style: none;
    margin-top: 20px;
}

.cart-list-detailed li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-gold);
}

.cart-meme-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-gold);
    font-style: italic;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

.cart-meme-box span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--primary-gold-dark);
    font-style: normal;
}

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

/* Cartagena Comparison Table */
.cart-comparison-table {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-col {
    flex: 1;
    padding: 40px;
}

.cart-col.border-left {
    border-left: 1px solid #eee;
}

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

.cart-icon {
    font-size: 2rem;
}

.cart-col h3 {
    color: var(--primary-gold);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.cart-col ul {
    list-style: none;
    padding: 0;
}

.cart-col ul li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cart-col ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-col ul li strong {
    color: var(--dark-bg);
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .cart-comparison-table {
        flex-direction: column;
    }
    
    .cart-col.border-left {
        border-left: none;
        border-top: 1px solid #eee;
    }
}


.cart-comp-item {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
}

.cart-comp-item h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.cart-final-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/cornichebeach-695x482.jpeg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cart-final-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cart-final-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

/* =========================================
   Barranquilla Page Styles (Isolated .bq-)
   ========================================= */

.bq-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/barranquilla-595x434.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    background-attachment: fixed;
}

.bq-hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.bq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.bq-hero p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    font-weight: 300;
}

.bq-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.bq-btn-gold {
    background: var(--primary-gold);
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid var(--primary-gold);
    font-size: 1.1rem;
}

.bq-btn-gold:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.bq-btn-outline {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #fff;
    font-size: 1.1rem;
}

.bq-btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

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

.bq-bg-light {
    background: #f8f9fa;
}

.bq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bq-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 50px;
    position: relative;
}

.bq-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 20px auto 0;
}

/* Economic Power Grid */
.bq-power-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bq-power-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bq-power-list {
    list-style: none;
    padding: 0;
}

.bq-power-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bq-power-list li::before {
    content: '⚓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Who Are They Grid */
.bq-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.bq-who-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-top: 4px solid var(--primary-gold);
}

.bq-who-card:hover {
    transform: translateY(-10px);
}

.bq-who-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bq-who-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

/* Profiles */
.bq-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bq-profile-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

.bq-profile-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.bq-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.bq-profile-info {
    padding: 20px;
    text-align: center;
}

.bq-profile-info h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.bq-profile-info .bq-loc {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bq-profile-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Video Steps */
.bq-video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bq-video-step {
    background: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.bq-step-num {
    width: 35px;
    height: 35px;
    background: var(--dark-bg);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.bq-video-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.bq-video-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Comparison Table */
.bq-comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bq-comp-col {
    padding: 50px;
}

.bq-comp-mommy {
    background: #fff;
}

.bq-comp-daddy {
    background: #f8f9fa;
}

.bq-comp-header {
    text-align: center;
    margin-bottom: 30px;
}

.bq-comp-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 0;
}

.bq-comp-list {
    list-style: none;
    padding: 0;
}

.bq-comp-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 1.05rem;
}

.bq-check {
    color: var(--primary-gold);
    font-weight: bold;
}

/* Etiquette & Attraction */
.bq-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.bq-tip-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.bq-tip-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.bq-tip-list {
    list-style: none;
    padding: 0;
}

.bq-tip-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.bq-tip-list li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Success Stories */
.bq-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bq-story-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    font-style: italic;
}

.bq-story-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.bq-story-card span {
    font-weight: bold;
    color: var(--primary-gold);
    display: block;
    font-style: normal;
}

/* CTA */
.bq-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/cornichebeach-695x482.jpeg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.bq-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.bq-cta p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .bq-hero h1 { font-size: 2.5rem; }
    .bq-power-grid, .bq-comparison-wrapper, .bq-tips-grid { grid-template-columns: 1fr; }
    .bq-who-grid, .bq-video-grid, .bq-stories-grid { grid-template-columns: repeat(2, 1fr); }
    .bq-comp-col { padding: 30px; }
}

@media (max-width: 576px) {
    .bq-who-grid, .bq-video-grid, .bq-stories-grid { grid-template-columns: 1fr; }
    .bq-hero-buttons { flex-direction: column; }
    .bq-hero h1 { font-size: 2rem; }
}

/* Responsive */
@media (max-width: 992px) {
    .cart-grid-3, .cart-features-grid, .cart-profiles-grid, .cart-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-hero h1 {
        font-size: 2rem;
    }
    
    .cart-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart-flex-row, .cart-flex-row-reverse {
        flex-direction: column;
    }
    
    .cart-grid-2, .cart-grid-3, .cart-features-grid, .cart-profiles-grid, .cart-dates-grid, .cart-locations-grid, .cart-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-hero {
        min-height: 400px;
    }
    
    .cart-hero h1 {
        font-size: 1.8rem;
    }
}

/* Cali Page Styles */
.cali-hero {
    background: url('images/calicolombia-695x459.jpg') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.cali-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cali-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.cali-hero-buttons .btn, .cali-cta-buttons .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cali-hero-buttons .btn:hover, .cali-cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cali-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.cali-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.cali-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cali-hero h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.cali-bg-light {
    background-color: #f9f9f9;
}

.cali-bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.cali-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cali-flex-row, .cali-flex-row-reverse {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cali-flex-row-reverse {
    flex-direction: row-reverse;
}

.cali-text-content, .cali-image-content {
    flex: 1;
}

.cali-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cali-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.cali-card, .cali-tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.cali-card:hover, .cali-tip-card:hover {
    transform: translateY(-5px);
}

.cali-card h3, .cali-tip-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cali-list {
    list-style: none;
    padding: 0;
}

.cali-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

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

.cali-check-list {
    list-style: none;
    padding: 0;
}

.cali-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.cali-check-list li::before {
    content: '🛡️';
    position: absolute;
    left: 0;
}

/* Clubs Grid */
.cali-clubs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cali-club-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cali-club-item h4 {
    color: var(--dark-bg);
    margin-bottom: 10px;
}

/* Comparison Table */
.cali-comparison-table {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.cali-col {
    flex: 1;
    padding: 40px;
}

.cali-col.border-left {
    border-left: 1px solid #eee;
}

.cali-col h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
}

.cali-col ul {
    list-style: none;
    padding: 0;
}

.cali-col ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.cali-col ul li:last-child {
    border-bottom: none;
}

/* Profiles */
.cali-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cali-profile-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cali-profile-card:hover {
    transform: translateY(-5px);
}

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

.cali-profile-info {
    padding: 20px;
    text-align: center;
}

.cali-profile-info h4 {
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cali-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Dates Grid */
.cali-dates-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.cali-date-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.cali-date-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cali-date-item:hover img {
    transform: scale(1.1);
}

.cali-date-item h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

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

.cali-faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.cali-faq-question {
    background: #fff;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cali-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.cali-faq-item.active .cali-faq-question::after {
    content: '-';
}

.cali-faq-answer {
    background: #f9f9f9;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* Final CTA */
.cali-final-cta p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cali-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.cali-cta-buttons .btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 992px) {
    .cali-grid-3, .cali-profiles-grid, .cali-clubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cali-dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cali-comparison-table {
        flex-direction: column;
    }
    
    .cali-col.border-left {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .cali-flex-row, .cali-flex-row-reverse {
        flex-direction: column;
    }
    
    .cali-grid-2, .cali-grid-3, .cali-profiles-grid, .cali-clubs-grid, .cali-dates-grid {
        grid-template-columns: 1fr;
    }
    
    .cali-hero {
        min-height: 400px;
    }
    
    .cali-hero h1 {
        font-size: 2rem;
    }
}

/* Blog Over 50 Styles */
.bo50-breadcrumbs {
    background: #f4f4f4;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.bo50-breadcrumbs a {
    color: #d4af37;
    text-decoration: none;
}

.bo50-breadcrumbs span {
    color: #333;
}

.bo50-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bo50-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/richwomen12-725x544.jpeg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.bo50-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.bo50-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bo50-article {
    padding: 60px 0;
}

.bo50-section {
    margin-bottom: 60px;
}

.bo50-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.bo50-bg-light {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.bo50-bg-gold {
    background-color: #fcfbf5;
    padding: 60px 0;
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
}

.bo50-grid-text-img, .bo50-grid-img-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bo50-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bo50-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.bo50-feature-list, .bo50-check-list, .bo50-error-list, .bo50-safety-list {
    list-style: none;
    padding: 0;
}

.bo50-feature-list li, .bo50-check-list li, .bo50-error-list li, .bo50-safety-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
    position: relative;
    padding-left: 30px;
}

.bo50-feature-list li::before {
    content: '★';
    color: #d4af37;
    position: absolute;
    left: 0;
}

.bo50-check-list li::before {
    content: '✓';
    color: green;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bo50-error-list li::before {
    content: '✕';
    color: red;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.bo50-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-top: 3px solid #d4af37;
}

.bo50-card:hover {
    transform: translateY(-5px);
}

.bo50-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.bo50-comparison-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bo50-comp-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #eee;
}

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

.bo50-comp-title {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.bo50-comp-desc {
    padding: 20px;
    display: flex;
    align-items: center;
    color: #555;
}

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

.bo50-tip {
    background: white;
    padding: 25px;
    border-left: 4px solid #d4af37;
}

.bo50-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero.jpg') no-repeat center center/cover;
    color: white;
    border-radius: 10px;
    margin-top: 40px;
}

.bo50-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bo50-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bo50-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .bo50-grid-text-img, .bo50-grid-img-text {
        grid-template-columns: 1fr;
    }
    
    .bo50-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bo50-hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .bo50-cards-grid, .bo50-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .bo50-comp-row {
        grid-template-columns: 1fr;
    }
    
    .bo50-comp-title {
        background: #d4af37;
    }
    
    .bo50-cta-buttons {
        flex-direction: column;
    }
}

/* Gift Page Styles */
.gift-breadcrumbs {
    background: #f4f4f4;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.gift-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gift-breadcrumbs a {
    color: #333;
    text-decoration: none;
}

.gift-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/country4.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gift-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.gift-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.gift-article {
    padding: 60px 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
}

.gift-section {
    margin-bottom: 60px;
}

.gift-section h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.gift-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

.gift-bg-light {
    background: #f9f9f9;
    padding: 60px 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 10px;
}

.gift-bg-gold {
    background: #fff8e1;
    padding: 60px 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 10px;
}

.gift-grid-text-img, .gift-grid-img-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.gift-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gift-feature-list, .gift-check-list, .gift-idea-list, .gift-ordered-list {
    list-style: none;
    padding: 0;
}

.gift-feature-list li, .gift-check-list li, .gift-idea-list li, .gift-ordered-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.gift-feature-list li::before {
    content: '★';
    color: #d4af37;
    position: absolute;
    left: 0;
}

.gift-check-list li::before {
    content: '✓';
    color: green;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.gift-idea-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
}

.gift-ordered-list {
    counter-reset: gift-counter;
}

.gift-ordered-list li {
    padding-left: 35px;
}

.gift-ordered-list li::before {
    counter-increment: gift-counter;
    content: counter(gift-counter);
    background: #d4af37;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

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

.gift-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 3px solid #d4af37;
}

.gift-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
}

.gift-ideas-wrapper {
    display: flex;
    gap: 40px;
}

.gift-idea-col {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gift-idea-col h3 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

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

.gift-persona-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #d4af37;
}

.gift-persona-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

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

.gift-timing-opt {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.gift-timing-opt h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.gift-cta {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
}

.gift-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.gift-cta h2::after {
    background: white;
}

.gift-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gift-small-text {
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .gift-grid-text-img, .gift-grid-img-text, .gift-ideas-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .gift-cards-grid, .gift-timing-grid, .gift-persona-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-hero-content h1 {
        font-size: 2rem;
    }
    
    .gift-cta-buttons {
        flex-direction: column;
    }
}

/* BBW Page Styles */
.bbw-breadcrumbs { background: #f8f9fa; padding: 15px 0; font-size: 0.9rem; }
.bbw-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bbw-breadcrumbs a { color: #d4af37; text-decoration: none; }
.bbw-breadcrumbs span { color: #6c757d; }

.bbw-hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/confident-1-679x520.jpeg') center/cover no-repeat; height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-bottom: 40px; }
.bbw-hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); color: #ffffff !important; }
.bbw-hero-content p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); color: #ffffff !important; }

.bbw-article { font-family: 'Lato', sans-serif; color: #333; line-height: 1.6; }
.bbw-section { padding: 50px 0; }
.bbw-section h2 { font-family: 'Playfair Display', serif; color: #2c3e50; font-size: 2.2rem; margin-bottom: 30px; text-align: center; position: relative; }
.bbw-section h2::after { content: ''; display: block; width: 60px; height: 3px; background: #d4af37; margin: 15px auto 0; }

.bbw-bg-light { background-color: #f9f9f9; }
.bbw-bg-gold { background-color: rgba(212, 175, 55, 0.1); }

.bbw-grid-text-img, .bbw-grid-img-text { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.bbw-img img { width: 100%; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.bbw-table-wrapper { overflow-x: auto; margin-top: 30px; }
.bbw-comparison-table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.bbw-comparison-table th, .bbw-comparison-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
.bbw-comparison-table th { background-color: #2c3e50; color: white; font-family: 'Playfair Display', serif; }
.bbw-comparison-table tr:hover { background-color: #f5f5f5; }

.bbw-feature-list, .bbw-check-list, .bbw-ordered-list, .bbw-alert-list { list-style: none; padding: 0; margin-top: 20px; }
.bbw-feature-list li, .bbw-check-list li, .bbw-ordered-list li, .bbw-alert-list li { margin-bottom: 15px; position: relative; padding-left: 30px; }
.bbw-feature-list li::before { content: '★'; color: #d4af37; position: absolute; left: 0; }
.bbw-check-list li::before { content: '✔'; color: #28a745; position: absolute; left: 0; }
.bbw-alert-list li::before { content: '⚠'; color: #dc3545; position: absolute; left: 0; }
.bbw-ordered-list { counter-reset: bbw-counter; }
.bbw-ordered-list li { padding-left: 40px; }
.bbw-ordered-list li::before { counter-increment: bbw-counter; content: counter(bbw-counter) '.'; color: #d4af37; font-weight: bold; position: absolute; left: 0; }

.bbw-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 30px; }
.bbw-card { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease; border-top: 3px solid #d4af37; }
.bbw-card:hover { transform: translateY(-5px); }
.bbw-card h3 { font-family: 'Playfair Display', serif; color: #2c3e50; margin-bottom: 15px; font-size: 1.4rem; }

.bbw-faq-list { max-width: 800px; margin: 0 auto; }
.bbw-faq-item { background: white; margin-bottom: 20px; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.bbw-faq-item h3 { color: #d4af37; margin-bottom: 10px; font-family: 'Playfair Display', serif; }

.bbw-cta { padding: 80px 0; background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/realsugarphoto-829x478.jpg') center/cover fixed; text-align: center; color: white; margin-top: 40px; }
.bbw-cta h2 { font-size: 2.5rem; font-family: 'Playfair Display', serif; margin-bottom: 20px; color: #d4af37; }
.bbw-cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.bbw-small-text { font-size: 0.9rem; margin-top: 20px; opacity: 0.8; }

@media (max-width: 768px) {
    .bbw-grid-text-img, .bbw-grid-img-text { grid-template-columns: 1fr; }
    .bbw-hero-content h1 { font-size: 2rem; }
    .bbw-cta-buttons { flex-direction: column; }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/blog-sugar-daddy-mentor-success-dating-sugar-baby-980x630.jpg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}
.blog-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}
.blog-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}
.blog-intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card-img {
    height: 250px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 25px;
}
.blog-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.4;
}
.blog-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}
.blog-read-more:hover {
    text-decoration: underline;
}
.blog-text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}
.blog-cta {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}
.blog-cta h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #d4af37;
}
.blog-cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-white:hover {
    background: white;
    color: #2c3e50;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-cta-buttons {
        flex-direction: column;
    }
}
