/* Group Rates Page Styles */

/* Full Width Layout */
.full-width-content .site-inner,
.full-width-content .content {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.site-inner {
    padding: 0;
}

.entry {
    margin-bottom: 0;
    padding: 0;
}

/* Hero Section */
.groupratespage .hero {
    padding-top: 60px;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    min-height: 600px;
    padding-bottom: 30px;
}

.groupratespage .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/grouprateshero.webp');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

/* Title Styles */
.groupratespage .title {
    text-align: center;
    color: white;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
    margin-top: -30px;
}

.groupratespage .title-line1 {
    font-weight: 100;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: -0.5rem;
    line-height: 1;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s linear infinite alternate;
}

.groupratespage .title-line2 {
    font-weight: 700;
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: 1;
    color: white;
}

/* Subtitle */
.groupratespage .subtitle {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    text-align: center;
    margin-top: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    line-height: 1.5;
}

.groupratespage .subtitle-emphasis {
    font-size: 2rem;
    display: block;
    margin-top: 0.25rem;
}

.group-text {
    font-weight: 700;
    color: #FFD700;
}

.groupratespage .celebrate-in {
    text-transform: uppercase;
    color: white;
    font-weight: 100;
}

.groupratespage .style-text {
    text-transform: uppercase;
    color: #FFD700;
    font-weight: 700;
}

/* Reuse countdown styles from concierge page */
.groupratespage .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 500px;
    width: 90%;
    margin-top: 0;
}

.groupratespage .countdown-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    color: #FFD700;
}

.groupratespage .countdown-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.groupratespage .countdown-label {
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
}

/* Hero Buttons */
.groupratespage .hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.groupratespage .contact-us-button {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #FFD700 30%, #FFED4A 40%, #FFE55B 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #FFD700 25%, #FDB931 62.5%, #FEDB37 100%);
    color: black;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    border: none;
}

.groupratespage .contact-us-button:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-section h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}

.benefits-intro {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Group Packages Section */
.group-packages {
    padding: 3rem 0;
    background: #e5e7eb;
}

.group-packages h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    color: black;
}

.group-packages .venues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0 auto;
    padding: 0 4rem;
    margin-bottom: 2rem;
}

.group-packages .venues-action {
    text-align: center;
}

/* Group Form Section */
.group-form-section {
    padding: 4rem 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.group-form-section h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}

