/* Global Styles */
:root {
    --primary-color-dark: #004e92;
    --primary-color-light: #ff6f61;
    --text-light: #fefefe;
    --text-grey: #cccccc;
    --accent-fuchsia: #ff0080;
    --accent-saffron: #f4c542;
    --accent-turquoise: #2ec4b6;
}

/* Fix for mobile horizontal scroll issue */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color-dark) 0%, var(--primary-color-light) 100%);
    min-height: 100vh;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-saffron);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-fuchsia);
    z-index: -1;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn:hover::before {
    background: var(--accent-turquoise);
    transform: scale(1.05);
}

.btn-primary::before {
    background: var(--accent-fuchsia);
}

.btn-secondary::before {
    background: var(--accent-turquoise);
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    display: block;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone {
    color: var(--accent-saffron);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: bold;
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-fuchsia);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-nav {
    border: 2px solid var(--accent-fuchsia);
    border-radius: 50px;
    padding: 8px 18px !important;
}

.btn-nav:hover {
    background-color: var(--accent-fuchsia);
    color: var(--text-light);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 30px 0;
    z-index: 999;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/QvY6AK.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 1.8rem;
    color: var(--accent-saffron);
    margin-bottom: 40px;
    font-weight: normal;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.6);
}

.about h2 {
    text-align: center;
    color: var(--accent-turquoise);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
}

/* Services Section */
.services {
    background: rgba(0, 0, 0, 0.4);
}

.services h2 {
    text-align: center;
    color: var(--accent-fuchsia);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--accent-saffron);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    background: rgba(0, 0, 0, 0.6);
}

.pricing h2 {
    text-align: center;
    color: var(--accent-turquoise);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-fuchsia);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card h3 {
    color: var(--accent-saffron);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-card ul {
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.pricing-card ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-fuchsia);
}

/* Testimonials Section */
.testimonials {
    background: rgba(0, 0, 0, 0.4);
}

.testimonials h2 {
    text-align: center;
    color: var(--accent-fuchsia);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: """;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--accent-fuchsia);
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Testimonial author styling */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-saffron);
}

.testimonial-card cite {
    color: var(--accent-saffron);
    font-style: normal;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: rgba(0, 0, 0, 0.6);
}

.contact h2 {
    text-align: center;
    color: var(--accent-turquoise);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.form-group.checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    margin-left: 0;
    flex-shrink: 0;
    width: auto;
    padding: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group.checkbox label {
    margin-bottom: 0;
    text-align: left;
    line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group button {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid var(--accent-fuchsia);
    background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background-color: #333;
    color: var(--text-light);
}

/* Footer Styles */
.main-footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-contact h4,
.footer-legal h4 {
    color: var(--accent-saffron);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-legal ul li a {
    color: var(--text-grey);
    transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
    color: var(--accent-turquoise);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner p {
    margin-bottom: 0;
    margin-right: 20px;
}

.cookie-banner a {
    color: var(--accent-saffron);
    text-decoration: underline;
}

/* Thank You Page */
.thank-you {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 10px;
    margin-top: -100px;
}

.thank-you h1 {
    color: var(--accent-saffron);
    margin-bottom: 30px;
}

.thank-you .btn {
    margin-top: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .about-content, 
    .services-grid, 
    .pricing-grid, 
    .testimonials-grid {
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        top: 20px;
        right: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .thank-you-content {
        padding: 30px;
    }
    
    /* Fix for testimonials in mobile */
    .testimonials-grid {
        width: 100%;
    }
    
    .testimonial-card {
        width: 100%;
        box-sizing: border-box;
    }
} 