/* style.css */
html {
    font-size: 10px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #666;
}

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

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #6366f1;
    color: white;
}

.cookie-btn.accept:hover {
    background: #5856eb;
}

.cookie-btn.decline {
    background: #f3f4f6;
    color: #666;
}

.cookie-btn.decline:hover {
    background: #e5e7eb;
}

/* Header */
.header {
  border-bottom: 1px solid #9AD4DD;
background: #5F5D89;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: #6366f1;
}

.logo img {
    width: 3rem;
    height: 3rem;
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu li {
    margin-left: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6366f1;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
   background: #FAFAFA;
    color: black;
    padding: 12rem 0 8rem;
    margin-top: 8rem;
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-button {
  border-radius: 8px;
background: #5F5D89;
    color: white;
    padding: 1.5rem 3rem;
    border: none;

    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #f9fafb;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.about p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #1f2937;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    text-align: center;
    padding: 3rem 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.service-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.service-item p {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Image Section */
.image-section {
    padding: 6rem 0;
}

.image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Section */
.why-section {
    padding: 8rem 0;
    background: #f9fafb;
}

.why-section h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #1f2937;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    border-radius: 8px 8px 0px 0px;
border-right: 1px solid rgba(27, 24, 22, 0.07);
border-bottom: 1px solid rgba(27, 24, 22, 0.07);
background: #F5F5FB;

    gap: 16px;
}

.why-icon {
    margin-bottom: 2rem;
}

.why-icon img {
    width: 6rem;
    height: 6rem;
}

.why-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.why-item p {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* References Section */
.references {
    padding: 8rem 0;
}

.references h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #1f2937;
}

.references-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.reference-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 1rem;
}

.reference-image {
    align-self: center;
}

.reference-image img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

.reference-content {
    text-align: center;
}

.reference-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.reference-position {
    font-size: 1.4rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.reference-content p:last-child {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f9fafb;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-info p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    font-size: 1.4rem;
    color: #1f2937;
}

.contact-item span {
    font-size: 1.6rem;
    color: #6366f1;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.submit-btn {
    width: 100%;
    background: #6366f1;
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #5856eb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.footer-text p {
    font-size: 1.4rem;
    opacity: 0.8;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .about-content {
        flex-direction: row;
        text-align: left;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-item {
        flex: 1;
        min-width: calc(50% - 2rem);
    }

    .why-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .why-item {
        flex: 1;
        min-width: calc(50% - 2rem);
    }

    .references-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reference-item {
        flex: 1;
        min-width: calc(50% - 2rem);
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info,
    .contact-form {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }

    .success-content {
        padding: 8rem 6rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 15rem 0 10rem;
    }

    .hero h1 {
        font-size: 4.8rem;
    }

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-item {
        min-width: auto;
    }

    .why-grid {
        flex-wrap: nowrap;
    }

    .why-item {
        min-width: auto;
    }

    .references-grid {
        flex-wrap: nowrap;
    }

    .reference-item {
        min-width: auto;
    }
}

/* Success Page Styles */
.success-main {
    min-height: calc(100vh - 20rem);
    display: flex;
    align-items: center;
    padding: 12rem 0 8rem;
    background: #f9fafb;
}

.success-content {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
    background: white;
    padding: 6rem 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.success-content p {
    font-size: 1.8rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.btn-primary {
    display: inline-block;
    background: #6366f1;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #5856eb;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #6366f1;
    padding: 1.5rem 3rem;
    border: 2px solid #6366f1;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-0.2rem);
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 4rem;
    }
}
.nav-menu.active {
    display: flex !important
;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #5f5d89!important;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}