/* ---------- RESET & BASE STYLES ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --clr-primary: #fdb00e;
    --clr-secondary: #7743b3;
    --clr-stroke: #081c4e;
    --clr-white: #fff;
    --clr-light: #f8f9fa;
    --clr-gray: #6c757d;
    --clr-dark: #212529;
    --clr-hero-bg: #0c1f4a;
    --font-body: "Fredoka", "Segoe UI", sans-serif;
    
    --header-height: 7rem;
    --transition: all 0.3s ease;
    
    /* Responsive font sizes */
    --fs-h1: clamp(3rem, 7vw, 5rem);
    --fs-h2: clamp(2.5rem, 5vw, 3.5rem);
    --fs-body: clamp(1.2rem, 1.6vw, 1.6rem);
    --fs-small: clamp(1rem, 1.2vw, 1.2rem);
}

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--clr-dark);
    overflow-x: hidden;
    background-color: var(--clr-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-stroke);
    box-shadow: 0 4px 10px rgba(253, 176, 14, 0.3);
}

.btn-primary:hover {
    background-color: #ffbe2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(253, 176, 14, 0.4);
}

/* ---------- HEADER STYLES ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--clr-stroke);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    flex: 1;
}

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

.main-nav {
    display: flex;
    justify-content: center;
    flex: 2;
}

.nav-list {
    display: flex;
    gap: 2.2rem;
}

.nav-link {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 1.7rem;
    padding: 0.8rem 0.5rem;
    position: relative;
    white-space: nowrap;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--clr-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.6rem;
    color: var(--clr-white);
    flex: 1;
}

.lang-link {
    padding: 0.5rem;
    font-weight: 500;
}

.lang-link:hover, .lang-link.active {
    color: var(--clr-primary);
}

.lang-divider {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.4rem;
    position: relative;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--clr-white);
    border-radius: 3px;
    transition: var(--transition);
}

.bar:nth-child(2) {
    margin: 6px 0;
}

/* ---------- HERO SECTION ---------- */
.hero {
    padding: calc(var(--header-height) + 6rem) 0 8rem 0;
    background-color: var(--clr-hero-bg);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/bg-pattern.svg');
    background-size: 200px;
    opacity: 0.15;
    z-index: 1;
    animation: patternFloat 60s linear infinite;
}

@keyframes patternFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-logo {
    margin: 0 auto 4rem;
    max-width: 24rem;
}

.hero-title {
    font-size: var(--fs-h1);
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: var(--clr-white);
}

.hero-description {
    font-size: calc(var(--fs-body) * 1.2);
    margin-bottom: 1.5rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--clr-light);
    line-height: 1.9;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-specialization {
    font-size: var(--fs-body);
    margin-bottom: 4rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--clr-primary);
    line-height: 1.7;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
}

.hero-cta {
    margin-top: 2.5rem;
}

/* ---------- SERVICES SECTION ---------- */
.services {
    padding: 10rem 0;
    background-color: var(--clr-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: var(--fs-h2);
    color: var(--clr-stroke);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.4rem;
    background-color: var(--clr-secondary);
    border-radius: 4px;
}

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--clr-gray);
    max-width: 60rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--clr-white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--clr-secondary);
}

.service-card::before {
    content: none;
}

.service-icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(119, 67, 179, 0.15);
    color: var(--clr-secondary);
    font-size: 2.8rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: none;
}

.service-card:hover .service-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    box-shadow: 0 10px 20px rgba(119, 67, 179, 0.2);
}

.service-title {
    font-size: 2rem;
    color: var(--clr-stroke);
    margin-bottom: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--clr-secondary);
}

