/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    color: #08cfaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF6A0A;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.btn-primary {
    background-color: #08cfaa;
    color: white;
}

.btn-primary:hover {
    background-color: #06b597;
    color: white;
}

.btn-secondary {
    background-color: #FF6A0A;
    color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: #08cfaa;
    border: 2px solid #08cfaa;
}

.btn-outline:hover {
    background-color: #08cfaa;
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #08cfaa;
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #08cfaa;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #08cfaa 0%, #FF6A0A 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #08cfaa 0%, #FF6A0A 100%);
    color: white;
    text-align: center;
    padding: 140px 0 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Company Info */
.company-info {
    background-color: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: #FF6A0A;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Services */
.services-preview {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.section-cta {
    text-align: center;
}

/* Services Detailed */
.services-overview {
    padding: 60px 0;
}

.service-detailed {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-detailed h2 {
    color: #333;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #08cfaa;
    font-weight: bold;
}

.service-pricing {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.service-pricing h4 {
    color: #FF6A0A;
    font-size: 1.5rem;
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    background-color: #f8f9fa;
    padding: 60px 0;
}

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

.pricing-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-category h3 {
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #08cfaa;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: #333;
}

.service-price {
    color: #FF6A0A;
    font-weight: 600;
}

/* Reviews */
.reviews {
    padding: 60px 0;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.review-rating {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.review-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-author strong {
    color: #333;
    display: block;
}

.review-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Achievements */
.achievements {
    background-color: #f8f9fa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6A0A;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #666;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #08cfaa 0%, #FF6A0A 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    margin-bottom: 0;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Contact Info */
.contact-info {
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #08cfaa;
    font-weight: 500;
}

/* Contact Details */
.contact-details {
    padding: 60px 0;
}

.contact-details .contact-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-details .contact-item:hover {
    transform: translateY(-5px);
}

.contact-details .contact-item span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.form-content h2 {
    color: #333;
    margin-bottom: 1rem;
}

.form-content p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #08cfaa;
    box-shadow: 0 0 0 2px rgba(8, 207, 170, 0.1);
}

.form-image {
    text-align: center;
}

.contact-form-icon {
    width: 200px;
    height: 200px;
    fill: #08cfaa;
}

/* Business Hours */
.business-hours {
    padding: 60px 0;
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-content h2 {
    color: #333;
    margin-bottom: 2rem;
}

.hours-grid {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #08cfaa;
    font-weight: 600;
}

.hours-note {
    color: #666;
    font-style: italic;
}

/* Quick Info */
.quick-info {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.info-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
}

/* Company Story */
.company-story {
    padding: 60px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.story-visual {
    text-align: center;
}

.story-icon {
    width: 200px;
    height: 200px;
    fill: #08cfaa;
}

/* Mission */
.mission {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.mission-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.mission-item p {
    color: #666;
}

/* Why Choose */
.why-choose {
    padding: 60px 0;
}

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

.choose-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-icon {
    width: 50px;
    height: 50px;
    fill: #08cfaa;
    flex-shrink: 0;
}

.choose-text h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.choose-text p {
    color: #666;
    margin: 0;
}

/* Thank You */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    fill: #08cfaa;
}

.thank-you-content h1 {
    color: #333;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #08cfaa;
    margin-bottom: 1rem;
}

.thank-you-submessage {
    color: #666;
    margin-bottom: 3rem;
}

.thank-you-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.thank-you-details h3 {
    color: #333;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: #08cfaa;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

.thank-you-contact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thank-you-contact h3 {
    color: #333;
    margin-bottom: 1rem;
}

.urgent-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.urgent-contact .contact-icon {
    width: 30px;
    height: 30px;
    fill: #08cfaa;
}

.phone-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #08cfaa;
}

.business-hours {
    color: #666;
    font-size: 0.9rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

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

.content-wrapper h2 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-wrapper h4 {
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.content-wrapper ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 2rem;
}

/* CTAs */
.contact-cta,
.service-cta {
    background: linear-gradient(135deg, #08cfaa 0%, #FF6A0A 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: white;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.cookie-modal-content h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin: 0;
}

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #08cfaa;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #08cfaa;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #ccc;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #08cfaa;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.slide-up.visible {
    transform: translateY(0);
    opacity: 1;
}

.scale-in {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.scale-in.visible {
    transform: scale(1);
    opacity: 1;
}
