/* ================================
   Reviews Section
   ================================ */

.reviews {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
    text-align: center;
}

.reviews h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #8b4513;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.reviews h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* ================================
   Platform Grid
   ================================ */

.platform-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: #2c2c2c;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--platform-color), var(--platform-color-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.google-card { --platform-color: #4285F4; --platform-color-light: #6CA1F7; }
.yelp-card { --platform-color: #FF1A1A; --platform-color-light: #FF5555; }
.facebook-card { --platform-color: #1877F2; --platform-color-light: #4D94F5; }
.tripadvisor-card { --platform-color: #00AF87; --platform-color-light: #33C4A1; }

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.platform-logo {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #8b4513;
}

.google-card .platform-logo i { color: #4285F4; }
.yelp-card .platform-logo i { color: #FF1A1A; }
.facebook-card .platform-logo i { color: #1877F2; }
.tripadvisor-card .platform-logo i { color: #00AF87; }

.platform-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.platform-rating {
    margin-bottom: 0.5rem;
}

.platform-stars {
    color: #d4af37;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0.3rem;
}

.platform-score {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Playfair Display', serif;
}

.platform-reviews {
    color: #666;
    font-size: 0.95rem;
}

/* ================================
   Rating Summary
   ================================ */

.rating-summary {
    max-width: 400px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f5f0 0%, white 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #d4af37;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.big-rating {
    font-size: 4rem;
    font-weight: 700;
    color: #8b4513;
    font-family: 'Playfair Display', serif;
}

.stars-large {
    display: flex;
    gap: 0.2rem;
    font-size: 2rem;
}

.star-large {
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-stats {
    font-size: 1.2rem;
    color: #555;
}

.review-stats strong {
    color: #8b4513;
    font-weight: 700;
}

.rating-badge-text {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f0c952 100%);
    color: #1a1a1a;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

/* ================================
   Reviews Grid
   ================================ */

.reviews-grid {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f0c952);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.review-card:hover::before {
    transform: scaleX(1);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 700;
    color: #2c2c2c;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
}

.review-stars {
    color: #d4af37;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

/* Read More/Less Functionality */
.review-ellipsis {
    color: #555;
    font-style: italic;
}

.read-more-btn,
.read-less-btn {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 0.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline;
    font-style: normal;
}

.read-more-btn:hover,
.read-less-btn:hover {
    color: #8b4513;
    text-decoration: underline;
}

.read-more-btn:focus,
.read-less-btn:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    border-radius: 2px;
}

.review-text-remaining {
    color: #555;
    font-style: italic;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.review-source i {
    font-size: 0.9rem;
}

.google-source i { color: #4285F4; }
.yelp-source i { color: #FF1A1A; }
.facebook-source i { color: #1877F2; }
.tripadvisor-source i { color: #00AF87; }

/* ================================
   Review CTAs
   ================================ */

.reviews-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* ================================
   Platform Links Section
   ================================ */

.platform-links {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.platform-links h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.google-btn {
    background: #4285F4;
}

.google-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.yelp-btn {
    background: #FF1A1A;
}

.yelp-btn:hover {
    background: #E60000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 26, 26, 0.3);
}

.facebook-btn {
    background: #1877F2;
}

.facebook-btn:hover {
    background: #145DBF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.tripadvisor-btn {
    background: #00AF87;
}

.tripadvisor-btn:hover {
    background: #008B6A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 175, 135, 0.3);
}

.platform-btn i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}