/* ====================================== */
/* GLOBAL STYLES */
/* ====================================== */

html {
    width: 100%;
    height: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a2f42;
    background-image: linear-gradient(to bottom right, #1a2f42 0%, #2a3f52 100%);
    background-attachment: fixed;
    height: auto;
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
}

/* Ensure all text is visible on mobile */
body, body * {
    color: inherit;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ====================================== */
/* HEADER */
/* ====================================== */

.header {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    padding: 20px 0;
    border-bottom: 2px solid #D4AF37;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    pointer-events: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.header-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    padding: 3px;
}

.header-info h1 {
    font-size: 26px;
    font-weight: 700;
    color: #D4AF37;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
}

.contact-info a {
    color: #D4AF37;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.7;
}

/* ====================================== */
/* NAVIGATION MENU */
/* ====================================== */

.main-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #D4AF37;
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid transparent;
    cursor: pointer;
}

.main-nav a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    transform: translateY(-2px);
}

/* ====================================== */
/* MAIN CONTENT */
/* ====================================== */

.main-content {
    flex: 1;
}

.content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #D4AF37;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ====================================== */
/* HOME SECTION */
/* ====================================== */

.home-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: white;
}

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-section h2 {
    font-size: 38px;
    color: #D4AF37;
    margin-bottom: 12px;
}

.welcome-section p {
    font-size: 18px;
    color: white !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #2a3f52;
    background-image: linear-gradient(135deg, #2a3f52 0%, #1a2f42 100%);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    color: white;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.card-icon {
    font-size: 50px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #D4AF37;
    font-weight: 600;
}

.category-card p {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-arrow {
    font-size: 28px;
    color: #D4AF37;
    font-weight: bold;
}

/* ====================================== */
/* ABOUT SECTION */
/* ====================================== */

.about-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    background: rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* ====================================== */
/* SERVICES SECTION */
/* ====================================== */

.services-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: rgba(255, 255, 255, 0.9);
}

.services-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

#services-list {
    display: grid;
    gap: 30px;
}

/* Services Category */
.services-category {
    margin-bottom: 20px;
}

.services-category h3 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    color: #D4AF37;
    font-size: 16px;
    margin-bottom: 8px;
}

.service-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.btn-add-to-cart {
    background-color: #D4AF37;
    color: #1a2f42;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    align-self: flex-end;
}

.btn-add-to-cart:hover {
    background-color: #e8c757;
    transform: scale(1.05);
}

.btn-add-to-cart:active {
    transform: scale(0.98);
}

