/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF9E7B;
    --secondary-color: #FECC6A;
    --accent-color: #6B9A6E;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Skeuomorphism Styles */
.skeuomorphic-box {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    box-shadow: 
        20px 20px 60px #d1d1d1,
        -20px -20px 60px #ffffff,
        inset 0 0 0 1px rgba(255,255,255,0.5);
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.skeuomorphic-box:hover {
    box-shadow: 
        15px 15px 40px #d1d1d1,
        -15px -15px 40px #ffffff,
        inset 0 0 0 1px rgba(255,255,255,0.5);
    transform: translateY(-5px);
}

/* Header & Navigation */
header {
    background: linear-gradient(145deg, var(--accent-color), #5a8a5d);
    padding: 1rem 0;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Full-Screen Hero Section */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3),
                 0 0 30px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s ease-out;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-images img {
    position: absolute;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    animation: float 6s ease-in-out infinite;
}

.hero-images img:first-child {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-images img:last-child {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(145deg, var(--primary-color), #ff8c6b);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 
        5px 5px 15px rgba(255,158,123,0.4),
        -5px -5px 15px rgba(255,158,123,0.2),
        inset 0 2px 0 rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        8px 8px 20px rgba(255,158,123,0.5),
        -8px -8px 20px rgba(255,158,123,0.3);
}

.btn-secondary {
    background: linear-gradient(145deg, var(--accent-color), #5a8a5d);
    box-shadow: 
        5px 5px 15px rgba(107,154,110,0.4),
        -5px -5px 15px rgba(107,154,110,0.2);
}

.btn-secondary:hover {
    box-shadow: 
        8px 8px 20px rgba(107,154,110,0.5),
        -8px -8px 20px rgba(107,154,110,0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Description Block */
.description-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    padding: 5rem 2rem;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.description-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.description-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.description-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.description-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.description-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.description-content .highlight {
    font-weight: 700;
    font-size: 1.4rem;
    display: inline-block;
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .description-block {
        padding: 3rem 1.5rem;
    }

    .description-content h2 {
        font-size: 2rem;
    }

    .description-content p {
        font-size: 1.1rem;
    }

    .description-content .highlight {
        font-size: 1.2rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 320px) {
    .description-block {
        padding: 2rem 1rem;
    }

    .description-content h2 {
        font-size: 1.5rem;
    }

    .description-content p {
        font-size: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        20px 20px 60px #d1d1d1,
        -20px -20px 60px #ffffff;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 
        25px 25px 70px #d1d1d1,
        -25px -25px 70px #ffffff;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Images */
.content-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin: 1rem 0;
    background: #d1d1d1;
}

.image-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

/* Footer */
footer {
    background: linear-gradient(145deg, #2c3e50, #34495e);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Content Pages */
.content-page {
    padding: 2rem 0;
}

.content-intro {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
}

.content-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

/* Service Pages */
.service-page {
    padding: 2rem 0;
}

.service-content {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-content p,
.service-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.service-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Success Page */
.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-content {
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
}

.success-content h1 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.map-container {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: linear-gradient(145deg, #fafafa, #ffffff);
    box-shadow: inset 5px 5px 10px #e0e0e0, inset -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: inset 5px 5px 10px #e0e0e0, inset -5px -5px 10px #ffffff, 0 0 0 3px rgba(255,158,123,0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--accent-color);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-images img {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 2rem;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .skeuomorphic-box,
    .card,
    .content-intro {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