.form-intro {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gravity-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-assistance {
    text-align: center;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
}

.phone-link {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Gravity Forms Button Styling */
.groupratespage .gform_wrapper .gform_footer input[type="submit"],
.groupratespage .gform_wrapper .gform_footer input[type="button"],
.groupratespage .gform_wrapper .gform_footer button,
.groupratespage .gform_wrapper .gform_button {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #FFD700 30%, #FFED4A 40%, #FFE55B 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #FFD700 25%, #FDB931 62.5%, #FEDB37 100%);
    color: black;
    padding: 0.75rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.groupratespage .gform_wrapper .gform_footer input[type="submit"]:hover,
.groupratespage .gform_wrapper .gform_footer button:hover,
.groupratespage .gform_wrapper .gform_button:hover {
    transform: scale(1.05);
}

/* Style other Gravity Forms elements */
.groupratespage .gform_wrapper .gfield_label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.groupratespage .gform_wrapper input[type="text"],
.groupratespage .gform_wrapper input[type="email"],
.groupratespage .gform_wrapper input[type="tel"],
.groupratespage .gform_wrapper textarea,
.groupratespage .gform_wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.groupratespage .gform_wrapper input[type="text"]:focus,
.groupratespage .gform_wrapper input[type="email"]:focus,
.groupratespage .gform_wrapper input[type="tel"]:focus,
.groupratespage .gform_wrapper textarea:focus,
.groupratespage .gform_wrapper select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Radio and Checkbox styling */
.groupratespage .gform_wrapper .gfield_radio li,
.groupratespage .gform_wrapper .gfield_checkbox li {
    margin-bottom: 0.5rem;
}

.groupratespage .gform_wrapper .gfield_radio li label,
.groupratespage .gform_wrapper .gfield_checkbox li label {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

/* Required field asterisk */
.groupratespage .gform_wrapper .gfield_required {
    color: #FFD700;
}

/* Testimonials Section - Reuse from concierge page */
.groupratespage .testimonials-section {
    padding: 3rem 0;
    background: white;
}

.groupratespage .testimonials-section h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    color: black;
}

.groupratespage .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.groupratespage .testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.groupratespage .testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.groupratespage .stars {
    margin-bottom: 1rem;
}

.groupratespage .stars i {
    color: #FFD700;
    font-size: 1.25rem;
    margin: 0 2px;
}

.groupratespage .testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.groupratespage .testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* FAQ Section - Reuse from concierge page */
.groupratespage .faq-section {
    padding: 3rem 0;
    background: #e5e7eb;
}

.groupratespage .faq-section h2 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    color: black;
}

.groupratespage .faq-container {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.groupratespage .faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.groupratespage .faq-question {
    width: 100%;
    padding: 1.25rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.groupratespage .faq-question:hover {
    background-color: #FFD700;
    color: #1a1a1a;
}

.groupratespage .faq-question i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.groupratespage .faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.groupratespage .faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    background: white;
}

.groupratespage .faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.groupratespage .faq-item.active .faq-answer {
    display: block;
}

/* CTA Section - Reuse from concierge page */
.groupratespage .cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.groupratespage .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.groupratespage .cta-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.groupratespage .cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.groupratespage .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.groupratespage .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.groupratespage .cta-button.primary {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.groupratespage .cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.groupratespage .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.groupratespage .cta-button.secondary:hover {
    background: white;
    color: #1a1a1a;
}

.groupratespage .cta-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.groupratespage .cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .group-packages .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .groupratespage .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .groupratespage .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .groupratespage .cta-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .groupratespage .hero {
        height: 100vh;
        height: 100dvh;
        padding-top: max(80px, env(safe-area-inset-top) + 60px);
        padding-bottom: max(20px, env(safe-area-inset-bottom));
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
    }
    
    .groupratespage .title-line1 {
        font-size: 2.475rem;
        white-space: nowrap;
        margin-bottom: 0;
    }
    
    .groupratespage .title-line2 {
        font-size: 2.338rem;
        white-space: nowrap;
    }

    .groupratespage .subtitle {
        font-size: 0.875rem !important;
        padding: 0 1.5rem;
        line-height: 1.4;
        margin-top: 0.25rem !important;
        margin-bottom: 0.75rem;
        max-width: 90%;
    }
    
    .groupratespage .subtitle-emphasis {
        font-size: 1.8rem;
        margin-top: 0.2rem;
        line-height: 1.2;
        letter-spacing: 0.02em;
    }
    
    .groupratespage .celebrate-in, .groupratespage .style-text {
        font-size: inherit;
    }

    .groupratespage .countdown {
        gap: 0.5rem;
        margin-top: 0.5rem;
        width: 90%;
        max-width: 340px;
    }
    
    .groupratespage .countdown-item {
        padding: 0.6rem 0.35rem;
        min-width: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 4.5rem;
    }
    
    .groupratespage .countdown-number {
        font-size: 2rem !important;
        line-height: 1;
        margin-bottom: 0.25rem;
    }
    
    .groupratespage .countdown-label {
        font-size: 0.8rem !important;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: normal;
    }
    
    .groupratespage .hero-buttons {
        flex-direction: column;
        width: 90%;
        max-width: 340px;
        padding: 0;
        margin-top: 0.75rem;
    }

    .groupratespage .contact-us-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-section h2 {
        font-size: 2rem;
    }
    
    .group-packages .venues-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 1rem;
        gap: 1rem;
        grid-template-columns: none;
        -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
        mask-image: linear-gradient(to right, black 80%, transparent 100%);
    }

    .group-packages .venues-grid::-webkit-scrollbar {
        display: none;
    }

    .group-packages .venue-card-link {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-right: 0.5rem;
    }
    
    .groupratespage .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .groupratespage .testimonial-card {
        padding: 1.5rem;
    }
    
    .groupratespage .cta-buttons {
        flex-direction: column;
    }
    
    .groupratespage .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile Screens */
@media screen and (max-width: 480px) {
    .groupratespage .hero {
        padding-top: 60px;
        min-height: 100vh;
        height: auto;
    }
    
    .groupratespage .title {
        margin-bottom: 0.5rem;
    }
    
    .groupratespage .title-line1 {
        font-size: 2.475rem;
        margin-bottom: 0;
    }
    
    .groupratespage .title-line2 {
        font-size: 2.338rem;
    }
    
    .groupratespage .subtitle {
        font-size: 0.8rem !important;
        padding: 0 1rem;
        margin-top: 0.25rem !important;
        margin-bottom: 0.75rem;
        width: 95%;
        max-width: 320px;
    }
    
    .groupratespage .subtitle-emphasis {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-top: 0.15rem;
        letter-spacing: 0.01em;
    }
    
    .groupratespage .countdown {
        margin-top: 0.75rem;
        max-width: 320px;
    }
    
    .groupratespage .hero-buttons {
        max-width: 320px;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card i {
        font-size: 2.5rem;
    }
    
    .group-form-section h2 {
        font-size: 2rem;
    }
    
    .gravity-form-wrapper {
        padding: 1.5rem 1rem;
    }
}