/* Base Styles */
:root {
    --primary-color: #d2da6b;
    --secondary-color: #2a234b;
    --text-color: #333;
    --light-bg: #f2f1fa;
    --dark-bg: #2a234b;
    --card-bg: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background-color: #c5cc5c;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 30px;
}

.btn-secondary:hover {
    background-color: #c5cc5c;
}

.btn-text {
    background: transparent;
    color: var(--dark-bg);
    padding: 12px 0;
}

.btn-text:hover {
    opacity: 0.8;
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-bg);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    background-image: url('./assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--dark-bg);
    position: relative;
    padding: 120px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    margin-bottom: 40px;
    font-size: 18px;
}

/* About Section */
.about {
    background-color: var(--dark-bg);
    color: white;
    text-align: left;
}

.about h2 {
    color: white;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: left;
    height: 100%;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: left;
    height: 100%;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.services-footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: left;
    margin-top: 50px;
}

.services-footer h3 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    text-align: center;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: left;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.phone-group {
    display: flex;
    align-items: center;
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    height: 50px;
}

.flag-icon {
    width: 20px;
    margin-right: 8px;
}

.phone-group input {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.8;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 400px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 20px;
}

.cookie-icon {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-popup.active {
    display: block;
}

/* Thank You Popup */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

.thank-you-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
}

.thank-you-popup.active {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .feature-card,
    .service-card {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

.main-section h1 {
    text-transform: uppercase;
    text-align: center;
}