/* Global Styles generated by PHP */
:root {
    --bg-color: #101322;
    --accent-pink: #ff6b81;
    --accent-teal: #48e5c2;
    --text-light: #e9f1f7;
    --text-white: #ffffff;
    --shadow: #00000025;
    --radius: 1.25rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    /* Make all h2 centered by default */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    /* Center the underline for all h2 elements */
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    border-radius: var(--radius);
}

h3 {
    font-size: 1.75rem;
    text-align: center; /* Center all h3 elements too */
}

p {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Links & Buttons */
a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-pink);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px var(--shadow);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: var(--text-white);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 0; /* Reduced padding to make header smaller */
    background-color: rgba(16,19,34, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem; /* Smaller font size */
    font-weight: 800;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.25rem;
}

nav ul li a:hover {
    color: var(--accent-pink);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: linear-gradient(90deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    transition: var(--transition);
    border-radius: 0.5rem;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Mobile Menu Toggle - PHP Based */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 1.5rem;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--accent-pink);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 7rem; /* Adjusted for smaller header */
    padding-bottom: 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center; /* Center text */
}

.hero:before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,107,129, 0.15) 0%, rgba(16,19,34, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 40%;
    background: radial-gradient(circle, rgba(72,229,194, 0.15) 0%, rgba(16,19,34, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items */
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Cards and Blocks */
.card {
    background: rgba(25, 28, 45, 0.5);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(72,229,194, 0.1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,107,129, 0.2);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(72,229,194, 0.1);
    border-radius: 50%;
    color: var(--accent-teal);
    font-size: 1.5rem;
}

/* Grid and Flex Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}

/* About Us Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    position: relative;
    text-align: left; /* Ensure text is left-aligned */
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-image img {
    display: block;
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(25, 28, 45, 0.5);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 8px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(72,229,194, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,107,129, 0.2);
}

.service-image {
    width: 100%;
    height: 160px;
    margin-bottom: 1.5rem;
    border-radius: calc(var(--radius) - 0.5rem);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    align-self: center;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(72,229,194, 0.1);
}

.faq-question {
    background: rgba(25, 28, 45, 0.7);
    padding: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question a {
    display: block;
    width: 100%;
    color: var(--text-white);
    text-decoration: none;
}

.faq-question a:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-teal);
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(16, 19, 34, 0.3);
}

.faq-answer-content {
    padding: 1.25rem 0;
}

.faq-item.active .faq-question {
    background: rgba(72,229,194, 0.1);
}

.faq-item.active .faq-question a:after {
    content: '−';
    color: var(--accent-pink);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Form Styles */
.form-container {
    background: rgba(25, 28, 45, 0.7);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: 0 15px 40px var(--shadow);
    border: 1px solid rgba(72,229,194, 0.15);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,107,129, 0.2) 0%, rgba(16, 19, 34, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.form-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(72,229,194, 0.2) 0%, rgba(16, 19, 34, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: calc(var(--radius) - 0.5rem);
    background: rgba(16, 19, 34, 0.5);
    border: 1px solid rgba(72,229,194, 0.2);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-pink);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,129, 0.2);
    background: rgba(16, 19, 34, 0.7);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.form-checkbox input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-pink);
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-checkbox a {
    text-decoration: underline;
    font-weight: 600;
}

.form-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-teal) 100%);
    margin-top: 1rem;
    border: none;
    position: relative;
    z-index: 1;
}

.form-errors {
    padding: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 107, 129, 0.15);
    border: 1px solid rgba(255, 107, 129, 0.3);
    border-radius: calc(var(--radius) - 0.5rem);
    color: var(--text-white);
}

.form-errors ul {
    padding-left: 1.5rem;
}

.form-errors li {
    margin-bottom: 0.5rem;
}

.form-errors li:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
.footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(to bottom, rgba(13, 15, 27, 0.9), rgba(16,19,34, 0.95));
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border-top: 1px solid rgba(72,229,194, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,129, 0.05) 0%, rgba(13, 15, 27, 0) 70%);
    z-index: 0;
    border-radius: 50%;
    opacity: 0.7;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-info p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-contact {
    margin-top: 2rem;
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--accent-teal);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.footer-contact-item i {
    margin-right: 1rem;
    color: var(--accent-pink);
    font-size: 1.25rem;
    padding-top: 0.25rem;
}

.footer-contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--accent-teal);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.9;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-pink);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(72,229,194, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
}

.footer-legal a {
    margin-left: 1.5rem;
    color: var(--text-light);
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-pink);
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 7rem auto 4rem;
    padding: 3rem;
    background: rgba(25, 28, 45, 0.7);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px var(--shadow);
    border: 1px solid rgba(72,229,194, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,107,129, 0.1) 0%, rgba(16, 19, 34, 0) 70%);
    z-index: 0;
}

.policy-container::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(72,229,194, 0.1) 0%, rgba(16, 19, 34, 0) 70%);
    z-index: 0;
}

.policy-container h1 {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.policy-container > p {
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.policy-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.policy-container h2:after {
    left: 0;
    transform: none;
    width: 4rem;
}

.policy-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 1.35rem;
    position: relative;
    z-index: 1;
}

.policy-container p,
.policy-container ul,
.policy-container ol {
    text-align: left;
    position: relative;
    z-index: 1;
}

.policy-container ul,
.policy-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-container li {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        padding: 0;
        z-index: 1000;
    }
    
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
    }
    
    nav ul li a:after {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .policy-container {
        padding: 2rem;
        margin-top: 6rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .footer-legal {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }
    
    .footer-legal a {
        margin: 0 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

 