/* Services Hero */
.services-hero {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 24px;
    color: #666;
}

/* Services Section */
.services-section {
    background: #fff;
}

.service-detail {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #F5F5F7;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #C9A55E;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ingredients {
    background: white;
    padding: 24px;
    border-radius: 12px;
}

.ingredients h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.ingredients ul {
    list-style: none;
}

.ingredients li {
    font-size: 16px;
    color: #666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.ingredients li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A55E;
    font-weight: bold;
}

/* Shots Section */
.shots-section {
    background: #F5F5F7;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    margin-top: -40px;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.shot-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.shot-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.shot-card .price {
    font-size: 28px;
    margin-bottom: 16px;
    white-space: nowrap;
}

.shot-card .description {
    font-size: 16px;
    margin-bottom: 20px;
}

.shot-info {
    font-size: 14px;
    color: #666;
    background: #F5F5F7;
    padding: 12px;
    border-radius: 8px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.shot-info strong {
    color: #C9A55E;
}

.shot-info br {
    display: block;
    content: "";
    margin: 4px 0;
}

/* Service Book Button */
.service-book-btn {
    display: block;
    background: #C9A55E;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 20px auto 0;
    width: fit-content;
    transition: all 0.3s;
}

.service-book-btn:hover {
    background: #B89440;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 165, 94, 0.3);
}

.service-book-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .shots-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 140px 16px 60px;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 18px;
    }

    .services-section,
    .shots-section {
        padding: 70px 16px;
    }

    /* Fix CTA section on mobile */
    .cta-section {
        padding: 60px 16px !important;
    }

    .cta-section h2 {
        font-size: 28px !important;
    }

    .cta-section p {
        font-size: 16px !important;
    }

    .cta-section div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .cta-section a.secondary-cta {
        width: 100% !important;
        box-sizing: border-box;
        text-align: center !important;
        padding: 14px 24px !important;
    }

    .service-detail {
        padding: 24px 20px;
        margin-bottom: 40px;
        box-sizing: border-box;
        width: 100%;
    }

    .service-info h3 {
        font-size: 28px;
    }

    .price {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .ingredients {
        padding: 20px;
    }

    .service-book-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 32px;
        font-size: 17px;
        text-align: center;
    }

    .shots-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .shot-card {
        padding: 28px 24px;
        box-sizing: border-box;
    }

    .shot-card .service-book-btn {
        width: 100%;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
        margin-top: 16px;
        padding: 0 16px;
    }

    .section-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 120px 12px 50px;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-detail {
        padding: 20px 16px;
    }

    .service-info h3 {
        font-size: 24px;
    }

    .price {
        font-size: 26px;
    }

    .description {
        font-size: 15px;
    }

    .ingredients {
        padding: 16px;
    }

    .ingredients h4 {
        font-size: 17px;
    }

    .ingredients li {
        font-size: 15px;
    }

    .shot-card {
        padding: 24px 20px;
    }

    .shot-card h3 {
        font-size: 22px;
    }

    .shot-card .price {
        font-size: 24px;
    }

    .service-book-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .shot-info {
        padding: 16px 14px;
        line-height: 2.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-height: 60px;
    }

    .shot-info span {
        display: block;
        margin-top: 8px;
        line-height: 1.8;
        padding-top: 4px;
    }

    .shot-info br {
        margin: 6px 0;
    }

    .section-subtitle {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 28px;
    }
}

/* Mobile-specific fixes for inline styles (membership & events sections) */
@media (max-width: 768px) {
    /* Membership section mobile fixes */
    section[style*="linear-gradient(135deg, #1a365d"] .container > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 16px;
    }

    section[style*="linear-gradient(135deg, #1a365d"] div[style*="padding: 40px"] {
        padding: 32px 24px !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] h3 {
        font-size: 24px !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] p[style*="font-size: 42px"] {
        font-size: 36px !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] ul li {
        font-size: 15px !important;
        padding: 10px 0 !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] div[style*="position: absolute"] {
        top: -12px !important;
        right: 12px !important;
        font-size: 12px !important;
        padding: 6px 16px !important;
    }

    /* Group events section mobile fixes */
    section[style*="background: #f8f9fa"] div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    section[style*="background: #f8f9fa"] div[style*="padding: 30px"] {
        padding: 24px 20px !important;
    }

    section[style*="background: #f8f9fa"] i[style*="font-size: 48px"] {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }

    section[style*="background: #f8f9fa"] div[style*="max-width: 600px"] {
        padding: 32px 24px !important;
        margin: 40px 16px 0 !important;
    }

    section[style*="background: #f8f9fa"] h3[style*="font-size: 24px"] {
        font-size: 20px !important;
    }

    section[style*="background: #f8f9fa"] p[style*="font-size: 18px"] {
        font-size: 16px !important;
    }

    section[style*="background: #f8f9fa"] a[style*="font-size: 20px"] {
        font-size: 16px !important;
        padding: 16px 24px !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    section[style*="background: #f8f9fa"] a[style*="font-size: 20px"] span {
        display: block;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes for membership section */
    section[style*="linear-gradient(135deg, #1a365d"] div[style*="padding: 32px"] {
        padding: 24px 20px !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] h3 {
        font-size: 22px !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] p[style*="font-size: 36px"] {
        font-size: 32px !important;
    }

    section[style*="linear-gradient(135deg, #1a365d"] ul li {
        font-size: 14px !important;
    }

    /* Extra small mobile fixes for group events */
    section[style*="background: #f8f9fa"] div[style*="padding: 24px"] {
        padding: 20px 16px !important;
    }

    section[style*="background: #f8f9fa"] div[style*="max-width: 600px"] {
        padding: 24px 20px !important;
    }

    section[style*="background: #f8f9fa"] a[style*="font-size: 16px"] {
        font-size: 15px !important;
        padding: 14px 20px !important;
    }
}
