/* Main Styles for domain.com */

/* Variables */
:root {
    --color-primary: #0D9488; /* Deep turquoise */
    --color-accent: #FF6B6B; /* Coral */
    --color-background: #F5E6CA; /* Light sand */
    --color-dark: #2F2F2F; /* Dark graphite */
    --color-highlight: #B4FF39; /* Neon lime */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition-main: all 0.3s ease;
    --shadow-main: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-align: center;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-main);
}

a:hover {
    color: var(--color-accent);
    background: linear-gradient(to right, var(--color-accent), var(--color-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.btn {
    display: inline-block;
    background-color: var(--color-highlight);
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-main);
    box-shadow: var(--shadow-main);
}

.btn:hover {
    background: linear-gradient(to right, var(--color-accent), var(--color-highlight));
    transform: translateY(-3px);
    -webkit-text-fill-color: initial;
}

/* Header Styles */
.header {
    background-color: var(--color-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--color-highlight);
    -webkit-text-fill-color: var(--color-highlight);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-highlight);
    transition: var(--transition-main);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner Section */
.banner {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-content {
    color: white;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.banner-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.banner-content p {
    
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.8s;
}

.banner-btn {
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about .container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-content, .about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-main);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--color-dark);
    color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition-main);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-item h3 {
    color: white;
    margin-top: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-main);
}

.benefit-icon {
    color: var(--color-primary);
    font-size: 2rem;
}

/* Form Section */
.contact-form {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: var(--transition-main);
}

select.form-control {
    color: white;
}

select.form-control option {
    color: var(--color-dark);
    background-color: white;
}

.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(180, 255, 57, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-top: 5px;
}

.submit-btn {
    background-color: var(--color-highlight);
    color: var(--color-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-main);
    animation: pulse 2s infinite;
}

.submit-btn:hover {
    animation: none;
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-main);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-primary);
    margin-top: 1rem;
    display: block;
}

/* Map Section */
.map-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--color-dark);
    color: white;
    text-align: center;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    pointer-events: none;
}

.address-info {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Section */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--color-highlight);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    transition: var(--transition-main);
}

.footer-links a:hover {
    color: var(--color-highlight);
    -webkit-text-fill-color: var(--color-highlight);
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    color: var(--color-highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    color: var(--color-dark);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-main);
    z-index: 9999;
    max-width: 400px;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--color-primary);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-repeat: repeat;
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(180, 255, 57, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(180, 255, 57, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(180, 255, 57, 0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .mobile-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
}
