/* ===================================
   CrushYum – Single Consolidated Stylesheet
   (style.css + style3.css merged, no duplicates)
   =================================== */

/* ─── Reset & Base ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e3f2fd 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ─── Container ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ─── Decorative Background Blobs ─── */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
}

.blob1 {
    width: 300px;
    height: 300px;
    background: #ff4081;
    top: 80%;
    left: 5%;
}

.blob2 {
    width: 250px;
    height: 250px;
    background: #ff4081;
    top: 85%;
    left: 15%;
}

.blob3 {
    width: 350px;
    height: 350px;
    background: #2196f3;
    top: 80%;
    right: 5%;
}

/* ─── Header ─── */
header {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

header.sticky {
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ─── Logo ─── */
.logo {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.heart {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    border-radius: 50% 50% 0 0;
    transform: rotate(-45deg);
    position: relative;
}

.heart::before,
.heart::after {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    border-radius: 50%;
    position: absolute;
}

.heart::before {
    top: -25px;
    left: 0;
}

.heart::after {
    top: 0;
    left: 25px;
}

.logo-text {
    font-size: 2.5em;
    font-weight: bold;
}

.logo-text .crush {
    color: #ff4081;
}

.logo-text .yum {
    color: #333;
}

/* ─── Navigation ─── */
nav {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #ff4081;
}

/* ─── Dropdown ─── */
.dropdown {
    position: relative;
}

.dropdown-btn {
    background: #f8f8f8;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 100;
    display: none;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* ─── Icons ─── */
.icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.icon.heart-icon {
    background: #ff4081;
}

.icon.cam-icon {
    background: #2196f3;
}

/* ─── Hero Section ─── */
.hero {
    background: white;
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero.text-center {
    text-align: center;
    grid-template-columns: 1fr;
}

.hero-content h1 {
    font-size: 3.5em;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.2em;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.hero-content li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.hero-content li:before {
    content: "•";
    color: #ff4081;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.hero h1 {
    font-size: 3.5em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.highlight {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Hero Image ─── */
.hero-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 50%, #2196f3 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Global responsive images */
img {
    max-width: 100%;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-image::before {
    content: "♥";
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ─── Buttons ─── */
.cta-btn {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.4);
}

.view-all-btn {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 20px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.view-all-btn.dating {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
}

.view-all-btn.cam {
    background: linear-gradient(135deg, #2196f3, #64b5f6);
}

.submit-btn {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.3);
    transition: transform 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 64, 129, 0.4);
}

.review-btn {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: transform 0.3s;
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.visit-btn {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    margin-bottom: 15px;
}

.visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.3);
}

/* ─── Review Section ─── */
.reviews-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px auto;
}

.review-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.review-card.dating {
    border-top: 5px solid #ff4081;
}

.review-card.cam {
    border-top: 5px solid #2196f3;
}

.review-header {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ─── Site Grid ─── */
.site-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.site-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.site-item {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.site-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.site-image {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    position: relative;
}

.site-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.stars {
    color: #ffd700;
    font-size: 0.9em;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.rating-value {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.visits {
    color: #999;
    font-size: 0.85em;
}

/* ─── Hero Section (Service Page) ─── */
.hero-section {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-section h1 {
    font-size: 3em;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-section h1::before {
    content: "💬";
    font-size: 1.2em;
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    position: relative;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.service-card h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05em;
}

/* ─── Detailed Section ─── */
.detailed-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detailed-content h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detailed-content h2::before {
    content: "💙";
    font-size: 1em;
}

.detailed-content h3 {
    font-size: 1.8em;
    color: #333;
    margin: 30px 0 20px;
}

.detailed-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05em;
    margin-bottom: 15px;
}

.detailed-image {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Floating Hearts ─── */
.floating-hearts {
    position: absolute;
    font-size: 3em;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-hearts:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.floating-hearts:nth-child(2) {
    right: 10%;
    top: 50%;
    animation-delay: 2s;
}

.floating-hearts:nth-child(3) {
    left: 15%;
    bottom: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ─── Contact Section ─── */
.contact-section {
    background: white;
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4081;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.info-item {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 1.3em;
    color: #ff4081;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 50%, #2196f3 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.contact-image::before {
    content: "💌";
    position: absolute;
    font-size: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

/* ─── Categories ─── */
.categories {
    margin: 60px auto;
}

.categories h3 {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.category-item {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
}

.category-item.all {
    grid-column: span 4;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
}

/* ─── Rankings ─── */
.rankings {
    margin: 60px auto 80px;
}

.rankings h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.ranking-item {
    background: white;
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ranking-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rank-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
}

.rank-content h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.rank-content ul {
    list-style: none;
    padding-left: 0;
}

.rank-content li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.rank-content li:before {
    content: "✓";
    color: #ff4081;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rank-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.rating {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
    padding: 30px 0 20px;
    color: #999;
    font-size: 0.95em;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff4081;
}

.breadcrumb .current {
    color: #ff4081;
}

/* ─── Page Title ─── */
.page-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ─── Rating Section ─── */
.rating-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-text {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #999;
}

/* ─── Badges ─── */
.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.badge.top-pick {
    background: #ff4081;
    color: white;
}

.badge.editors-choice {
    background: #e3f2fd;
    color: #2196f3;
}

.badge.year {
    background: #fff9c4;
    color: #f57c00;
}

/* ─── Main Layout ─── */
.main-layout {
    display: grid;
    grid-template-columns: 65.66% 32.34%;
    gap: 2%;
    margin-bottom: 40px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ─── Content Card ─── */
.content-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* ─── Feature List ─── */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    flex-shrink: 0;
}

/* ─── Overview Section ─── */
.overview-section h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ─── Pros Section ─── */
.pros-section h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-section h3::before {
    content: "✓";
    width: 30px;
    height: 30px;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ─── Sidebar ─── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.site-logo {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.site-logo::before {
    content: "💙";
}

.site-logo .site-name {
    color: #2196f3;
}

/* ─── Match Reviews – Sidebar Site Items ─── */
.official-text {
    color: #999;
    font-size: 0.9em;
}

.best-sites-card h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.best-sites-card h3::before {
    content: "💗";
}

.sidebar .site-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
}

.sidebar .site-item:last-child {
    border-bottom: none;
}

.site-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.site-item-header::before {
    content: attr(data-icon);
    font-size: 1.5em;
}

.sidebar .site-item h4 {
    color: #2196f3;
    font-size: 1.2em;
    font-weight: 600;
}

.sidebar .site-item .stars {
    font-size: 1em;
    margin-bottom: 10px;
}

.sidebar .site-item .rating-number {
    color: #666;
    font-weight: 600;
    margin-left: 5px;
}

.site-item.elite .site-item-header::before {
    content: "🛡️";
}

.site-item.adult .site-item-header::before {
    content: "💕";
}

.read-review-btn {
    background: #2196f3;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95em;
}

.read-review-btn:hover {
    background: #1976d2;
}

/* ─── Affiliate Disclosure ─── */
.affiliate-disclosure {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    text-align: left;
}

.affiliate-disclosure h4 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
}

.affiliate-disclosure p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* ─── Quick Tabs ─── */
.quick-tabs {
    background: white;
    border-radius: 15px;
    padding: 25px;
}

.quick-tabs h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.quick-tabs ul {
    list-style: none;
}

.quick-tabs li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-tabs li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
}

/* ─── Pros & Cons ─── */
.pros-cons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pros-card,
.cons-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.pros-card h2,
.cons-card h2 {
    font-size: 1.6em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-card h2 {
    color: #4caf50;
}

.pros-card h2::before {
    content: "✓";
    width: 35px;
    height: 35px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.cons-card h2 {
    color: #f44336;
}

.cons-card h2::before {
    content: "✕";
    width: 35px;
    height: 35px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.pros-card ul,
.cons-card ul {
    list-style: none;
}

.pros-card li,
.cons-card li {
    padding: 12px 0;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pros-card li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-card li::before {
    content: "✕";
    color: #f44336;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── Footer ─── */
 footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.4em;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section p {
            line-height: 1.8;
            color: #bdc3c7;
            margin-bottom: 15px;
        }

        .footer-section a {
            display: block;
            color: #bdc3c7;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s;
            font-size: 0.95em;
        }

        .footer-section a:hover {
            color: #ff4081;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #bdc3c7;
            font-size: 0.9em;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .footer-bottom .brand {
            color: #ff4081;
            font-weight: bold;
        }

/* ─── Nav Toggle Button (Mobile Hamburger Menu) ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1001;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(135deg, #ff4081, #ff6b9d);
    border-radius: 2px;
    transition: all 0.3s ease;
}

        @media (max-width: 768px) {
            /* Mobile Navigation Toggle */
            .nav-toggle {
                display: flex;
            }
            
            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }

            /* Mobile Navigation Menu */
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                padding: 80px 30px 30px;
                border-radius: 0;
                box-shadow: 5px 0 30px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
                gap: 0;
            }

            nav.active {
                left: 0;
            }

            nav a {
                font-size: 1.2em;
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            nav a:hover {
                background: #f8f8f8;
            }

            .dropdown {
                width: 100%;
            }

            .dropdown-btn {
                width: 100%;
                text-align: left;
                padding: 15px 0;
                background: transparent;
                border: none;
                border-bottom: 1px solid #f0f0f0;
                border-radius: 0;
                font-size: 1.2em;
                color: #333;
            }

            .dropdown-content {
                position: static;
                transform: none;
                box-shadow: none;
                display: none;
                width: 100%;
                margin-top: 10px;
                border-radius: 0;
                background: #f8f8f8;
            }

            .dropdown-content.active {
                display: block;
            }

            .dropdown-content a {
                padding: 15px 0 15px 30px;
                border-bottom: 1px solid #e0e0e0;
            }

            /* Adjust logo for mobile */
            .logo {
                margin-right: 40px;
                justify-content: center;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 40px 30px;
            }

            .hero-content h1 {
                font-size: 2.5em;
            }

            .reviews-section {
                grid-template-columns: 1fr;
            }

            .site-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            footer {
                padding: 40px 0 20px;
            }
        }

/* ═══════════════════════════════════════
   Responsive – Tablet (≤ 1024 px)
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content ul,
    .hero-content li {
        text-align: left;
    }

    nav {
        gap: 20px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-item.all {
        grid-column: span 2;
    }

    .ranking-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .rank-content {
        text-align: left;
    }

    .rank-content ul {
        padding-left: 0;
    }

    .rank-content li {
        text-align: left;
    }

    .rank-actions {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .rating {
        width: 100%;
        justify-content: center;
    }

    .review-btn {
        width: 100%;
    }

    .footer-content {

/* ═══════════════════════════════════════
   Responsive – Mobile (≤ 768 px) - UPDATED
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    /* Mobile Navigation Toggle */
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Navigation Menu */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        border-radius: 0;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    nav.active {
        left: 0;
    }

    nav a {
        font-size: 1.2em;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav a:hover {
        background: #f8f8f8;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 15px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        font-size: 1.2em;
        color: #333;
    }

    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 0;
        background: #f8f8f8;
    }

    .dropdown-content.active {
        display: block;
    }

    .dropdown-content a {
        padding: 15px 0 15px 30px;
        border-bottom: 1px solid #e0e0e0;
    }

    /* Adjust logo for mobile */
    .logo {
        margin-right: 40px;
        justify-content: center;
    }

    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden !important;
    }
    
    .container {
        overflow-x: hidden;
        padding: 0 15px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .reviews-section {
        grid-template-columns: 1fr;
    }

    .site-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .detailed-section {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-item.all {
        grid-column: span 1;
    }

    .ranking-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* CRITICAL: Main layout becomes block */
    .main-layout {
        display: block !important;
        width: 100%;
    }
    
    .main-content {
        width: 100% !important;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .sidebar {
        width: 100% !important;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .content-card {
        padding: 20px;
        overflow-x: hidden;
    }
    
    .content-card h2 {
        font-size: 1.5em;
    }
    
    .sidebar-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    /* Pros and Cons */
    .pros-cons-section {
        display: block !important;
        width: 100%;
    }
    
    .pros-card,
    .cons-card {
        width: 100% !important;
        margin-bottom: 20px;
        padding: 20px;
    }

    .sidebar .site-item h4 {
        font-size: 1.1em;
    }
    
    .visit-btn,
    .read-review-btn,
    .review-btn {
        width: 100%;
        max-width: 100% !important;
    }
    
    .page-title {
        font-size: 1.8em;
    }
    
    .rating-section {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 20px 15px;
    }
    
    .content-card,
    .sidebar-card,
    .pros-card,
    .cons-card {
        padding: 15px;
    }
    
    .page-title {
        font-size: 1.5em;
    }
    
    .hero-image {
        height: 200px;
    }
}
/* ═══════════════════════════════════════
   DESKTOP ONLY - Sidebar Right Layout
   ═══════════════════════════════════════ */

@media (min-width: 769px) {
    .main-layout {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 30px;
        align-items: start;
    }
    
    /* Main content and pros/cons stack on left */
    .main-content {
        grid-column: 1;
        grid-row: 1;
    }
    
    .pros-cons-section {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    /* Sidebar on right, spans both rows */
    .sidebar {
        grid-column: 2;
        grid-row: 1 / 3;
        position: sticky;
        top: 20px;
    }
}