/* Shopping Cart */
.cart-wrapper {
    background: linear-gradient(135deg, rgba(26, 47, 66, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.cart-header h3 {
    color: #D4AF37;
    font-size: 20px;
    margin: 0;
}

.cart-count {
    background: #D4AF37;
    color: #1a2f42;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
}

.cart-items-container {
    max-height: 400px;
    overflow-y: auto;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    font-style: italic;
}

.cart-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.cart-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.cart-item-info strong {
    color: #D4AF37;
    font-size: 14px;
}

.cart-item-info small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.cart-item-remove {
    background: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

/* SERVICE MODAL */
.modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 9999 !important;
    justify-content: center !important;
    align-items: center !important;
    backdrop-filter: blur(3px) !important;
    padding: 20px !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.modal.active {
    display: flex !important;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: #1a2f42;
    border: 2px solid #D4AF37;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(26, 47, 66, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.modal-header h2 {
    color: #D4AF37;
    margin: 0;
    font-size: 24px;
}

.modal-close {
    background: transparent;
    border: none;
    color: #D4AF37;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.modal-services-list {
    display: grid;
    gap: 15px;
}

.modal-service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.modal-service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateX(5px);
}

.modal-service-info {
    flex: 1;
}

.modal-service-info h4 {
    color: #D4AF37;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.modal-service-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.btn-add-to-cart-modal {
    background-color: #D4AF37;
    color: #1a2f42;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-add-to-cart-modal:hover {
    background-color: #e8c757;
    transform: scale(1.05);
}

.btn-add-to-cart-modal:active {
    transform: scale(0.98);
}

.selection-summary {
    background: linear-gradient(135deg, rgba(26, 47, 66, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #D4AF37;
}

.selection-summary h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #D4AF37;
}

#selected-services-display {
    font-size: 14px;
    line-height: 1.6;
    opacity: 1;
    color: rgba(255, 255, 255, 0.8);
}

/* ====================================== */
/* SUCCESS SECTION */
/* ====================================== */

.success-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    text-align: center;
    padding: 60px 0;
    display: none !important;
    visibility: hidden !important;
    width: 100% !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: successBounce 0.8s ease;
}

@keyframes successBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-section h2 {
    color: #D4AF37;
    font-size: 36px;
    margin-bottom: 10px;
}

.success-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

.success-info {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateX(5px);
}

.info-icon {
    font-size: 40px;
    color: #D4AF37;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text {
    flex: 1;
}

.info-text h3 {
    color: #D4AF37;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.info-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* ====================================== */
/* WHY CHOOSE US SECTION */
/* ====================================== */

.why-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: white;
}

.why-section h2 {
    color: #D4AF37;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #D4AF37;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ====================================== */
/* REVIEWS SECTION */
/* ====================================== */

.reviews-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0;
}

.reviews-section h2 {
    color: #D4AF37;
    margin-bottom: 40px;
    text-align: center;
    font-size: 32px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.review-stars {
    color: #D4AF37;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    color: #D4AF37;
    font-weight: 600;
    text-align: right;
}

/* Review Form Styles */
.review-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-form-container h3 {
    color: #D4AF37;
    margin-bottom: 25px;
    font-size: 18px;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.review-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #D4AF37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.review-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Rating */
.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.stars-container {
    display: flex;
    gap: 8px;
}

.stars-container input[type="radio"] {
    display: none;
}

.stars-container label {
    font-size: 40px;
    color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    margin: 0 4px;
    filter: none;
    text-shadow: none;
    transform: none;
}

.stars-container label:hover {
    color: #D4AF37;
    transform: scale(1.1);
    text-shadow: none;
    filter: none;
}

.stars-container input[type="radio"]:checked + label,
.stars-container label.selected {
    color: #D4AF37;
    transform: scale(1.1);
    text-shadow: none;
    filter: none;
}

.review-btn {
    width: 100%;
    margin-top: 5px;
}

/* ====================================== */
/* BOOKING SECTION */
/* ====================================== */

.booking-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: rgba(255, 255, 255, 0.9);
}

.booking-summary {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    border-left: 4px solid #D4AF37;
}

.booking-summary h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #D4AF37;
}

.booking-summary p {
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #D4AF37;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    min-height: 15px;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #D4AF37;
    color: #1a2f42;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    flex: 1;
    min-width: 150px;
}

.btn-primary:hover:not(:disabled) {
    background: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 600;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* ====================================== */
/* SUCCESS SECTION */
/* ====================================== */

.success-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: white;
    display: flex !important;
    align-items: flex-start;
    min-height: auto;
    padding: 80px 0;
}

.success-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.success-icon {
    font-size: 70px;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-container h2 {
    color: #D4AF37;
    font-size: 32px;
    margin-bottom: 15px;
}

.success-container p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 10px;
}

.success-message {
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 30px;
    font-size: 14px;
}

.review-section-inline {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.review-section-inline h3 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.review-section-inline .review-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.review-section-inline .reviews-list {
    margin-top: 30px;
}

/* ====================================== */
/* CONTACT SECTION */
/* ====================================== */

.contact-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-methods h3,
.contact-info-detailed h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-link.email {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.contact-link.email:hover {
    background: #D4AF37;
    color: #1a2f42;
}

.contact-link.whatsapp {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}

.contact-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.contact-info-detailed p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-info-detailed a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-detailed a:hover {
    text-decoration: underline;
}

/* ====================================== */
/* REVIEWS SECTION */
/* ====================================== */

.reviews-section {
    background-color: #1a2f42;
    background-image: linear-gradient(135deg, #1a2f42 0%, #2a3f52 100%);
    color: white;
}

.reviews-section h2 {
    color: #D4AF37;
}

.review-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.review-form-container h3 {
    margin-bottom: 20px;
    color: #D4AF37;
    font-size: 16px;
}

.review-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-form input,
.review-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.star-rating {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    justify-content: center;
}

.star {
    font-size: 32px;
    cursor: pointer;
    color: #ddd;
    transition: 0.2s;
}

.star:hover,
.star.active {
    color: #ffc107;
}

.reviews-list {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-name {
    color: #D4AF37;
    font-weight: 600;
    font-size: 16px;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
}

.review-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-item > p:last-child {
    color: #999 !important;
    font-size: 12px !important;
    margin-top: 10px !important;
}

/* ====================================== */
/* FOOTER */
/* ====================================== */

.footer {
    background: #1a2f42;
    color: #D4AF37;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid #D4AF37;
    font-size: 13px;
}

/* ====================================== */
/* UTILITIES */
/* ====================================== */

.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ====================================== */
/* RESPONSIVE - TABLET & LARGE SCREENS */
/* ====================================== */

@media (max-width: 1024px) {
    .header-content {
        gap: 10px;
    }

    .header-top {
        flex: none;
    }

    .main-nav {
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================== */
/* RESPONSIVE - TABLETS */
/* ====================================== */

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .hamburger {
        display: none;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .header-top {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a2f42;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid #D4AF37;
    }

    .main-nav.active {
        max-height: 400px;
    }

    .main-nav a {
        padding: 15px 20px;
        border: none;
        text-align: left;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }

    .header-info h1 {
        font-size: 16px;
    }

    .contact-info {
        gap: 10px;
        font-size: 12px;
    }

    .main-nav {
        position: static;
        max-height: none;
        flex-direction: row;
    }

    .main-nav a {
        padding: 8px 12px;
        border: 1px solid transparent;
        border-bottom: none;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .welcome-section h2 {
        font-size: 28px;
    }

    .welcome-section p {
        font-size: 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group button {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 20px;
    }

    .success-section {
        padding: 40px 0;
    }

    .success-container {
        padding: 30px 20px;
    }

    .success-icon {
        font-size: 50px;
    }

    .success-container h2 {
        font-size: 24px;
    }
}

/* ====================================== */
/* RESPONSIVE - MOBILE PHONES */
/* ====================================== */

@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    html {
        -webkit-user-select: none;
        user-select: none;
        font-size: 16px;
        width: 100vw;
        overflow-x: hidden;
    }

    body {
        width: 100vw;
        overflow-x: hidden;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* iOS Safari critical fix: ensure all content is visible and above background */
    @supports(-webkit-touch-callout: none) {
        body {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden;
        }

        main {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            min-height: 100%;
        }
    }

    .container {
        padding: 0 15px;
    }

    /* iOS fix: ensure all text is visible */
    h1, h2, h3, h4, h5, h6, p, span, a, label, li {
        -webkit-user-select: text;
        user-select: text;
    }

    /* Keep gold colors for titles */
    h2, .content-section h2, .category-card h3, .why-card h3, .contact-methods h3, .contact-info-detailed h3 {
        color: #D4AF37;
    }

    /* HEADER */
    .header {
        padding: 15px 0;
        border-bottom: 2px solid #D4AF37;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        gap: 10px;
        width: 100%;
    }

    .header-top {
        gap: 10px;
        flex: 1;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header-logo {
        width: 75px;
        height: 75px;
        margin: 0 auto;
    }

    .header-info h1 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .header-info p {
        font-size: 13px;
        margin: 2px 0;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        gap: 3px;
        align-items: center;
    }

    .contact-info {
        display: flex;
        font-size: 11px;
        gap: 5px;
    }

    .main-nav {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        background: transparent;
        flex-direction: row;
        gap: 15px;
        max-height: none !important;
        overflow: visible !important;
        transition: none;
        border-bottom: none;
        z-index: 99;
        padding: 0;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        height: auto;
        display: flex !important;
        width: 100%;
    }

    .main-nav.active {
        max-height: none !important;
        display: flex !important;
    }

    .main-nav a {
        padding: 8px 12px;
        border: none;
        text-align: center;
        border-bottom: none;
        font-size: 13px;
        color: #D4AF37;
        text-decoration: none;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .main-nav a:hover {
        transform: scale(1.05);
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }

    /* Mobile stars optimization */
    .stars-container label {
        font-size: 28px;
        margin: 0 4px;
        color: rgba(212, 175, 55, 0.3);
        filter: none;
        text-shadow: none;
    }

    /* Highlight selected stars and all previous */
    .stars-container input[type="radio"]:checked + label,
    .stars-container label.selected {
        color: #D4AF37;
        filter: none;
        text-shadow: none;
    }

    .rating-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .review-form-container {
        padding: 12px !important;
    }
}
