/* Reset and Base Styles */
html {
    font-size: 1rem;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

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

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 30rem;
}

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

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

.cookie-btn.accept {
    background: #2563eb;
    color: white;
}

.cookie-btn.accept:hover {
    background: #1d4ed8;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #333;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.4rem 3rem;
    border: none;
    border-radius: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.full-width {
    width: 100%;
}

/* Text Utilities */
.text-primary {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 8rem 0 10rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.4rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 3.2rem;
    color: #6b7280;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.6rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about {
    padding: 12rem 0;
    background: #ffffff;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 3.2rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 2.4rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1.6rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    padding: 12rem 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.3rem;
    color: #6b7280;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 4rem 3.2rem;
    border-radius: 1.6rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1;
    min-width: 32rem;
    max-width: 38rem;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    border-radius: 50%;
}

.service-icon svg {
    width: 3.2rem;
    height: 3.2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    color: #1a1a1a;
}

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

/* Blog Section */
.blog {
    padding: 12rem 0;
    background: #ffffff;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    justify-content: center;
}

.blog-card {
    background: #ffffff;
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 32rem;
    max-width: 38rem;
    border: 1px solid #f1f5f9;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 24rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 3.2rem;
}

.blog-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

/* FAQ Section */
.faq {
    padding: 12rem 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 88rem;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 1.6rem;
    margin-bottom: 2.4rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.faq-question {
    width: 100%;
    padding: 3.2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-toggle {
    font-size: 2rem;
    transition: transform 0.3s ease;
    color: #2563eb;
    font-weight: 400;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 20rem;
}

.faq-answer p {
    padding: 0 3.2rem 3.2rem;
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 12rem 0;
    background: #ffffff;
}

.contact-content {
    display: flex;
    gap: 8rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: #1a1a1a;
}

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

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

.contact-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.contact-icon {
    font-size: 1.4rem;
}

.contact-form {
    flex: 1;
    background: #f8fafc;
    padding: 4.8rem 4rem;
    border-radius: 1.6rem;
    border: 1px solid #f1f5f9;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.8rem 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 14rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 8rem 0 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    margin-bottom: 5rem;
}

.footer-section {
    flex: 1;
    min-width: 28rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 2.4rem;
    color: white;
}

.footer-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.4rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 4.8rem;
    height: 4.8rem;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2.4rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.success-content {
    text-align: center;
    background: white;
    padding: 8rem 6rem;
    border-radius: 1.6rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 56rem;
    border: 1px solid #f1f5f9;
}

.success-icon {
    font-size: 8rem;
    margin-bottom: 2.4rem;
}

.success-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    color: #1a1a1a;
}

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

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

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

    .services-grid {
        gap: 2.4rem;
    }

    .service-card {
        min-width: 30rem;
    }

    .hero-content,
    .about-content,
    .contact-content {
        gap: 6rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 3rem 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin-bottom: 0 !important;
        text-align: center;
    }

    .nav-menu li:last-child {
        margin-bottom: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0;
        display: block;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        padding: 6rem 0 8rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 5rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .about-content {
        flex-direction: column;
        gap: 5rem;
    }

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

    .section-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 4rem;
    }

    .about,
    .services,
    .blog,
    .faq,
    .contact {
        padding: 8rem 0;
    }

    .footer-content {
        gap: 4rem;
    }

    .footer-section {
        min-width: 24rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0 6rem;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .about,
    .services,
    .blog,
    .faq,
    .contact {
        padding: 6rem 0;
    }

    .section-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 3.2rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        min-width: 100%;
        padding: 3.2rem 2.4rem;
    }

    .blog-grid {
        gap: 2.4rem;
    }

    .blog-card {
        min-width: 100%;
    }

    .contact-form {
        padding: 3.2rem 2.4rem;
    }

    .footer-section {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: auto;
    }

    .success-content {
        padding: 5rem 3rem;
        margin: 2rem;
    }

    .success-content h1 {
        font-size: 3.2rem;
    }

    .section-header {
        margin-bottom: 5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .section-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2.8rem;
    }

    .btn {
        padding: 1.4rem 2.4rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 2.4rem 2rem;
    }

    .blog-content {
        padding: 2.4rem;
    }

    .contact-form {
        padding: 2.4rem 2rem;
    }

    .faq-question {
        padding: 2.4rem 2rem;
        font-size: 1.2rem;
    }

    .faq-answer p {
        padding: 0 2rem 2.4rem;
    }

    .success-content {
        padding: 4rem 2rem;
    }

    .success-content h1 {
        font-size: 2.4rem;
    }

    .success-icon {
        font-size: 6rem;
    }

    .hero-content,
    .about-content,
    .contact-content {
        gap: 3rem;
    }

    .logo {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }
}

.logo {
    color: #2563eb;
}
