/* Variables */
:root {
    --bg-color: #1E1B24;
    --accent-pink: #FF6B6B;
    --accent-yellow: #FFD93D;
    --text-color: #E5E5E5;
    --heading-color: #FFFFFF;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --header-height: 80px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-yellow);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    background-color: var(--accent-yellow);
    color: #000;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: var(--accent-pink);
    color: #000;
    transform: translateY(-3px);
}

/* Header */
.main-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 27, 36, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: var(--header-height);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo {
    display: block;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav .nav-list a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    background-color: var(--accent-yellow);
    color: #000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--text-color);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(30, 27, 36, 0.8), rgba(30, 27, 36, 0.9)), url('./img/MOGFxM.jpg') no-repeat center/cover;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* About Section */
.about {
    background-color: rgba(255, 107, 107, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text h2 {
    margin-bottom: 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
    margin-bottom: 20px;
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.service-card ul {
    list-style-position: inside;
    text-align: left;
    margin-top: 15px;
    padding-left: 10px;
}

.service-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-card ul li::before {
    content: "•";
    color: var(--accent-yellow);
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits {
    background: rgba(255, 107, 107, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 40px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h3 {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 50px;
    color: var(--accent-yellow);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    left: -15px;
    top: -15px;
}

.testimonial-text::after {
    right: -15px;
    bottom: -25px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--accent-yellow);
}

/* How We Work Section */
.work-process {
    background-color: rgba(255, 217, 61, 0.05);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 107, 107, 0.3);
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 150px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--bg-color);
    border: 3px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    transition: var(--transition);
}

.step-item:hover .step-number {
    background-color: var(--accent-yellow);
    color: var(--bg-color);
}

.step-title {
    font-size: 1rem;
    text-align: center;
}

/* Contact Form Section */
.contact-form {
    background-color: rgba(30, 27, 36, 0.8);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

/* Improved select styling */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 12px;
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.3);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.faq-answer {
    background-color: rgba(30, 27, 36, 0.5);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer */
.main-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-contact h3,
.footer-legal h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-legal ul {
    list-style: none;
}

.footer-legal li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 9999;
    transition: var(--transition);
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    margin-right: 20px;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 120px auto 60px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-container p {
    margin-bottom: 15px;
}

.policy-container ul,
.policy-container ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 60px 40px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-yellow);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.thank-you p {
    font-size: 1.2rem;
    margin: 0 auto 30px;
    max-width: 600px;
}

.thank-you .btn {
    margin-top: 20px;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
/* Tablet */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        top: 0;
        left: 40px;
        width: 3px;
        height: 100%;
    }
    
    .step-item {
        flex-direction: row;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .step-number {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav .nav-list {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .main-nav.active .nav-list {
        display: flex;
    }
    
    .main-nav .nav-list li {
        margin-bottom: 15px;
    }
    
    .main-nav .nav-list a {
        display: block;
        padding: 10px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .policy-container {
        padding: 20px;
    }
} 