/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
}

:root {
    --bg-gradient-start: #051937;
    --bg-gradient-end: #004d7a;
    --accent-color: #ffc857;
    --heading-color: #ffffff;
    --text-color: #d0d0d0;
    --button-color: #ff6b6b;
    --button-hover-color: #d94f4f;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease-in-out;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background-color: var(--button-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--button-hover-color);
    text-decoration: none;
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(5, 25, 55, 0.95);
    z-index: 100;
    box-shadow: var(--box-shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
}

.logo svg {
    width: 150px;
    height: auto;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone {
    margin-right: 20px;
    color: var(--heading-color);
    font-weight: 600;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--heading-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--heading-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.benefits {
    flex: 1;
    min-width: 300px;
}

.benefit-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Service Cards with Images */
.service-icon {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: var(--box-shadow);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    background: rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 200, 87, 0.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--heading-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 6px;
}

/* Form Errors */
.form-errors {
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--button-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.error-message {
    color: var(--button-color);
    margin: 5px 0;
    font-weight: 600;
}

/* Contact Info Section */
.contact-info-section {
    background: rgba(0, 0, 0, 0.2);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--heading-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 25, 55, 0.95);
    padding: 20px;
    display: none;
    z-index: 999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-consent-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 3;
    min-width: 300px;
}

.cookie-buttons {
    flex: 1;
    min-width: 200px;
    text-align: right;
}

/* Policy Pages */
.policy-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.policy-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-page p, .policy-page ul, .policy-page ol {
    margin-bottom: 20px;
}

.policy-page ul, .policy-page ol {
    padding-left: 20px;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    margin-bottom: 30px;
}

.thank-you .btn {
    margin-top: 30px;
}

/* Thank You Page with Border */
.thank-you-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.thank-you-box h1 {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thank-you-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.thank-you-box .btn {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-gradient-start);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: var(--transition);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 20px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .contact-info {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .cookie-buttons {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card, .testimonial-card {
        min-width: 100%;
    }
    
    .policy-page {
        padding: 20px;
        margin: 40px auto;
    }
} 

/* Anchor Offset Fix */
section[id] {
    scroll-margin-top: 100px;
}

/* For older browsers fallback */
section[id]:before {
    content: "";
    display: block;
    height: 100px;
    margin-top: -100px;
    visibility: hidden;
} 