/* General Styles */
:root {
    --primary-color: #ff0080;
    --secondary-color: #e91e63;
    --bg-dark: #0f0f0f;
    --bg-light-dark: #1a1a1a;
    --text-white: #ffffff;
    --text-grey: #b0b0b0;
    --text-light-grey: #cccccc;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --border-color: #333333;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

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

/* Header & Navigation */
header {
    background: rgba(15, 15, 15, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
}

.logo img {
    height: 40px;
    border-radius: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

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

.btn-join {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-join:hover {
    background: #d4006b;
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/hero.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light-grey);
    max-width: 800px;
    margin: 0 auto 30px;
}

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-grey);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-light-dark);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.profile-card {
    background: var(--bg-light-dark);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.profile-info {
    padding: 15px;
}

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

.profile-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.profile-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* City Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.city-item {
    background: var(--bg-light-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.city-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.city-card {
    position: relative;
    height: 220px;
    display: block;
}

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

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

.city-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    text-align: center;
}

.city-overlay h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}

.city-desc {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-desc p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Content Block */
.content-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.content-block:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 1;
}

.content-image img {
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.content-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 20px;
    color: var(--text-light-grey);
}

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

.faq-item {
    background: var(--bg-light-dark);
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-light-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-grey);
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .content-block {
        flex-direction: column !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
}

/* Guide Pages Styles */
.guide-container {
    padding: 120px 0 80px;
}

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

.guide-header {
    text-align: center;
    margin-bottom: 60px;
}

.guide-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guide-header p {
    font-size: 1.2rem;
    color: var(--text-grey);
}

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

.guide-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
}

.guide-section p {
    font-size: 1.1rem;
    color: var(--text-light-grey);
    margin-bottom: 20px;
}

.guide-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.guide-section ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: var(--text-light-grey);
}

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

.guide-img-item {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.guide-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light-dark);
    border-radius: 10px;
    overflow: hidden;
}

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

.guide-table th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

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

.guide-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 80px;
}

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

.guide-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.guide-cta .btn-white {
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
}

.guide-cta .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .guide-header h1 {
        font-size: 2.2rem;
    }
    
    .guide-section h2 {
        font-size: 1.8rem;
    }
    
    .guide-image-row {
        grid-template-columns: 1fr;
    }
    
    .guide-img-item {
        height: 250px;
    }
    
    .guide-cta {
        padding: 40px 20px;
    }
}

/* Safety & Privacy Specific Styles */
.legal-container {
    padding: 120px 0 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.safety-header, .privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.safety-header h1, .privacy-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.safety-section, .privacy-content-section {
    background: var(--bg-light-dark);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.safety-section h2, .privacy-content-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.safety-section h3, .privacy-content-section h3 {
    color: var(--text-white);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.safety-section p, .privacy-content-section p {
    color: var(--text-light-grey);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.safety-section ul, .privacy-content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.safety-section ul li, .privacy-content-section ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: var(--text-light-grey);
}

.safety-image-full {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.safety-grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.safety-grid-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.anchor-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.anchor-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .safety-header h1, .privacy-header h1 {
        font-size: 2.2rem;
    }
    .safety-section, .privacy-content-section {
        padding: 25px;
    }
    .safety-grid-images {
        grid-template-columns: 1fr;
    }
    .safety-grid-images img {
        height: 200px;
    }
}

/* Toronto Page Specific Styles */
.toronto-page .city-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/Toronto.jpg') center / cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--text-white);
}

.toronto-page .city-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.toronto-page .city-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.toronto-page .content-section {
    padding: 80px 0;
}

.toronto-page .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.toronto-page .content-grid.reverse {
    direction: rtl;
}

.toronto-page .content-grid.reverse .text-box {
    direction: ltr;
}

.toronto-page .image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.toronto-page .text-box h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.toronto-page .text-box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.toronto-page .cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--bg-light-dark);
    border-radius: 10px;
    overflow: hidden;
}

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

.toronto-page .cost-table th {
    background: var(--primary-color);
    color: var(--text-white);
}

