﻿/* Reset och grundläggande stilar. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Färger inspirerade av loggan */
    --primary-teal: #2D5A5A;
    --primary-mustard: #D4A574;
    --primary-rust: #B85450;
    --primary-dark: #1A1A1A;
    --background-light: #FAFAFA;
    --background-offwhite: #F8F8F8;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    
    /* Typografi */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Shadows */
    --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);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--primary-dark);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon img {
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo:hover .logo-icon img {
    transform: scale(1.1);
}

.nav {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: var(--primary-teal);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--background-offwhite);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('epoxytransform.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(45, 90, 90, 0.4) 0%, 
        rgba(212, 165, 116, 0.3) 30%, 
        rgba(184, 84, 80, 0.35) 70%, 
        rgba(26, 26, 26, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: inline-block;
    background: var(--primary-mustard);
    color: var(--primary-dark);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Section Styles */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--primary-dark);
}

/* Who We Are */
.who-we-are {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
    position: relative;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.team-card {
    text-align: center;
    padding: var(--spacing-2xl);
    border-radius: 16px;
    background: var(--background-offwhite);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.team-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    display: block;
    /* Stöd för bilder också */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg) auto;
}

/* Stöd för bilder istället för emojis */
.team-card[data-has-image="true"] .team-icon {
    font-size: 0;
    background-image: var(--team-image);
}

.team-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.team-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-details {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.team-details p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
}

.team-toggle-btn {
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 6px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
}

.team-toggle-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Services */
.services {
    padding: var(--spacing-4xl) 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-mustard));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image i,
.service-image svg {
    width: 80px !important;
    height: 80px !important;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-image i,
.service-card:hover .service-image svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Ytterligare regler för Lucide SVG-ikoner */
.service-image svg {
    width: 80px !important;
    height: 80px !important;
    fill: var(--white) !important;
    stroke: var(--white) !important;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--white) !important;
}

/* Säkerställ att alla Lucide-ikoner i service-korten får rätt storlek */
.service-image [data-lucide] {
    width: 80px !important;
    height: 80px !important;
    fill: var(--white) !important;
    stroke: var(--white) !important;
    color: var(--white) !important;
}

/* Ytterligare säkerhet för Lucide SVG-ikoner */
.service-image svg * {
    fill: var(--white) !important;
    stroke: var(--white) !important;
}

/* Säkerställ att ikonerna behåller storleken vid hover */
.service-card:hover .service-image svg {
    width: 80px !important;
    height: 80px !important;
    fill: var(--white) !important;
    stroke: var(--white) !important;
    color: var(--white) !important;
}


.service-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin: 0 var(--spacing-lg) var(--spacing-lg);
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    margin: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: var(--primary-dark);
}

/* Gallery */
.gallery {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.gallery-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-lg);
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Gallery Actions */
.gallery-actions {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

.show-all-btn {
    background: var(--primary-teal);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.show-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--background-offwhite);
}

.modal-header h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: var(--font-size-2xl);
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-dark);
    background: rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: var(--spacing-xl);
    max-height: 70vh;
    overflow-y: auto;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.full-gallery-item {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--background-offwhite);
    border: 2px solid transparent;
}

.full-gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.full-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.full-gallery-item:hover .full-gallery-image {
    transform: scale(1.1);
}

.full-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.full-gallery-item:hover .full-gallery-overlay {
    opacity: 1;
}

.full-gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.color-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-mustard), var(--primary-rust));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-align: center;
    padding: var(--spacing-sm);
}

/* Service Modal Styles */
.service-modal-content {
    max-width: 800px;
}

/* Policy Modal Styles */
.policy-modal-content {
    max-width: 800px;
}

.policy-content {
    line-height: 1.8;
}

.policy-content h3 {
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    border-bottom: 2px solid var(--primary-teal);
    padding-bottom: var(--spacing-sm);
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.policy-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.policy-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.policy-content a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

.service-description {
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: var(--background-offwhite);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.service-description p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.detail-section {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-section h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.detail-section ul,
.detail-section ol {
    margin: 0;
    padding-left: var(--spacing-lg);
}

.detail-section li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.5;
}

.detail-section ul li {
    position: relative;
}

.detail-section ul li::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--primary-teal);
    font-weight: bold;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section ul li {
    position: relative;
    padding-left: 25px;
}

.service-cta-section {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--background-light);
    border-radius: 12px;
    border: 2px dashed var(--primary-teal);
}

.service-cta-button {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.service-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact */
.contact {
    padding: var(--spacing-4xl) 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-md);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

.form-submit {
    background: var(--primary-teal);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-details h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.contact-icon {
    font-size: var(--font-size-lg);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.contact-icon i {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.team-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-email-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email-link:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-mustard) 50%, var(--primary-rust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-social h4 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--white);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    max-width: 24px;
    max-height: 24px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-policies {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.policy-link {
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-size-sm);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.policy-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.chat-button span {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        border-radius: 12px;
        text-align: center;
    }

    .nav.active {
        display: flex;
    }

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

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .social-links {
        justify-content: center;
    }

    .footer-policies {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .chat-button {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 50px;
        height: 50px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.feature-card,
.service-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects for epoxy-like animations */
.hero-cta,
.cta-button,
.form-submit {
    position: relative;
    overflow: hidden;
}

.hero-cta::after,
.cta-button::after,
.form-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::after,
.cta-button:hover::after,
.form-submit:hover::after {
    left: 100%;
}
