/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #ee3d96;
    --color-primary-dark: #6B394A;
    --color-accent: #EE99B1;
    --color-secondary: #B56E88;
    --color-text: #251518;
    --color-text-light: #736266;
    --color-bg: #FEFEFE;
    --color-bg-secondary: #F6EAED;
    --color-border: #e5e7eb;
    --color-dark: #251518;

    --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.has-dropdown > a::after {
    display: none;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
    margin-top: 1rem;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--color-text);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background: var(--color-bg-secondary);
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-cta {
    display: none;
}

@media (max-width: 968px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav.active {
        display: block;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
        margin-bottom: 1.5rem;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 16px;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-cta {
        padding: 0 2rem;
        display: none;
    }

    .main-nav.active .mobile-cta {
        display: block;
    }

    .mobile-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile dropdown */
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.active .dropdown {
        max-height: 200px;
    }

    .dropdown li {
        border-bottom: none;
    }

    .dropdown a {
        padding: 0.75rem 2rem 0.75rem 3rem;
        background: var(--color-bg-secondary);
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
    }

    .dropdown a:hover {
        background: var(--color-bg-secondary);
    }

    .has-dropdown > a {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(17, 24, 39, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(238, 153, 177, 0.2);
    border: 1px solid rgba(238, 153, 177, 0.5);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-badge span {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-location {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-btn-primary {
    background: var(--color-primary);
    color: white;
}

.hero-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 61, 150, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .hero-section {
        height: 70vh;
        min-height: 480px;
        max-height: 600px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
        max-height: none;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-badge {
        padding: 6px 16px;
        margin-bottom: 1.5rem;
    }

    .hero-badge span {
        font-size: 11px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        padding: 14px 28px;
    }
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text {
    padding-right: 2rem;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.intro-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem;
    background: var(--color-bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-light);
}

.intro-image {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img,
.intro-image video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.intro-image:hover img,
.intro-image:hover video {
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .intro-section {
        padding: 60px 0;
    }

    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-text {
        padding-right: 0;
    }

    .section-title {
        font-size: 36px;
    }

    .intro-lead {
        font-size: 18px;
    }

    .intro-image {
        position: relative;
        top: 0;
    }

    .intro-image img,
    .intro-image video {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .intro-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 1.25rem;
    }

    .intro-lead {
        font-size: 17px;
    }

    .intro-paragraph {
        font-size: 15px;
    }

    .intro-features {
        margin-top: 2rem;
        gap: 1.25rem;
    }

    .feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature h4 {
        font-size: 15px;
    }

    .feature p {
        font-size: 13px;
    }

    .intro-image img,
    .intro-image video {
        height: 300px;
    }
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
    padding: 80px 0;
    background: white;
}

.projects-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.project-info p {
    font-size: 14px;
    color: var(--color-text-light);
}

.projects-cta {
    text-align: center;
}

@media (max-width: 968px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .projects-section {
        padding: 50px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .project-info {
        padding: 1.25rem;
    }

    .project-info h3 {
        font-size: 16px;
    }
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-header .section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.services-header .section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-block {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.service-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-block:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(238, 61, 150, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-block:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    font-size: 42px;
    color: white;
    font-weight: 300;
}

.service-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: white;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-btn:hover {
    gap: 12px;
    color: var(--color-primary-dark);
}

.service-btn::after {
    content: '→';
    font-size: 16px;
    transition: var(--transition);
}

@media (max-width: 968px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-image {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 50px 0;
    }

    .services-header .section-title {
        font-size: 28px;
    }

    .service-image {
        height: 200px;
    }

    .service-content h3 {
        font-size: 18px;
    }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 61, 150, 0.7) 0%, rgba(107, 57, 74, 0.65) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.cta-btn-primary {
    background: white;
    color: var(--color-primary);
}

.cta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--color-bg-secondary);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card-content {
    flex: 1;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-light);
}

.contact-card a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(238, 61, 150, 0.1);
}

.form-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.instagram-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 16px;
    font-weight: 600;
}

.instagram-icon {
    width: 24px;
    height: 24px;
}

.instagram-feed {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .instagram-section {
        padding: 60px 0;
    }

    .instagram-follow-btn {
        padding: 0.875rem 1.5rem;
        font-size: 15px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: white;
    color: var(--color-text);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-text);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-secondary);
    border-radius: 8px;
    color: var(--color-primary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    color: var(--color-text-light);
    font-size: 14px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-text-light);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

/* ===================================
   PAGE HERO (Undersidor)
   =================================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.page-hero.hero-compact {
    min-height: 300px;
    padding: 120px 0 40px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(17, 24, 39, 0.65) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.page-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        padding: 120px 0 60px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .page-hero-lead {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

    .page-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .page-hero-actions .btn {
        width: 100%;
    }
}

/* ===================================
   CONTENT SECTION
   =================================== */
.content-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.main-content {
    max-width: 100%;
}

.main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin: 2.5rem 0 1.25rem;
    letter-spacing: -0.02em;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin: 2rem 0 1rem;
}

.main-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.content-image {
    margin: 3rem auto;
    border-radius: 8px;
    overflow: hidden;
    max-width: 800px;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

.info-box {
    background: var(--color-bg-secondary);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.info-box p {
    margin-bottom: 0;
}

.note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-size: 15px;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.benefit-item p {
    margin: 0;
}

.scaffold-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.scaffold-type {
    background: var(--color-bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.scaffold-type h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.scaffold-type p {
    margin: 0;
    font-size: 15px;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    font-size: 28px;
    margin: 0 0 1rem;
    color: white;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--color-primary);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ===================================
   SIDEBAR
   =================================== */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-box {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 1.5rem;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.sidebar-contact-item a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.sidebar-contact-item a:hover {
    color: var(--color-primary);
}

.opening-hours p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.opening-hours p:last-child {
    margin-bottom: 0;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.sidebar-links a::before {
    content: '→';
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.sidebar-links a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

@media (max-width: 968px) {
    .content-section {
        padding: 60px 0;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar {
        position: relative;
        top: 0;
    }

    .scaffold-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .content-section {
        padding: 50px 0;
    }

    .main-content h2 {
        font-size: 28px;
    }

    .main-content h3 {
        font-size: 20px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===================================
   OM OSS PAGE
   =================================== */
.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.cta-text-box {
    background: var(--color-bg-secondary);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.cta-text-box p {
    margin: 0;
    font-size: 17px;
}

.values-section {
    margin: 3rem 0;
}

.values-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-light);
    margin: 0;
}

.team-section {
    margin: 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-member {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.contact-link:hover {
    color: var(--color-primary);
}

.member-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-intro h2,
    .values-section h2,
    .team-section h2 {
        font-size: 26px;
    }

    .lead-text {
        font-size: 18px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .member-image {
        order: -1;
    }

    .member-contact {
        align-items: center;
    }
}

/* ===================================
   KONTAKT PAGE
   =================================== */
.contact-page-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.contact-person-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-person-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.person-role {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.person-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-large {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-item-large svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item-large .label {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-large .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-large .value:hover {
    color: var(--color-primary);
}

.contact-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-box-item {
    background: var(--color-bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-box-item svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-box-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.5rem;
}

.contact-box-item p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0 0 0.75rem;
}

.box-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.box-link:hover {
    color: var(--color-primary-dark);
}

.opening-hours-box,
.location-box {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.opening-hours-box h3,
.location-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-item .day {
    font-size: 14px;
    color: var(--color-text);
}

.hours-item .time {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.location-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.contact-form-section {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-intro {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-form-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-form-large select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition);
    background: white;
}

.contact-form-large select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(238, 61, 150, 0.1);
}

@media (max-width: 968px) {
    .contact-page-section {
        padding: 60px 0;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-page-section {
        padding: 50px 0;
    }

    .contact-form-section {
        padding: 1.5rem;
    }
}

/* ===================================
   REFERENSER PAGE
   =================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.gallery-category {
    margin-bottom: 5rem;
}

.gallery-category:last-of-type {
    margin-bottom: 3rem;
}

.gallery-category h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.category-desc {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    background: black;
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(238, 61, 150, 0.95) 0%, rgba(238, 61, 150, 0) 100%);
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 968px) {
    .gallery-section {
        padding: 60px 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-category h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gallery-category {
        margin-bottom: 3rem;
    }
}
