/* Main styles for domain.com */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #001f3f;
    color: #dddddd;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    color: #2ecc40;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff851b;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styles */
header {
    background-color: rgba(0, 31, 63, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc40;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #dddddd;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
    background-color: rgba(46, 204, 64, 0.2);
}

/* Hero section */
.hero {
    height: 80vh;
    background-image: url('./img/1GvAiW.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #dddddd;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2ecc40;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2ecc40;
    color: #ffffff;
}

/* Section styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #2ecc40;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #ff851b;
}

.section-title p {
    font-size: 18px;
    color: #dddddd;
    max-width: 700px;
    margin: 0 auto;
}

/* Services section */
.services {
    background-color: rgba(0, 31, 63, 0.8);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(46, 204, 64, 0.4);
    display: flex;
    flex-direction: column;
    height: 550px; /* Increased height for more spacing */
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #2ecc40;
}

.service-card h3 {
    font-size: 24px;
    color: #2ecc40;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #ff851b;
    margin-bottom: 40px;
    padding: 5px 0;
    border-top: 1px solid rgba(46, 204, 64, 0.2);
    border-bottom: 1px solid rgba(46, 204, 64, 0.2);
}

.service-card-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card .btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    border: 2px solid #2ecc40;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    width: calc(100% - 60px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

/* About section */
.about {
    background-color: rgba(0, 31, 63, 0.9);
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    font-size: 28px;
    color: #2ecc40;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

/* Form section */
.form-section {
    background-color: rgba(0, 31, 63, 0.8);
}

.form-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(46, 204, 64, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2ecc40;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(46, 204, 64, 0.3);
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2ecc40;
    box-shadow: 0 0 0 3px rgba(46, 204, 64, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232ecc40' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select.form-control option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 14px;
    color: #dddddd;
}

.checkbox-group a {
    color: #2ecc40;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Testimonials section */
.testimonials {
    background-color: rgba(0, 31, 63, 0.9);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    border: 1px solid rgba(46, 204, 64, 0.2);
}

.testimonial-card .quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card .quote::before,
.testimonial-card .quote::after {
    content: '"';
    color: #ff851b;
    font-size: 30px;
    font-weight: 700;
}

.testimonial-card .author {
    font-weight: 600;
    color: #2ecc40;
}

/* FAQ section */
.faq {
    background-color: rgba(0, 31, 63, 0.8);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(46, 204, 64, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.faq-item summary {
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #2ecc40;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    outline: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ff851b;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Contact section */
.contact {
    background-color: rgba(0, 31, 63, 0.9);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 24px;
    color: #2ecc40;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: #ff851b;
    margin-right: 10px;
    font-size: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    font-size: 18px;
    color: #2ecc40;
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(46, 204, 64, 0.2);
    max-width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: rgba(0, 15, 31, 0.9);
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 20px;
    color: #2ecc40;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff851b;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dddddd;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2ecc40;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: rgba(0, 31, 63, 0.95);
    border: 1px solid #2ecc40;
    border-radius: 10px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s forwards;
}

.cookie-consent p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #2ecc40;
    color: #ffffff;
    border: none;
}

.cookie-accept:hover {
    background-color: #27ae60;
}

.cookie-decline {
    background-color: transparent;
    color: #dddddd;
    border: 1px solid #dddddd;
}

.cookie-decline:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* Policy pages */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(46, 204, 64, 0.2);
}

.policy-container h1 {
    font-size: 32px;
    color: #2ecc40;
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    font-size: 24px;
    color: #ff851b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container p {
    margin-bottom: 15px;
}

.policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Thank you page */
.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(46, 204, 64, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thank-you h1 {
    font-size: 48px;
    color: #2ecc40;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Extra pages */
.extra-page {
    padding: 100px 0;
}

.extra-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(46, 204, 64, 0.2);
}

.extra-container h1 {
    font-size: 32px;
    color: #2ecc40;
    margin-bottom: 30px;
    text-align: center;
}

.extra-container p {
    margin-bottom: 15px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    iframe {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
    }
    
    .nav-toggle-label {
        display: block;
        font-size: 24px;
        color: #2ecc40;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 31, 63, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: circle(0% at top right);
        transition: clip-path 0.5s ease;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        clip-path: circle(150% at top right);
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .service-card,
    .testimonial-card {
        max-width: 100%;
    }
    
    .policy-container,
    .extra-container {
        padding: 30px 20px;
    }
}