/* Modern Design Style with F-Shape Layout */
:root {
    --primary-color: #328f6c;
    --secondary-color: #bbd1aa;
    --tertiary-color: #e0e2e1;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Arial, sans-serif;
    color: var(--text-dark);
    background-color: #f8f9fa;
    line-height: 1.7;
    font-size: 16px;
}

/* Header - Modern Style */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a7a5f 100%);
    padding: 20px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;

}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: calc(100% - 36px);
}

/* Header Contact Info */
.header-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.header-phone,
.header-email {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.header-phone:hover,
.header-email:hover {
    background-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(50, 143, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

/* Success Page Icon */
.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-light);
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Main Content - F-Shape Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Banner - Creative Modern Style */
.hero-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a1a1a 100%);
    padding: 100px 60px;
    margin-bottom: 60px;
    border-radius: 24px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.25;
    filter: brightness(0.7) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

/* Sections - Modern Style */
section {
    margin-bottom: 60px;
    background-color: var(--text-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

section h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 35px 0 20px;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

section p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Content Grid - F-Shape Pattern */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.content-main {
    min-width: 0;
}

.content-sidebar {
    min-width: 0;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    background: linear-gradient(135deg, #e0e2e1 0%, #d0d2d1 100%);
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 500;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Icons - Modern Linear Style */
.icon {
    width: 42px;
    height: 42px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    fill: none;
    margin-right: 18px;
    vertical-align: middle;
    flex-shrink: 0;
}

.feature-list {
    list-style: none;
    margin: 35px 0;
}

.feature-list li {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    padding-left: 10px;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 20px 15px;
    margin: 0 -15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Buttons - Modern Style */
.btn {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a7a5f 100%);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 12px;
    margin: 24px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: none;
}

.btn:hover {
    background: linear-gradient(135deg, #2a7a5f 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a8c095 100%);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #a8c095 0%, var(--secondary-color) 100%);
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4e4c5 100%);
    padding: 45px;
    border-radius: 16px;
    margin: 35px 0;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2a2a2a;
}

/* Map */
.map-container {
    width: 100%;
    height: 450px;
    margin: 35px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-light);
    padding: 50px 20px;
    text-align: center;
    margin-top: 80px;
}

footer p {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-nav {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--text-light);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--text-light);
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a7a5f 100%);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #2a7a5f 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 143, 108, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    padding: 10px 20px;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Responsive - 320px and up */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 20px;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-text p {
        font-size: 14px;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .header-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        margin-top: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li a {
        display: block;
        padding: 15px;
        width: 100%;
        border-radius: 0;
    }

    nav ul li a::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    section {
        padding: 30px 25px;
    }

    section h2 {
        font-size: 30px;
    }

    section h3 {
        font-size: 24px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    main {
        padding: 20px 15px;
    }

    .hero-banner {
        padding: 60px 30px;
        min-height: 400px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-banner {
        padding: 50px 25px;
        min-height: 350px;
    }

    section h2 {
        font-size: 26px;
    }

    section {
        padding: 25px 20px;
    }

    section p {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 18px;
    }

    .logo img {
        height: 35px;
    }

    .header-container {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-banner {
        padding: 40px 20px;
        min-height: 300px;
        border-radius: 12px;
    }

    section {
        padding: 20px 15px;
        border-radius: 12px;
    }

    section h2 {
        font-size: 22px;
    }

    section h3 {
        font-size: 20px;
    }

    section p {
        font-size: 15px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .contact-info {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .map-container {
        height: 300px;
        border-radius: 12px;
    }

    main {
        padding: 15px 10px;
    }

    .menu-toggle {
        font-size: 20px;
        padding: 8px 12px;
    }

    .cookie-banner {
        padding: 15px 15px;
    }

    .cookie-banner-text p {
        font-size: 13px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