.service-description {
    font-size: 1.5rem;
    color: var(--clr-gray);
    line-height: 1.7;
    flex-grow: 1;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 1200px) {
    .nav-list {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.6rem;
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 6rem;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--clr-stroke);
        padding: 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        flex: initial;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        pointer-events: none;
        overflow: hidden;
        max-height: 0;
    }
    
    .main-nav.active {
        display: block;
        padding: 2rem;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        max-height: 500px;
        transition: transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }
    
    .language-selector {
        flex: 0 0 auto;
        margin-right: 2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        font-size: 1.8rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: 1rem;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 5.5rem;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 6rem;
    }
    
    .hero-logo {
        max-width: 15rem;
    }
    
    .hero-bg-pattern {
        background-size: 150px;
    }
    
    @keyframes patternFloat {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 150px 150px;
        }
    }
    
    .services {
        padding: 6rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .service-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.4rem;
    }
    
    .specialisatie-prijzen {
        padding: 3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .prijzen-lijst {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 40rem;
    }
    
    .prijs-info li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .prijs-icon {
        margin-right: 1.2rem;
        font-size: 2rem;
        width: 3rem;
    }
}

@media (max-width: 480px) {
    .language-selector {
        margin-right: 1rem;
    }
    
    .hero-bg-pattern {
        background-size: 200px;
    }
    
    @keyframes patternFloat {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 200px 200px;
        }
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- PORTFOLIO SECTION ---------- */
.portfolio {
    padding: 10rem 0;
    background-color: var(--clr-light);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.portfolio-item {
    background-color: var(--clr-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 25rem;
    background-color: var(--clr-stroke);
    border-radius: 1rem 1rem 0 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.03);
}

.view-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--clr-primary);
    color: var(--clr-stroke);
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.view-btn:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.view-btn i {
    margin-right: 0.5rem;
}

.portfolio-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 2rem;
    color: var(--clr-stroke);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.portfolio-description {
    font-size: 1.5rem;
    color: var(--clr-gray);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: auto;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(119, 67, 179, 0.1);
    color: var(--clr-secondary);
    font-size: 1.3rem;
    border-radius: 5rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 6rem 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
        gap: 2.5rem;
    }
    
    .portfolio-image {
        height: 22rem;
    }
    
    .portfolio-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 20rem;
    }
}

/* ---------- SPECIALISATIE SECTION ---------- */
.specialisatie {
    padding: 10rem 0;
    background-color: var(--clr-white);
    position: relative;
}

.specialisatie-intro {
    max-width: 90rem;
    margin: 0 auto 5rem;
    text-align: center;
}

.specialisatie-intro p {
    font-size: 1.8rem;
    color: var(--clr-gray);
    line-height: 1.7;
}

.specialisatie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.specialisatie-content h3,
.specialisatie-features h3 {
    font-size: 2.4rem;
    color: var(--clr-stroke);
    margin-bottom: 2rem;
    font-weight: 600;
}

.specialisatie-content > p {
    font-size: 1.6rem;
    color: var(--clr-gray);
    margin-bottom: 2.5rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.example-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.example-icon {
    width: 6rem;
    height: 6rem;
    background-color: rgba(119, 67, 179, 0.1);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    transition: all 0.3s ease;
}

.example-item:hover .example-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
    transform: translateY(-5px);
}

.example-item span {
    font-size: 1.5rem;
    color: var(--clr-stroke);
    font-weight: 500;
}

