/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #4a4a4a url('../images/hero-bg-grey.jpg') center center/cover no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 25%,
        transparent 75%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0.05)
    );
    background-size: 3px 3px;
    pointer-events: none;
    opacity: 0.4;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(60, 60, 60, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(60, 60, 60, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Header Styles */
.header-container {
    padding: 0;
    width: 100%;
    position: relative;
}

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

.top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.left-section {
    display: flex;
    align-items: center;
}

.desktop-only {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.social-icons a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.main-nav {
    display: block;
    margin-top: 10px;
    margin-bottom:30px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding-bottom: 15px;
    width:fit-content;
    margin: 0 auto;
}

.nav-links::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color:#e30613;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #e30613;
    background: #fff;
    transform: scale(1.1);
}

.yellow-btn,
.red-btn {
    padding: 15px 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    min-width: 140px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    transform: scale(1);
    white-space: nowrap;
}

.yellow-btn {
    background-color: #ffed00;
    color: #000;
    position: relative;
    padding-right: 30px;
}

.yellow-btn:hover {
    background-color: #000;
    color: #ffed00;
    transform: scale(1.05);
}

.yellow-btn::after {
    content: "€";
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 16px;
    background: #000;
    color: #ffed00;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 60px;
    transition: all 0.3s ease;
}

.yellow-btn:hover::after {
    background: #ffed00;
    color: #000;
}

.red-btn {
    background-color: #e30613;
    color: #fff;
}

.red-btn:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    margin: 0 5px 20px 5px;
    padding: 0;
}

.hero .row {
    margin: 0;
    display: flex;
    gap: 0;
}

.hero .col-md-6 {
    padding: 0;
    flex: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-left > div:nth-child(2) {
    margin-left: 0;
}

.hero-image-container {
    width: 100%;
    margin: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-subtitle {
    font-family: "Poppins", Sans-serif;
    font-size: 55px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0px;
    word-spacing: 0em;
    color: #fff;
    margin-left: 0;
    text-align: left;
}

.hero-location {
    font-size: 32px;
    color: #fff;
    margin-left: 0;
    text-align: left;
}

/* Content Section Styles */
.content-section {
    margin: 0 auto;
    padding: 0;
}

.content-section .row {
    margin: 0;
    display: flex;
    gap: 0;
}

.content-section .col-md-6 {
    padding: 0;
    flex: 1;
    width: 50%;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #666666;
}

.video-container.left-video {
    border-bottom: 6px solid #e30613;
}

.video-container.right-video {
    border-left: 6px solid #e30613;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.content-text {
    padding: 40px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 6px solid #e30613;
    border-bottom: 6px solid #e30613;
}

.white-bg-section {
    background: #fff;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.heading-wrapper {
    font-family: "Poppins", Sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.red-heading {
    color: #e30613;
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.black-heading {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.red-arrow {
    color: #e30613;
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
    margin-left: 5px;
}

.content-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

/* Testimonials Section */
.testimonials {
    margin: 0 auto;
    margin-top: -6px;
    position: relative;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 600;
    padding: 25px 20px;
    background-color: #f1f1f1;
    margin: 0;
}

.testimonial-carousel {
    position: relative;
    padding: 60px 0;
    background: #fff;
    padding-bottom: 120px;
    height: auto;
    min-height: 500px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-item {
    text-align: left;
    display: flex !important;
    justify-content: center;
    padding: 0;
    height: 100%;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial-single {
    flex: 0 0 calc(33.333% - 10px);
    padding: 10px 10px 5px 10px;
    display: flex;
    flex-direction: column;
    height: 220px;
    max-width: 350px;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

/* Remove hover effect */
.testimonial-single:hover {
    transform: none;
}

.testimonial-single:hover .testimonial-text {
    font-size: 18px;
}

.quote-mark {
    display: block;
    margin-bottom: 25px;
    position: relative;
    top: -10px;
    left: -10px;
    flex-shrink: 0;
    text-align: left;
}

.quote-mark img {
    width: 35px;
    height: auto;
}

.testimonial-text {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3em;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-align: left;
}

.testimonial-author {
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.5em;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Footer Section */
.footer {
    background-color: #f1f1f1;
    background-image: radial-gradient(circle,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px),
        radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 3px 3px, 6px 6px;
    background-blend-mode: overlay;
    padding: 15px 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #121212;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin: 10px auto;
}

.footer-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.copyright {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    text-align: center;
    color: #fff;
    font-size: 12px;
    opacity: 0.9;
}

.wid {
    min-height: 45px;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero {
        padding: 0 15px;
    }

    .hero-image-container {
        width: 90%;
    }

    .desktop-only {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .logo {
        height: 80px;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: #666666;
        padding: 80px 20px 20px;
        box-shadow: 2px 0 5px rgba(0,0,0,0.2);
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 0;
    }

    .nav-links::after {
        display: none;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 16px;
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
        transform: none;
    }

    .content-section {
        padding: 0;
    }

    .red-heading, .black-heading {
        font-size: 30px;
    }

    .red-arrow {
        font-size: 30px;
    }

    .content-description {
        font-size: 16px;
        line-height: 1.4;
    }

    .content-text {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .hero-subtitle {
        font-size: 45px;
    }

    .hero-location {
        font-size: 28px;
    }

    .red-heading, .black-heading {
        font-size: 24px;
    }

    .red-arrow {
        font-size: 24px;
    }

    .content-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .heading-wrapper {
        margin-bottom: 15px;
        gap: 5px;
    }

    .content-text {
        padding: 25px;
    }

    .white-bg-section {
        padding: 25px;
    }

    .testimonial-carousel {
        padding: 30px;
        padding-bottom: 100px;
    }

    .testimonial-item {
        gap: 20px;
    }

    .testimonial-single {
        flex: 0 0 calc(50% - 10px);
    }
}

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

    .hero-image-container {
        width: 100%;
    }

    .nav-container {
        padding: 0 10px;
    }

    .top-section {
        padding: 10px 0;
    }

    .logo {
        height: 60px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .yellow-btn, .red-btn {
        padding: 8px;
        font-size: 12px;
        min-width: 120px;
        height: 40px;
    }

    .content-section .row {
        flex-direction: column;
    }

    .content-section .col-md-6 {
        width: 100%;
    }

    .video-container {
        margin: 0;
        width: 100%;
    }

    .video-container.right-video {
        border-left: none;
        border-bottom: 6px solid #e30613;
    }

    .content-text {
        border-left: none;
        border-bottom: 6px solid #e30613;
        padding: 30px 20px;
        text-align: center;
    }

    .white-bg-section {
        padding: 30px 20px;
        text-align: center;
    }

    .heading-wrapper {
        justify-content: center;
        margin-bottom: 25px;
    }

    .red-heading, .black-heading {
        font-size: 28px;
    }

    .content-description {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    .red-arrow {
        font-size: 28px;
    }

    .testimonial-carousel {
        padding: 20px;
        padding-bottom: 100px;
        min-height: 350px;
    }

    .testimonial-item {
        padding: 0;
    }

    .testimonial-single {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        margin: 0 auto;
        display: none;
    }

    .testimonial-single:first-child {
        display: flex;
    }

    .carousel-indicators {
        padding: 20px 10px;
        gap: 3px;
        max-width: 100%;
    }

    .carousel-indicators li {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }

    .footer {
        padding: 0;
    }

    .footer-container {
        flex-direction: column;
        padding: 10px;
    }

    .footer-logo {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-menu-btn {
        display: block;
    }

    .footer-links {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .footer-links.active {
        display: flex;
    }

    .footer-links a {
        padding: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        font-size: 14px;
    }

    .footer-links a:last-child {
        border-bottom: none;
    }

    .footer-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .footer-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .footer-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: none !important;
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
    background-image: none !important;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    top: 50%;
    left: 50%;
}

.carousel-control-prev-icon::before {
    transform: translate(-20%, -50%) rotate(-135deg);
}

.carousel-control-next-icon::before {
    transform: translate(-80%, -50%) rotate(45deg);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 5;
}

.carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e30613;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background-color: #ffed00;
}

@media (min-width: 768px) {
  .hero-image-container {
    max-width: 520px;
  }
  .hero-left > div:nth-child(2) {
    margin-left: 40px;
  }
} 