:root {
    --primary-color: #FF6D00; /* Vibrant Orange */
    --primary-hover: #E65100; /* Darker Orange for hover */
    --secondary-color: #333333; /* Charcoal Grey */
    --secondary-light: #555555;
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-style: italic;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--primary-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    font-style: italic;
}

.logo .dot {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: var(--primary-hover);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(51, 51, 51, 0.6) 100%), url('assets/hero/hero-bg.jpg') no-repeat center center/cover;
    background-color: #333;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-style: italic;
    line-height: 0.9;
    text-shadow: 4px 4px 0px var(--primary-color), 8px 8px 0px rgba(0,0,0,0.5);
    transform: skew(-5deg);
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    transform: skew(-5deg);
}

.btn {
    display: inline-block;
    padding: 20px 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-style: italic;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-20deg);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 5px 5px 0px var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 8px 8px 0px var(--primary-color);
    transform: translate(-3px, -3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 5px 5px 0px var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: 8px 8px 0px var(--primary-color);
    transform: translate(-3px, -3px);
    border-color: var(--white);
}

.subpage-section .btn-secondary,
.marketing-actions .btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.subpage-section .btn-secondary:hover,
.marketing-actions .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

.page-hero {
    min-height: 70vh;
    padding-top: 140px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(51, 51, 51, 0.65) 100%), url('assets/hero/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    overflow: hidden;
}

.page-hero-dark {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(51, 51, 51, 0.8) 100%), url('assets/hero/hero-bg.jpg') no-repeat center center/cover;
}

.page-hero-legal {
    min-height: 55vh;
    padding-bottom: 70px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.legal-content.section {
    padding-top: 70px;
}

.page-hero-content {
    max-width: 1000px;
    text-align: center;
    animation: fadeInUp 0.9s ease-out;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 4.5rem;
    line-height: 0.9;
    text-shadow: 4px 4px 0px var(--primary-color), 8px 8px 0px rgba(0,0,0,0.55);
    transform: skew(-5deg);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    transform: skew(-5deg);
}

.subpage-section {
    position: relative;
    z-index: 1;
}

.marketing-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: start;
}

.marketing-title {
    font-size: 3rem;
    line-height: 0.95;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-style: italic;
    transform: skew(-5deg);
}

.marketing-copy p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.marketing-actions {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    transform: skew(-5deg);
}

.marketing-points {
    display: grid;
    gap: 18px;
}

.marketing-point {
    background: var(--white);
    border: 3px solid var(--secondary-color);
    box-shadow: 10px 10px 0px var(--secondary-color);
    padding: 22px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}

.marketing-point-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.4rem;
    box-shadow: 6px 6px 0px var(--primary-color);
}

.marketing-point-text h3 {
    margin-bottom: 6px;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.marketing-point-text p {
    margin: 0;
    color: var(--text-light);
}

#tour-levels {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 0;
    padding-top: 180px;
    padding-bottom: 180px;
    clip-path: polygon(0 0, 100% 10%, 100% 88%, 0 100%);
}

#tour-levels .section-title {
    color: var(--white);
}

#tour-levels .section-title::after {
    background-color: var(--primary-color);
}

#tour-levels .card-grid + .section-intro {
    margin: 30px auto 40px;
}

.subpage-section#use-cases {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 0;
    padding-top: 140px;
    padding-bottom: 140px;
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
}

.subpage-section#use-cases .section-title {
    color: var(--white);
}

.subpage-section#use-cases .section-title::after {
    background-color: var(--primary-color);
}

.subpage-section#about-company {
    background-color: var(--white);
    color: var(--text-color);
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    clip-path: none;
}

.subpage-section#about-company .section-title {
    color: var(--secondary-color);
}

.subpage-section#about-company .section-title::after {
    background-color: var(--primary-color);
}

.subpage-section#team {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 120px;
    clip-path: none;
}

.subpage-section#team .section-title {
    color: var(--white);
}

.subpage-section#team .section-title::after {
    background-color: var(--white);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid-horizontal {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-legal {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-grid-single {
    grid-template-columns: 1fr;
}

.legal-card h4 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.legal-list {
    margin: 0 0 18px 18px;
    color: var(--text-light);
}

.legal-list li {
    margin-bottom: 8px;
}

.info-card {
    background: var(--white);
    border: 3px solid var(--secondary-color);
    box-shadow: 10px 10px 0px var(--secondary-color);
    padding: 30px;
    border-radius: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--secondary-color);
}

.info-card-alt {
    border-color: var(--primary-color);
    box-shadow: 10px 10px 0px var(--primary-color);
}

.info-card-alt:hover {
    box-shadow: 15px 15px 0px var(--primary-color);
}

.info-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.tour-card-media {
    margin: -30px -30px 20px -30px;
    border-bottom: 3px solid var(--secondary-color);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: calc(100% + 60px);
}

.info-card-alt .tour-card-media {
    border-bottom-color: var(--primary-color);
}

.tour-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.02);
}

.info-card:hover .tour-card-image {
    transform: scale(1.06);
    transition: var(--transition);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 6px 6px 0px var(--primary-color);
}

.info-card-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    min-height: 40px;
}

.info-card-meta-below {
    justify-content: flex-start;
    min-height: 0;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 2px solid var(--secondary-color);
    background: #f4f4f4;
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.badge-strong {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 4px 4px 0px var(--secondary-color);
}

.info-card h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.info-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: 15px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card .btn-primary {
    box-shadow: 5px 5px 0px var(--secondary-color);
}

.info-card .btn-primary:hover {
    box-shadow: 8px 8px 0px var(--primary-color);
}

.subpage-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    transform: skew(-5deg);
}