.special-note {
    background-color: rgba(253, 176, 14, 0.1);
    border-left: 4px solid var(--clr-primary);
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.special-note i {
    color: var(--clr-primary);
    font-size: 2.4rem;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.special-note p {
    font-size: 1.6rem;
    color: var(--clr-dark);
    margin: 0;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
}

.features-list i {
    color: var(--clr-secondary);
    font-size: 2.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.features-list div {
    flex-grow: 1;
}

.features-list h4 {
    font-size: 1.8rem;
    color: var(--clr-stroke);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.features-list p {
    font-size: 1.6rem;
    color: var(--clr-gray);
    line-height: 1.6;
}

.specialisatie-prijzen {
    background-color: var(--clr-light);
    padding: 4rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prijs-info {
    flex: 1;
    min-width: 30rem;
}

.prijs-info h3 {
    font-size: 2.4rem;
    color: var(--clr-stroke);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.prijs-info p {
    font-size: 1.6rem;
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.prijs-info ul {
    margin-bottom: 1.5rem;
}

.prijzen-lijst {
    list-style: none;
    max-width: 55rem;
}

.prijs-info li {
    font-size: 1.6rem;
    color: var(--clr-stroke);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.prijs-icon {
    color: var(--clr-primary);
    margin-right: 1rem;
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
    display: inline-block;
}

.prijs-icon i {
    display: inline-block;
    width: 100%;
}

.prijs-note {
    font-style: italic;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 20rem;
}

.cta-offerte {
    padding: 1.6rem 3rem;
    font-size: 1.7rem;
    box-shadow: 0 8px 15px rgba(253, 176, 14, 0.3);
}

.cta-offerte i {
    margin-right: 0.8rem;
}

.cta-offerte:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 176, 14, 0.4);
}

@media (max-width: 1100px) {
    .specialisatie-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .specialisatie-prijzen {
        padding: 3.5rem;
    }
    
    .prijzen-lijst li {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .specialisatie {
        padding: 6rem 0;
    }
    
    .specialisatie-intro {
        margin-bottom: 4rem;
    }
    
    .specialisatie-intro p {
        font-size: 1.7rem;
    }
    
    .examples-grid {
        grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
        gap: 1.5rem;
    }
    
    .example-icon {
        width: 5.5rem;
        height: 5.5rem;
        font-size: 2.2rem;
    }
    
    .specialisatie-prijzen {
        padding: 3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .prijzen-lijst {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        max-width: 40rem;
    }
    
    .prijs-info li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .prijs-icon {
        margin-right: 1.2rem;
        font-size: 2rem;
        width: 3rem;
    }
}

@media (max-width: 480px) {
    .examples-grid {
        grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
        gap: 1.5rem;
    }
    
    .example-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
    
    .example-item span {
        font-size: 1.4rem;
    }
    
    .features-list li {
        flex-direction: column;
    }
    
    .features-list i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .prijzen-lijst {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
    
    .prijs-info li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .prijs-icon {
        margin-right: 1.5rem;
        font-size: 2.2rem;
    }
    
    .prijs-note {
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .specialisatie-prijzen {
        padding: 3.5rem;
    }
    
    .prijs-info {
        min-width: 100%;
        margin-bottom: 3rem;
    }
    
    .prijzen-lijst {
        display: flex;
        flex-direction: column;
        max-width: 45rem;
        margin: 0 auto 2rem;
    }
    
    .prijs-icon {
        width: 2.8rem;
    }
}

/* ---------- CONTACT SECTION ---------- */
.contact {
    padding: 10rem 0;
    background-color: var(--clr-light);
    position: relative;
}

.contact-container {
    margin-top: 5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--clr-white);
    border-radius: 1rem;
    padding: 4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(119, 67, 179, 0.1);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.contact-details {
    flex-grow: 1;
}

.contact-details h3 {
    font-size: 1.8rem;
    color: var(--clr-stroke);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-link {
    font-size: 1.6rem;
    color: var(--clr-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--clr-primary);
}

.contact-note {
    font-size: 1.5rem;
    color: var(--clr-gray);
}

.contact-details p {
    font-size: 1.5rem;
    color: var(--clr-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-details .hours {
    font-size: 1.8rem;
    color: var(--clr-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-cta {
    background-color: var(--clr-stroke);
    border-radius: 1rem;
    padding: 4rem;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-cta p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: var(--clr-light);
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--clr-white);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--clr-stroke);
    padding: 4rem 0;
    color: var(--clr-white);
}

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

.footer-logo {
    max-width: 12rem;
}

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

.footer-copyright p {
    font-size: 1.5rem;
    color: var(--clr-light);
}

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

.footer-link {
    color: var(--clr-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--clr-primary);
}

@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 0;
    }
    
    .contact-card {
        padding: 3rem;
    }
    
    .contact-cta {
        padding: 3rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .contact-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-buttons .btn {
        width: 100%;
        text-align: center;
    }
} 