/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Landing Page Styles */
.landing {
    background: url('bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dark-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing .content {
    padding: 20px;
}

.landing h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 100, 0.7);
}

.landing p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgba(255, 0, 100, 0.5);
}

/* Button Styles */
.glow-button, .pay-button, .submit-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff0055, #ff3399);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 100, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glow-button:hover, .pay-button:hover, .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 100, 0.8);
}

/* Services Page Styles */
.services {
    background: linear-gradient(135deg, #1a1a1a, #2a0a0a);
    min-height: 100vh;
    padding: 40px 0;
}

.services h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff3399;
    text-align: center;
}

.services h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #ff6699;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.services-list {
    flex: 1;
    min-width: 300px;
}

.image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.03);
}

/* Checkbox Styles */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    color: #ff3399;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 2px solid #ff3399;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    background-color: rgba(255, 51, 153, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #ff3399;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pay-button {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* Payment Page Styles */
.payment {
    background: linear-gradient(135deg, #1a1a1a, #0a0a2a);
    min-height: 100vh;
    padding: 40px 0;
}

.payment h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff3399;
    text-align: center;
}

.payment-steps {
    margin-bottom: 40px;
}

.step {
    margin-bottom: 15px;
}

.note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
    font-style: italic;
}

.confirmation {
    background: rgba(255, 51, 153, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 51, 153, 0.3);
}

.confirmation h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6699;
}

.confirmation p {
    margin-bottom: 10px;
}

.confirmation textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ff3399;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    display: block;
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .landing h1 {
        font-size: 2rem;
    }
    
    .landing p {
        font-size: 1.2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .services-list, .image-container {
        width: 100%;
    }
    
    .image-container {
        order: -1;
        margin-bottom: 30px;
    }
}
/* Payment Steps List Styles */
.step-list {
    list-style-type: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.step-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    display: flex;
    flex-direction: column;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ff0055, #ff3399);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 0, 100, 0.5);
}

.step-text {
    padding-top: 3px;
}

.step-item:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
    font-style: italic;
    padding-left: 0;
}
