:root {
    --bg-color: #FCF7EE;
    --text-color: #020202;
    --accent-orange: #FC800A;
    --accent-teal: #0099A1;
    --accent-blue: #2D9CDB;
    --accent-yellow: #F2C94C;
    --accent-red: #EB5757;
    --accent-purple: #9B51E0;

    --font-display: 'Rowdies', cursive;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Fira Sans', sans-serif;

    --container-width: 1200px;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--accent-teal);
}

h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-orange);
    text-align: center;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.text-confetti {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.main-header {
    background-color: rgba(252, 247, 238, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-orange);
}

/* Dropdown */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Bridge gap */
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* Position right below the item */
    left: 0;
    margin-top: 10px;
    /* Gap from nav item */
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    list-style: none;
    z-index: 1000;
}

.dropdown-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
}

.dropdown-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    color: var(--accent-teal);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-teal);
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white !important;
}

.btn-secondary {
    background-color: var(--accent-teal);
    color: white !important;
}

.btn-outline {
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    background: transparent;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-main-title {
    font-family: 'Rowdies', cursive;
    font-size: 4rem;
    line-height: 1.1;
    color: black;
    margin-bottom: 1.5rem;
    text-transform: none;
    /* Ensure case sensitivity if needed */
}

.hero-sub-line {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.slogan-text {
    font-family: var(--font-heading);
    /* Nunito or Fira */
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    padding-bottom: 15px;
    /* Align with checkmark bottom */
}

.slogan-graphic-wrapper {
    width: 150px;
    height: 100px;
    /* Adjust based on SVG natural size */
    transform: translateY(10px);
    /* Push down slightly to align checkmark */
}

.slogan-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Confetti Canvas */
#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-divider svg path {
    fill: var(--accent-teal);
    opacity: 0.2;
}

/* Circles Section / Features */
.circles-section {
    background-color: #FFFFFF;
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.circles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.circle-card:hover .circle-icon {
    transform: scale(1.1) rotate(5deg);
}

.circle-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.color-orange {
    background-color: var(--accent-orange);
}

.color-teal {
    background-color: var(--accent-teal);
}

.color-blue {
    background-color: var(--accent-blue);
}

.color-yellow {
    background-color: var(--accent-yellow);
}

/* Detailed Services / Tiles */
.detailed-services {
    padding: 6rem 0;
    background-image: url('../assets/text-bg.png');
    /* Pattern background */
    background-size: cover;
}

.service-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-tile {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 10px solid transparent;
}

.service-tile:hover {
    transform: translateY(-10px);
}

.tile-blue {
    border-color: var(--accent-blue);
}

.tile-orange {
    border-color: var(--accent-orange);
}

.tile-teal {
    border-color: var(--accent-teal);
}

.tile-yellow {
    border-color: var(--accent-yellow);
}

.tile-red {
    border-color: var(--accent-red);
}

.tile-purple {
    border-color: var(--accent-purple);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: white;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.member-photo-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 8px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-text {
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.team-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    text-align: center;
    padding: 0 1rem;
}

.connector-content {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.connector-title {
    font-family: var(--font-display);
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transform: rotate(-2deg);
}

.connector-icon {
    font-size: 2rem;
    display: block;
    margin-top: 1rem;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: var(--accent-teal);
    margin: 0 auto;
    opacity: 0.3;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background-color: rgba(12, 192, 223, 0.1);
    /* Matches wave divider teal opacity */
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Added shadow for better contrast against new bg */
}

.quote {
    font-size: 1.2rem;
    color: var(--text-color);
}

.cta-box {
    background-color: var(--accent-teal);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.cta-box h2 {
    color: white;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: var(--accent-teal);
    color: white;
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.footer-bag {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.footer-col h3 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.footer-col a {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #007A80;
    /* Darker Teal */
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* InPetto Page Styles */
.page-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background-color: var(--bg-color);
    background-image: radial-gradient(#E0E0E0 2px, transparent 2px);
    background-size: 30px 30px;
    overflow: hidden;
}

.page-title {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-family: var(--font-display);
    margin-bottom: 3rem;
    display: block;
}

.inpetto-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-teal);
    margin-bottom: 2rem;
}

.deco-star {
    position: absolute;
    width: 60px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.star-left {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.star-right {
    top: 30%;
    right: 10%;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.tile-link {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid transparent;
}

.tile-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tile-link h3 {
    color: inherit;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tile-blue {
    border-color: var(--accent-blue);
}

.tile-blue h3 {
    color: var(--accent-blue);
}

.tile-orange {
    border-color: var(--accent-orange);
}

.tile-orange h3 {
    color: var(--accent-orange);
}

.tile-teal {
    border-color: var(--accent-teal);
}

.tile-teal h3 {
    color: var(--accent-teal);
}

.tile-yellow {
    border-color: var(--accent-yellow);
}

.tile-yellow h3 {
    color: var(--accent-yellow);
}

.tile-red {
    border-color: var(--accent-red);
}

.tile-red h3 {
    color: var(--accent-red);
}

.tile-purple {
    border-color: var(--accent-purple);
}

.tile-purple h3 {
    color: var(--accent-purple);
}

.link-arrow {
    align-self: flex-end;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.2s ease;
    background: #f5f5f5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tile-link:hover .link-arrow {
    transform: translateX(5px);
    background: var(--text-color);
    color: white;
}

.infographic-section {
    padding: 6rem 0;
    text-align: center;
}

.infographic-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 2rem;
    border-top: 5px solid var(--accent-orange);
}

/* Subpage Content Styles */
.content-section {
    padding: 4rem 0;
    background-color: white;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content-grid-2 {
        grid-template-columns: 1fr;
    }
}


/* Gallery Styles */
.gallery-section {
    padding-bottom: 6rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    background-color: white;
    padding: 1rem;
}

/* Shop Layout */
.shop-layout-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    /* Products left, sidebar right */
    gap: 2rem;
    align-items: start;
}

.shop-products {
    min-width: 0;
    /* Prevention flex/grid blowout */
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    /* Below header */
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--accent-orange);
}

.sidebar-wrapper h3 {
    margin-bottom: 1rem;
    color: var(--accent-teal);
    font-size: 1.3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.cart-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dotted #eee;
    font-size: 0.95rem;
}

.cart-item-name {
    flex-grow: 1;
    margin-right: 10px;
}

.cart-item-qty {
    font-weight: bold;
    color: var(--accent-orange);
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
}

/* Responsive sidebar */
@media (max-width: 900px) {
    .shop-layout-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        width: 100%;
        max-height: 50vh;
        overflow-y: auto;
        z-index: 999;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .shop-sidebar.active {
        transform: translateY(0);
    }
}

/* Updated Product Card Scaling */
.product-card {
    height: 100%;
}



.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 153, 161, 0.7);
    /* Teal with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-orange);
    text-decoration: none;
    cursor: pointer;
}

/* Shop Product Styles */
.shop-section {
    padding: 4rem 0;
}

.shop-category-title {
    text-align: center;
    color: var(--accent-teal);
    font-family: var(--font-display);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card[data-category="module"] {
    border-top: 5px solid var(--accent-blue);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
}

.product-price {
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 1rem;
}

.view-examples-btn {
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.order-controls {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.qty-input {
    width: 60px;
    padding: 0.5rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}

.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

.floating-cart-btn.visible {
    transform: translateY(0);
}

.cart-count {
    background: white;
    color: var(--accent-orange);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-item.socials-item {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.contact-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-social-btn {
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    color: white !important;
    display: inline-block;
}

.contact-social-btn.linkedin {
    background: #0077b5;
}

.contact-social-btn.facebook {
    background: #1877f2;
}


/* Inspiration Generator (Grabbelton) */
.inspiration-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-orange);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.inspiration-fab:hover {
    transform: translateY(-5px) scale(1.05);
    /* Override float on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

.fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-icon img {
    width: 40px;
    height: auto;
    animation: wiggle 2s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    /* Pause for the rest of the valid cycle */
}

.fab-text {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-top: 10px solid var(--accent-teal);
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-header h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-family: 'Rowdies', cursive;
}

.modal-body p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-style: italic;
}


/* Lead Magnet Section */
.lead-magnet-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    background-image: radial-gradient(var(--accent-teal-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

.lead-magnet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .lead-magnet-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.lead-magnet-content h2 {
    color: var(--accent-orange);
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.lead-magnet-content h3 {
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.lead-checklist {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.lead-checklist li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.lead-magnet-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-yellow);
    position: relative;
    overflow: hidden;
}

.lead-magnet-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
}

/* VAK-dagen Section Responsive */
@media (min-width: 768px) {
    .vak-dagen-section {
        flex-direction: row !important;
        align-items: center;
    }

    .vak-img-wrapper {
        width: 50% !important;
        height: 350px !important;
    }

    .vak-content {
        width: 50%;
        text-align: left !important;
        padding: 4rem !important;
    }
}

/* Lead Magnet Form Styles */
.lead-magnet-form .form-group {
    margin-bottom: 1.5rem;
}

.lead-magnet-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.lead-magnet-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}


/* Mini-Game Styles */
.mini-game-section {
    padding: 2rem 0;
}

.game-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-bottom: 5px solid var(--accent-orange);
}

.game-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-orange);
    width: 0%;
    transition: width 0.3s ease;
}

.question-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 2rem;
    min-height: 60px;
    /* Prevent jump */
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

.option-btn {
    background: white;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: normal;
    line-height: 1.4;
}

.option-btn:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-btn:active {
    transform: translateY(0);
}
/* Mobile Menu Responsive Styles */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 2000; /* Above nav */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1999;
        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 1rem 0;
        min-width: auto;
        display: block !important; /* Always show sub-items on mobile */
        text-align: center;
        opacity: 1;
        transform: none;
    }

    .dropdown-menu li {
        margin-bottom: 0.5rem;
    }

    .dropdown-menu a {
        font-size: 1.2rem;
        color: var(--accent-teal);
    }
    
    .dropdown-item::after {
        display: none;
    }
}

/* Hamburger Animation */
.mobile-menu-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


@media (max-width: 768px) {
    .nav-list {
        display: flex !important;
    }
}

