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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: black;
}

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

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

h1 {
    font-size: 4.8rem;
    font-weight: 700;
}

h2 {
    font-size: 3.6rem;
    margin-bottom: 1.6rem;
}

h3 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1.4rem 3.2rem;
    border: none;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 1rem 2rem rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    padding: 1.4rem 3.2rem;
    border: 0.2rem solid #ff6b35;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    font-size: 1.4rem;
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie.accept {
    background: #27ae60;
    color: white;
}

.btn-cookie.decline {
    background: transparent;
    color: white;
    border: 0.1rem solid white;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(1rem);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand .logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #b96d1c;
}

.nav-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 1.4rem;
    color: #eae9e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    background: var(--gr6, linear-gradient(135deg, #3B82F6 0%, #F97316 100%));
    color: white;
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 60rem;
    margin-bottom: 4rem;
}

.hero-content h1 {
    margin-bottom: 2.4rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    margin-top: 4rem;
}

.hero-image img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    border-radius: 1rem;
}

/* About Section */
.about {
    padding: 10rem 0;
    background: #000000;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    border-radius: 1rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #fcfcfc;
    margin-bottom: 2.4rem;
}

.about-text h3 {
    color: #fcfcfc;
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
}

.about-text p {
    color: #fcfcfc;
    margin-bottom: 1.6rem;
}

/* Stats Section */
.stats {
    background: var(--gr6, linear-gradient(135deg, #3B82F6 0%, #F97316 100%));
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.stats h2 {
    margin-bottom: 0.8rem;
}

.stats > p {
    font-size: 1.8rem;
    margin-bottom: 5rem;
    opacity: 0.9;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    padding: 3rem 2rem;
    border-radius: 1rem;
    min-width: 20rem;
    flex: 1;
    max-width: 25rem;
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #f7931e;
}

.stat-label {
    font-size: 1.6rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 10rem 0;
    background: #000000;
    color: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 0.8rem;
}

.services > .container > p {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5rem;
    opacity: 0.9;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-item {
    border-radius: 24px;
    background: #F97316;
    padding: 3rem;

    flex: 1;
    min-width: 28rem;
    backdrop-filter: blur(1rem);
}

.service-item h3 {
    color: #faf8f6;
    margin-bottom: 1.6rem;
    font-size: 2rem;
}

.service-item p {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-additional {
    flex: 1;
    min-width: 28rem;
}

.service-additional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    min-height: 30rem;
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 0;
    background: #00060c;
}

.testimonials h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.testimonials > .container > p {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 5rem;
    color: #555;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.testimonial-item {
    background: #070707;
    padding: 3rem;

    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 28rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 24px;
    border: 1px solid #F97316;
}

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

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

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

.stars {
    color: #f7931e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-content h4 {
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #ffffff;
    font-size: 1.5rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: var(--gr6, linear-gradient(135deg, #3B82F6 0%, #F97316 100%));
    color: white;
}

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

.contact-text h2 {
    margin-bottom: 2rem;
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1rem);
    padding: 3rem;
    border-radius: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.4rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 0.3rem rgba(247, 147, 30, 0.3);
}

.contact-image {
    width: 100%;
}

.contact-image img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 1rem;
}

/* Footer */
.footer {
    background: #050000;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f7931e;
}

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

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

.footer-links a:hover {
    color: #f7931e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #34495e;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #bbb;
    margin: 0;
}

/* Responsive Design - Mobile First */

/* Small devices (576px and up) */
@media (min-width: 57.6rem) {
    .cookie-content {
        flex-wrap: nowrap;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }

    .hero-content {
        max-width: 70rem;
    }

    .stats-grid {
        justify-content: space-between;
    }

    .stat-item {
        min-width: 15rem;
    }
}

/* Medium devices (768px and up) */
@media (min-width: 76.8rem) {
    .nav-links {
        flex-wrap: nowrap;
    }

    .hero {
        padding: 15rem 0 10rem;
    }

    .hero-image {
        margin-top: 0;
        width: 100%;
        height: 280px;
        align-self: stretch;

    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        /*order: 2;*/
    }

    .about-text {
        order: 1;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .service-additional {
        grid-column: span 2;
    }

    .testimonials-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        /*max-width: 70%;*/

    }

    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-text {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }
}

/* Large devices (992px and up) */
@media (min-width: 99.2rem) {
    h1 {
        font-size: 5.6rem;
    }

    .hero-content {
        max-width: 80rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .service-additional {
        grid-column: span 1;
        grid-row: span 2;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .testimonial-item:first-child {
        flex-direction: row;
        grid-column: span 2;
        text-align: left;
    }

    .testimonial-item:first-child .testimonial-image {
        align-self: flex-start;
    }

    .testimonial-item:first-child .testimonial-content {
        text-align: left;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 120rem) {
    .container {
        padding: 0 4rem;
    }

    .hero {
        padding: 18rem 0 12rem;
    }

    .stats-grid {
        gap: 6rem;
    }

    .services-grid {
        gap: 4rem;
    }

    .testimonials-grid {
        gap: 4rem;
    }
}

.fl {
    display: flex;
    /*flex-wrap: wrap;*/
}

@media (max-width: 768px) {
    .fl {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 120rem;
        margin: 0 auto;
        padding: 0 2rem;
        flex-direction: column;
    }
    .hero-content{
        margin-top: 100px;
    }

}
.nav-brand a{
    text-decoration: none;
}