* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
}

.nav-link-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #78350f;
    transition: all 0.3s ease;
}

.nav-link-icon:hover {
    color: #b45309;
}

.nav-link-icon.active {
    color: #b45309;
    font-weight: 600;
}

.hero-floating {
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.floating-card-1 {
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    top: 30%;
    right: 5%;
    animation: float 7s ease-in-out infinite 1s;
}

.floating-card-3 {
    bottom: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite 2s;
}

.floating-card-4 {
    bottom: 25%;
    right: 10%;
    animation: float 7s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 1024px) {
    .floating-card {
        display: none;
    }
}

.numbered-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.1);
    transition: all 0.3s ease;
}

.numbered-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(180, 83, 9, 0.2);
}

.numbered-card-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f59e0b;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card {
    perspective: 1000px;
    height: 400px;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.1);
}

.service-card-front {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-back {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    color: white;
    transform: rotateY(180deg);
}

.service-card:hover .service-card-front {
    transform: rotateY(-180deg);
}

.service-card:hover .service-card-back {
    transform: rotateY(0);
}

@media (max-width: 768px) {
    .service-card-front {
        position: relative;
        transform: none;
    }
    
    .service-card-back {
        position: relative;
        transform: none;
        margin-top: 1rem;
    }
    
    .service-card {
        height: auto;
        perspective: none;
    }
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    grid-auto-rows: 200px;
}

.photo-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.photo-grid-large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-grid-tall {
    grid-row: span 2;
}

.photo-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(180, 83, 9, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-grid-item:hover .photo-grid-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .photo-grid-large,
    .photo-grid-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #78350f;
    color: white;
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

input.error,
textarea.error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

@media (max-width: 640px) {
    .floating-card {
        padding: 1rem;
    }
    
    .numbered-card-number {
        font-size: 2rem;
    }
}