.toronto-page .success-stories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.toronto-page .story-card {
    background: var(--bg-light-dark);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.toronto-page .story-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.toronto-page .story-card p {
    font-style: italic;
    color: var(--text-light-grey);
}

@media (max-width: 768px) {
    .toronto-page .city-hero h1 {
        font-size: 2.5rem;
    }
    .toronto-page .content-grid {
        grid-template-columns: 1fr;
    }
    .toronto-page .content-grid.reverse {
        direction: ltr;
    }
    .toronto-page .image-box img {
        height: 250px;
    }
    .toronto-page .success-stories {
        grid-template-columns: 1fr;
    }
}

/* Vancouver Page Specific Styles */
.vancouver-page .city-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/Vancouver.jpg') center / cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--text-white);
}

.vancouver-page .city-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.vancouver-page .city-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.vancouver-page .content-section {
    padding: 80px 0;
}

.vancouver-page .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.vancouver-page .content-grid.reverse {
    direction: rtl;
}

.vancouver-page .content-grid.reverse .text-box {
    direction: ltr;
}

.vancouver-page .image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.vancouver-page .text-box h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.vancouver-page .text-box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.vancouver-page .cost-table-container {
    overflow-x: auto;
    margin: 40px 0;
}

.vancouver-page .cost-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light-dark);
    border-radius: 10px;
    overflow: hidden;
}

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

.vancouver-page .cost-table th {
    background: var(--primary-color);
    color: var(--text-white);
}

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