@media (max-width: 768px) {
    .card-grid-horizontal {
        grid-template-columns: 1fr;
    }

    .page-hero-legal {
        min-height: 50vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .legal-content.section {
        padding-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 3rem;
    }

    .page-hero-actions,
    .subpage-cta {
        flex-direction: column;
        transform: none;
        padding: 0 10px;
    }

    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .marketing-title {
        font-size: 2.4rem;
        transform: none;
    }

    .marketing-actions {
        flex-direction: column;
        transform: none;
    }
}



/* Services Section */
.section {
    padding: 100px 0;
}

#services {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: -80px; /* Overlap with Hero */
    padding-top: 150px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    padding-bottom: 220px; /* More breathing room above the diagonal */
    position: relative;
    z-index: 2;
}

#services .section-title {
    color: var(--white);
}

#services .service-card {
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 10px 10px 0px var(--primary-color);
}

#services .service-card h3 {
    color: var(--secondary-color);
}

#services .service-card p,
#services .feature-list {
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.section-intro {
    max-width: 900px;
    margin: -30px auto 40px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.55;
    color: inherit;
    opacity: 0.9;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 0; /* Sharp edges for a bolder look */
    box-shadow: 10px 10px 0px var(--primary-color); /* Offset shadow */
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.service-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--primary-color);
}

.service-card-media {
    margin: -40px -40px 20px -40px;
    border-bottom: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
}

.service-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.service-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.05);
}

.service-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 12px;
    border: 2px solid var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    box-shadow: 6px 6px 0px var(--primary-color);
}

.service-card:hover .service-card-image {
    transform: scale(1.06);
    transition: var(--transition);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-list {
    text-align: left;
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-list li {
    margin-bottom: 10px;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-card .btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.service-card .btn-primary {
    box-shadow: 5px 5px 0px var(--secondary-color);
}

.service-card .btn-primary:hover {
    box-shadow: 8px 8px 0px var(--primary-color);
}

/* About Section */
#about {
    background-color: var(--white);
    color: var(--text-color);
    margin-top: -150px;
    padding-top: 250px;
    padding-bottom: 250px;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 2px 2px 0px var(--secondary-color);
    font-style: italic;
}

.stat-label {
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.bold-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 5px solid var(--primary-color);
    box-shadow: 20px 20px 0px var(--primary-color);
    transform: rotate(3deg);
    transition: var(--transition);
}

.bold-box:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 25px 25px 0px var(--primary-color);
}

.bold-box span {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.bold-box .year {
    font-size: 8rem;
    line-height: 0.9;
    color: var(--white);
    font-style: italic;
    text-shadow: 4px 4px 0px var(--primary-color);
    margin: 10px 0;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content h2 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .bold-box {
        transform: rotate(0deg);
        margin-top: 40px;
        width: 100%;
    }
    
    #about {
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    }
}

/* Why Us Section */
#why-us {
    background-color: var(--primary-color);
    color: var(--white);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    padding: 150px 0;
    margin-top: -150px;
    padding-top: 250px;
    padding-bottom: 250px;
    position: relative;
    z-index: 2;
}

#why-us .section-title {
    color: var(--white);
    margin-bottom: 80px;
}

#why-us .section-title::after {
    background-color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

#why-us .feature-item {
    background: var(--white);
    padding: 40px 30px;
    border: 3px solid var(--secondary-color);
    box-shadow: 10px 10px 0px var(--secondary-color);
    text-align: center;
    transition: var(--transition);
}

#why-us .feature-item:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--secondary-color);
}

#why-us .feature-item i {
    color: var(--primary-color);
    font-size: 3rem;
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 5px 5px 0px var(--primary-color);
}

#why-us .feature-item h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

#why-us .feature-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
#testimonials {
    margin-top: -150px;
    padding-top: 250px;
    padding-bottom: 150px;
    background-color: #f4f4f4;
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border: 3px solid var(--secondary-color);
    box-shadow: 10px 10px 0px var(--secondary-color);
    text-align: center;
    position: relative;
    border-radius: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 0;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-author span {
    font-weight: 700;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: -100px;
    padding-top: 200px;
}

.cta-section-shuttle {
    margin-top: 0;
    padding-top: 170px;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-style: italic;
}

.cta-section p {
    margin-bottom: 30px;
    color: #ddd;
    font-size: 1.1rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border: 3px solid var(--secondary-color);
    box-shadow: 10px 10px 0px var(--secondary-color);
    border-radius: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f4f4f4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.btn-block {
    width: 100%;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.footer-logo .dot {
    color: var(--primary-color);
}

.footer-logo p {
    margin-top: 10px;
    color: #aaa;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #333;
    color: var(--white);
    border-radius: 0;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0px var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #aaa;
    margin: 0 8px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.92);
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.6);
    padding: 18px 18px;
    backdrop-filter: blur(8px);
}

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}

.cookie-banner-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cookie-banner-text {
    color: #ddd;
    font-size: 0.98rem;
    line-height: 1.45;
}

.cookie-banner-text a {
    color: var(--primary-color);
    font-weight: 700;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.cookie-btn {
    appearance: none;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--white);
    padding: 12px 14px;
    font-family: inherit;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.6);
}

.cookie-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.6);
}

.cookie-btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.cookie-btn-secondary {
    border-color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide nav links on mobile */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: var(--shadow);
        padding: 20px;
        text-align: center;
        border-bottom: 2px solid var(--primary-color);
    }

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

    .hamburger {
        display: block;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-inner {
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions {
        justify-content: stretch;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
