/* Base Styles */
:root {
    --primary-color: #4D7E3E;
    --secondary-color: #9DCB92;
    --accent-color: #E6A65D;
    --text-color: #333333;
    --light-text: #F5F5F5;
    --bg-light: #F9F7F4;
    --bg-dark: #2C3C35;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

button {
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(249, 247, 244, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 5%;
    background-color: rgba(249, 247, 244, 0.98);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    border-radius: 50%;
}
.logo{
    object-fit: contain;
}
.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -30px;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    color: var(--light-text);
    background-color: rgba(44, 60, 53, 0.7);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--light-text);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Om Oss Section with Diagonal Layout */
.om-oss {
    background-color: #F5F9F2;
    overflow: hidden;
}

.diagonal-container {
    position: relative;
    padding: 3rem 0;
    transform: skewY(-3deg);
    background-color: #F5F9F2;
    margin-top: -3rem;
    margin-bottom: -3rem;
}

.content-wrapper {
    transform: skewY(3deg);
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 5rem;
}

.text-content, .image-content {
    flex: 1;
}

.text-content h2::after {
    left: 0;
}

.image-content img {
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
    transition: var(--transition);
}

.image-content img:hover {
    transform: rotate(0deg);
}

/* Filosofi Section with Overlapping Elements */
.filosofi {
    background-color: var(--bg-light);
    padding: 8rem 0;
}

.filosofi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.filosofi-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
}

.filosofi-card {
    width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 1rem;
    background-color: white;
    position: relative;
    transition: var(--transition);
}

.filosofi-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.filosofi-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Overlapping positioning */
#card1 {
    z-index: 3;
}

#card2 {
    z-index: 2;
    margin-top: -30px;
}

#card3 {
    z-index: 1;
    margin-top: -60px;
}

/* Tjenester Section with Interactive Tabs */
.tjenester {
    background-color: #F8F4EB;
}

.reveal-title {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal-title.active {
    opacity: 1;
    transform: translateY(0);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs {
    display: flex;
    background-color: var(--bg-dark);
}

.tab-button {
    flex: 1;
    padding: 1.5rem 1rem;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.tab-button.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.tab-button.active::after {
    width: 80%;
}

.tab-button:hover::after {
    width: 80%;
}

.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.service-highlights {
    margin: 1.5rem 0;
}

.service-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-highlights li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.service-price {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: #888;
}

.book-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.book-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Urteblanding Section with Radial Layout */
.urteblanding {
    background-color: #FAFAFA;
    text-align: center;
    padding: 8rem 0;
}

.circle-container {
    position: relative;
    max-width: 1000px;
    height: 800px;
    margin: 0 auto;
}

.circle-container h2 {
    margin-bottom: 4rem;
}

.circle-container h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.radial-items {
    position: relative;
    width: 100%;
    height: 100%;
}

.radial-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-250px) rotate(calc(-1 * var(--angle)));
    width: 200px;
    height: 250px;
    transition: var(--transition);
}

.radial-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.radial-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.radial-content img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.radial-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.radial-content p {
    font-size: 0.9rem;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.center-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Vitnesbyrd Section with Parallax Effect */
.vitnesbyrd {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    color: var(--light-text);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.5);
    z-index: -1;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-container h2 {
    color: var(--light-text);
}

.testimonial-container h2::after {
    background-color: var(--light-text);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    margin: 2rem 0;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author div {
    text-align: center;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-slide, .next-slide {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover {
    color: var(--accent-color);
}

.slider-dots {
    display: flex;
    margin: 0 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--light-text);
}

/* Nyhetsbrev Section with Floating Elements */
.nyhetsbrev {
    background-color: #F5F9F2;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.floating-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    z-index: 1;
}

.floating-leaf {
    position: absolute;
    opacity: 0.5;
    z-index: 0;
    transition: var(--transition);
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    width: 150px;
    font-size: 0;
}

.leaf1 {
    top: -50px;
    left: -40px;
    transform: rotate(-15deg);
    animation-name: float1;
}

.leaf2 {
    top: 50%;
    right: -60px;
    transform: rotate(20deg);
    animation-name: float2;
}

.leaf3 {
    bottom: -30px;
    left: 30%;
    transform: rotate(5deg);
    animation-name: float3;
}

@keyframes float1 {
    0%, 100% {
        transform: rotate(-15deg) translate(0, 0);
    }
    50% {
        transform: rotate(-5deg) translate(10px, 10px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: rotate(20deg) translate(0, 0);
    }
    50% {
        transform: rotate(10deg) translate(-10px, 10px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: rotate(5deg) translate(0, 0);
    }
    50% {
        transform: rotate(10deg) translate(10px, -10px);
    }
}

.newsletter-content h2 {
    margin-bottom: 1.5rem;
}

.newsletter-content h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    max-width: 200px;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: #F8F4EB;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    margin-bottom: 3rem;
}

.map-container h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.interactive-map {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow);
}

.interactive-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.map-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.pin-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: rgba(230, 166, 93, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.map-pin:hover .pin-dot {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

.location-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    text-align: left;
    transform: translateY(100%);
    transition: var(--transition);
}

.location-details {
    display: none;
}

.location-details.active {
    display: block;
}

.interactive-map.show-info .location-info {
    transform: translateY(0);
}

/* Kontakt Section with Gradient Background */
.kontakt {
    position: relative;
    overflow: hidden;
    padding:  0;
    color: var(--light-text);
}

.gradient-container {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    padding: 5rem 0;
}

.kontakt-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.kontakt-content h2 {
    color: var(--light-text);
    margin-bottom: 3rem;
}

.kontakt-content h2::after {
    background-color: var(--accent-color);
}

.kontakt-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.kontakt-info, .kontakt-form {
    flex: 1;
    min-width: 300px;
}

.kontakt-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.kontakt-detail svg {
    margin-right: 1rem;
}

.social-links {
    display: flex;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--light-text);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.kontakt-form form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.kontakt-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.kontakt-form input, .kontakt-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: var(--border-radius);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.kontakt-form input:focus, .kontakt-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.2);
}

.kontakt-form textarea {
    resize: vertical;
}

.kontakt-form .submit-button {
    background-color: var(--accent-color);
    margin-top: 1rem;
}

.kontakt-form .submit-button:hover {
    background-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--light-text);
    padding: 5rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.footer-section a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links li {
    margin: 0 1rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: -60px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    bottom: 20px;
}

.scroll-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .image-content img {
        max-width: 100%;
    }
    
    .radial-item {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-200px) rotate(calc(-1 * var(--angle)));
    }
    
    .center-circle {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: none;
        width: 50%;
    }
    
    .circle-container {
        height: auto;
        padding-bottom: 600px;
    }
    
    .radial-item {
        position: static;
        transform: none !important;
        margin: 1rem auto;
        width: 80%;
        max-width: 300px;
    }
    
    .center-circle {
        position: relative;
        margin: 2rem auto;
        transform: none;
        left: auto;
        top: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
    
    .filosofi-card {
        margin-top: 0 !important;
        z-index: 1 !important;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .service-details {
        flex-direction: column;
    }
    
    .interactive-map {
        height: 400px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
}




.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
}

.text-wrapper p{
    margin-bottom: 10px;
}