.vancouver-page .area-card {
    background: var(--bg-light-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.vancouver-page .area-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.vancouver-page .area-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vancouver-page .verification-steps {
    list-style: none;
    padding: 0;
}

.vancouver-page .verification-steps li {
    background: var(--bg-light-dark);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vancouver-page .verification-steps li i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.vancouver-page .cta-box {
    background: linear-gradient(135deg, var(--primary-color), #ff4d4d);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--text-white);
    margin-top: 80px;
}

.vancouver-page .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vancouver-page .cta-box .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    margin-top: 20px;
}

/* Montreal Page Specific Styles */
.montreal-page .city-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/montreal.jpg') center / cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 80px;
}

.montreal-page .city-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.montreal-page .section {
    padding: 80px 0;
}

.montreal-page .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.montreal-page .content-grid.reverse {
    direction: rtl;
}

.montreal-page .content-grid.reverse .text-box {
    direction: ltr;
}

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

.montreal-page .text-box h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.montreal-page .text-box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.montreal-page .neighborhood-card {
    background: var(--bg-light-dark);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.montreal-page .neighborhood-card:hover {
    transform: translateY(-5px);
}

.montreal-page .neighborhood-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.montreal-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: var(--bg-light-dark);
    border-radius: 15px;
    overflow: hidden;
}

.montreal-page .comparison-table th, 
.montreal-page .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.montreal-page .comparison-table th {
    background: var(--primary-color);
    color: var(--text-white);
}

.montreal-page .cta-box {
    background: linear-gradient(135deg, var(--primary-color), #ff4d4d);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--text-white);
    margin-top: 80px;
}

.montreal-page .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.montreal-page .cta-box .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    margin-top: 20px;
}

@media (max-width: 992px) {
    .montreal-page .neighborhood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .montreal-page .city-hero h1 {
        font-size: 2.5rem;
    }
    .montreal-page .content-grid {
        grid-template-columns: 1fr;
    }
    .montreal-page .content-grid.reverse {
        direction: ltr;
    }
    .montreal-page .image-box img {
        height: 250px;
    }
    .montreal-page .neighborhood-grid {
        grid-template-columns: 1fr;
    }
    .montreal-page .cta-box {
        padding: 40px 20px;
    }
    .montreal-page .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 992px) {
    .vancouver-page .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Calgary Page Specific Styles */
.calgary-page .city-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/Calgary.jpg') center / cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 80px;
}

.calgary-page .city-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    max-width: 900px;
}

.calgary-page .section {
    padding: 80px 0;
}

.calgary-page .content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.calgary-page .content-grid.reverse {
    direction: rtl;
}

.calgary-page .content-grid.reverse .text-box {
    direction: ltr;
}

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

.calgary-page .text-box h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.calgary-page .text-box p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.calgary-page .info-card {
    background: var(--bg-light-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.calgary-page .info-card:hover {
    transform: translateY(-5px);
}

.calgary-page .info-card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calgary-page .info-card h3 {
    margin-bottom: 15px;
}

.calgary-page .cta-box {
    background: linear-gradient(135deg, var(--primary-color), #ff4d4d);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--text-white);
    margin-top: 80px;
}

.calgary-page .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calgary-page .cta-box .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    margin-top: 20px;
}

@media (max-width: 992px) {
    .calgary-page .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calgary-page .city-hero h1 {
        font-size: 2.5rem;
    }
    .calgary-page .content-grid {
        grid-template-columns: 1fr;
    }
    .calgary-page .content-grid.reverse {
        direction: ltr;
    }
    .calgary-page .image-box img {
        height: 250px;
    }
    .calgary-page .info-card-grid {
        grid-template-columns: 1fr;
    }
    .calgary-page .cta-box {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .vancouver-page .city-hero h1 {
        font-size: 2.5rem;
    }
    .vancouver-page .content-grid {
        grid-template-columns: 1fr;
    }
    .vancouver-page .content-grid.reverse {
        direction: ltr;
    }
    .vancouver-page .image-box img {
        height: 250px;
    }
    .vancouver-page .area-grid {
        grid-template-columns: 1fr;
    }
    .vancouver-page .cta-box {
        padding: 40px 20px;
    }
}

/* Winnipeg (Ottawa Focus) Page Styles */
.winnipeg-page {
    background: var(--bg-dark);
    color: var(--text-white);
}

.winnipeg-page .city-hero {
    padding: 140px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Ottawa.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 60px;
}

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

.winnipeg-page .city-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.winnipeg-page .section-container {
    padding: 60px 0;
}

.winnipeg-page .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.winnipeg-page .content-grid.reverse {
    direction: rtl;
}

.winnipeg-page .content-grid.reverse .text-box {
    direction: ltr;
}

.winnipeg-page .text-box h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.winnipeg-page .text-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.winnipeg-page .image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.winnipeg-page .info-card {
    background: var(--bg-light-dark);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.winnipeg-page .info-card:hover {
    transform: translateY(-5px);
}

.winnipeg-page .info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.winnipeg-page .pros-cons-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: var(--bg-light-dark);
    border-radius: 15px;
    overflow: hidden;
}

.winnipeg-page .pros-cons-table th, 
.winnipeg-page .pros-cons-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winnipeg-page .pros-cons-table th {
    background: var(--primary-color);
    color: var(--text-white);
}

.winnipeg-page .cta-box {
    background: linear-gradient(135deg, var(--primary-color), #ff4d4d);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--text-white);
    margin-top: 80px;
}

.winnipeg-page .cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.winnipeg-page .cta-box .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    margin-top: 20px;
}

@media (max-width: 992px) {
    .winnipeg-page .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .winnipeg-page .city-hero h1 {
        font-size: 2.5rem;
    }
    .winnipeg-page .content-grid {
        grid-template-columns: 1fr;
    }
    .winnipeg-page .content-grid.reverse {
        direction: ltr;
    }
    .winnipeg-page .image-box img {
        height: 250px;
    }
    .winnipeg-page .info-cards {
        grid-template-columns: 1fr;
    }
    .winnipeg-page .cta-box {
        padding: 40px 20px;
    }
    .winnipeg-page .pros-cons-table {
        display: block;
        overflow-x: auto;
    }
}

/* Sugar Baby Canada & Sugar Daddy Canada Specific Styles */
.guide-hero {
    padding: 150px 0 100px;
    text-align: center;
    color: var(--text-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

.baby-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Toronto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.daddy-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/richman.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.guide-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light-grey);
}

/* Sugar Baby Canada Page Adjustments */
.sugar-baby-canada-page .guide-container {
    padding-top: 80px;
}

/* Sugar Daddy Canada Page Adjustments */
.sugar-daddy-canada-page .guide-container {
    padding-top: 80px;
}

.sugar-daddy-canada-page .guide-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.sugar-daddy-canada-page .guide-content.reverse {
    flex-direction: row-reverse;
}

.sugar-daddy-canada-page .guide-text {
    flex: 1;
}

.sugar-daddy-canada-page .guide-image {
    flex: 1;
}

.sugar-daddy-canada-page .guide-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .guide-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .sugar-daddy-canada-page .guide-content {
        flex-direction: column !important;
    }
    
    .sugar-daddy-canada-page .guide-image {
        margin-top: 20px;
    }
}

