/* ================================================
   A.Karlsson Bygg & Mark AB - BuildPress Style
   ================================================ */

/* CSS Variables */
:root {
    --primary: #951a0e;
    --primary-dark: #7d2e27;
    --primary-light: #b84a40;
    --dark: #1a1a1a;
    --dark-gray: #2d2d2d;
    --medium-gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-strong: 0 5px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Read More Link */
.read-more {
    display: inline-block;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    position: relative;
}

.read-more::after {
    content: ' →';
}

.read-more:hover {
    color: var(--primary);
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    color: var(--text-muted);
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar-links a:hover {
    color: var(--white);
}

/* ================================================
   HEADER
   ================================================ */
.header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

/* Header Info */
.header-info {
    display: flex;
    gap: 40px;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.info-icon::before {
    font-size: 16px;
    color: var(--white);
    font-weight: bold;
}

.phone-icon::before { content: '\260E'; }
.location-icon::before { content: '\2302'; }
.clock-icon::before { content: '\29D7'; }

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.info-sublabel {
    color: var(--text-muted);
    font-size: 13px;
}

/* Header Social */
.header-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

.social-icon:hover {
    background: var(--primary-dark);
}

.social-icon.facebook::before { content: 'f'; font-weight: bold; color: var(--white); }
.social-icon.instagram::before { content: 'in'; font-size: 12px; font-weight: bold; color: var(--white); }

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    background: var(--dark-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 18px 25px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--medium-gray);
}

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

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ================================================
   HERO SLIDER
   ================================================ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.slide-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.slide-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: none;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ================================================
   CTA BAR
   ================================================ */
.cta-bar {
    background: var(--light-gray);
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.cta-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-bar p {
    font-size: 18px;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
    padding: 80px 0;
}

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

/* Large Service Cards */
.service-card.large {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-card.large .service-image {
    height: 250px;
    overflow: hidden;
}

.service-card.large .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card.large:hover .service-image img {
    transform: scale(1.05);
}

.service-card.large .service-content {
    padding: 25px;
}

.service-card.large h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-list-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.service-list-item:hover {
    background: var(--light-gray);
}

.service-list-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.service-list-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-list-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================================================
   PROJECTS SECTION
   ================================================ */
.projects-section {
    background: var(--dark-gray);
}

.projects-header {
    padding: 40px 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary);
}

.filter-btn.active {
    border-bottom: 2px solid var(--primary);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.project-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(158, 58, 49, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-overlay h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 20px;
}

.view-project {
    padding: 10px 25px;
    background: var(--white);
    border: none;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.view-project:hover {
    background: var(--dark);
    color: var(--white);
}

/* Hidden projects for filtering */
.project-item.hidden {
    display: none;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
    padding: 80px 0;
}

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

.why-choose-us h2,
.who-we-are h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.why-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 30px;
}

/* Why Items */
.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.why-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 14px;
}

.why-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* Who We Are */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.about-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-text {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 28px;
}

.testimonials-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 40px;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 0 40px;
}

.testimonial.active {
    display: block;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
}

.stars {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* ================================================
   PROMISE BANNER
   ================================================ */
.promise-banner {
    position: relative;
    background: url('images/bastu-3-salen.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.promise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
}

.promise-banner .container {
    position: relative;
    z-index: 1;
}

.promise-banner p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.8;
}

/* ================================================
   PARTNERS SECTION
   ================================================ */
.partners-section {
    padding: 80px 0;
}

.partners-section h2 {
    text-align: center;
    font-size: 28px;
}

.partners-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid #eee;
    min-height: 100px;
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo.placeholder {
    background: var(--light-gray);
}

.partner-logo.placeholder span {
    color: var(--text-muted);
    font-size: 14px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 28px;
}

.section-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 20px;
}

.section-description {
    color: var(--text-light);
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
}

.info-icon-large {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-large::before {
    font-size: 18px;
    color: var(--white);
    font-weight: bold;
}

.info-icon-large.location::before { content: '\2302'; }
.info-icon-large.phone::before { content: '\260E'; }
.info-icon-large.email::before { content: '\2709'; }

.info-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-light);
    font-size: 14px;
}

.info-text a {
    color: var(--text-light);
}

.info-text a:hover {
    color: var(--primary-dark);
}

.map-container {
    margin-top: 10px;
}

.map-container iframe {
    width: 100%;
    border: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark-gray);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: var(--text-muted);
    font-size: 14px;
}

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

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Footer CTA */
.cta-col .btn {
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--primary);
    padding: 15px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 13px;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .header-info {
        display: none;
    }

    .header-social {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-list {
        grid-column: span 2;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header {
        padding: 15px 0;
    }

    .logo-text {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-gray);
        flex-direction: column;
        text-align: center;
    }

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

    .nav-link {
        padding: 15px;
        border-bottom: 1px solid var(--medium-gray);
    }

    .hero-slider {
        height: 500px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .cta-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-list {
        grid-column: span 1;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .project-filters {
        gap: 5px;
    }

    .filter-btn {
        padding: 10px 15px;
        font-size: 11px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

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

.service-card,
.project-item,
.why-item,
.testimonial,
.partner-logo {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animations */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.project-item:nth-child(1) { animation-delay: 0.05s; }
.project-item:nth-child(2) { animation-delay: 0.1s; }
.project-item:nth-child(3) { animation-delay: 0.15s; }
.project-item:nth-child(4) { animation-delay: 0.2s; }
.project-item:nth-child(5) { animation-delay: 0.25s; }
.project-item:nth-child(6) { animation-delay: 0.3s; }
.project-item:nth-child(7) { animation-delay: 0.35s; }
.project-item:nth-child(8) { animation-delay: 0.4s; }
