/* Global Footer */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.pdf-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 160, 89, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--accent) !important;
    font-weight: 600;
    margin-top: 10px;
}

.pdf-link:hover {
    background: var(--accent);
    color: var(--white) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    /* Higher than floating badge if needed */
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Base styles for new subpages compatibility */
.subpage-hero {
    padding: 140px 0 40px;
    background: var(--primary);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 35, 75, 0.6) 100%);
    z-index: 1;
}

.subpage-hero .container {
    position: relative;
    z-index: 2;
}

.subpage-hero h1 {
    color: var(--white) !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

/* Weather Widget - Premium High Contrast Redesign */
.weather-widget {
    background: linear-gradient(135deg, rgba(0, 35, 75, 0.95), rgba(0, 20, 40, 0.98));
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-around;
    flex-wrap: wrap;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(197, 160, 89, 0.05);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.weather-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.8), transparent);
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.weather-widget .temp {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.weather-details {
    font-size: 15px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.weather-selector label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    opacity: 1;
    letter-spacing: 2px;
    color: var(--accent);
    text-align: center;
    text-transform: uppercase;
}

.weather-selector input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-align: center;
    outline: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    font-weight: 600;
}

.weather-selector input:hover {
    border-color: var(--accent);
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.weather-forecast {
    display: flex;
    gap: 40px;
}

.forecast-item {
    text-align: center;
}

.forecast-item .label {
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
}

.forecast-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

/* Google Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #001228;
    /* Solid dark background for contrast */
    position: relative;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05), transparent 70%);
    pointer-events: none;
}

.reviews-section .section-title {
    color: var(--accent) !important;
    /* Force gold color */
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.user-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-initial {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.user-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.review-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.star-rating {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

.google-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px dashed rgba(197, 160, 89, 0.3);
}

.summary-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

/* About Section Collage - Premium Grid Layout */
.about-collage {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
    height: 420px;
}

.collage-main {
    grid-row: 1 / -1;
    grid-column: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.collage-sub-top {
    grid-row: 1;
    grid-column: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.collage-sub-bottom {
    grid-row: 2;
    grid-column: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.about-collage:hover .collage-main {
    transform: scale(1.02);
}

.about-collage:hover .collage-sub-top {
    transform: translateY(-5px);
}

.about-collage:hover .collage-sub-bottom {
    transform: translateY(5px);
}

/* Response adjustments */
@media (max-width: 768px) {
    .about-collage {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 200px 200px;
        height: auto;
    }

    .collage-main {
        grid-row: 1;
        grid-column: 1;
    }

    .collage-sub-top {
        grid-row: 2;
        grid-column: 1;
    }

    .collage-sub-bottom {
        grid-row: 3;
        grid-column: 1;
    }
}

.summary-info p {
    margin-top: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.summary-info strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .google-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .summary-score {
        font-size: 3rem;
    }
}