/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: #0f0f0f;
    background-color: #ffffff;
    font-weight: 400;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: #0f0f0f;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 4rem;
    }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: #0f0f0f;
    color: white;
    box-shadow: 0 2px 12px rgba(15, 15, 15, 0.12);
    backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 15, 15, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #0f0f0f;
    border: 2px solid rgba(240, 240, 240, 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(248, 248, 248, 0.95);
    border-color: rgba(200, 200, 200, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-tertiary {
    background: #f8f8f8;
    color: #666;
    border: 1px solid #e5e5e5;
}

.btn-tertiary:hover {
    background: #f0f0f0;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 16px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at top, #fafafa 0%, #ffffff 50%, #f8f8f8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    color: #0f0f0f;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
    background: linear-gradient(135deg, #0f0f0f 0%, #2f2f2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #404040;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 580px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%234CAF50" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%234CAF50" opacity="0.2"/><circle cx="80" cy="80" r="1.5" fill="%234CAF50" opacity="0.15"/></svg>');
    opacity: 0.3;
}

/* Sections */
section {
    padding: 7rem 0;
}

@media (min-width: 1200px) {
    section {
        padding: 8rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: #0f0f0f;
    font-weight: 900;
    letter-spacing: -0.035em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0f0f0f, #404040);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,0,0,0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-text {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: #2a2a2a;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.stat {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(240, 240, 240, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0f0f0f, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.stat:hover::before {
    transform: translateX(100%);
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(200, 200, 200, 0.3);
}

.stat h3 {
    font-size: clamp(3rem, 4vw, 4.5rem);
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0f0f0f 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    color: #404040;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(240, 240, 240, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0f0f0f, #404040, #0f0f0f);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(200, 200, 200, 0.4);
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(2deg);
}

.service-card h3 {
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-card p {
    color: #404040;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

/* Team Section */
.team {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0,0,0,0.015) 0%, transparent 60%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    padding: 3.5rem 2.5rem 3rem;
    border-radius: 28px;
    border: 1px solid rgba(240, 240, 240, 0.4);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0f0f0f, #404040, #0f0f0f, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member:hover::before {
    transform: translateX(100%);
}

.team-member:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(200, 200, 200, 0.3);
    background: rgba(255, 255, 255, 1);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f0f0f 0%, #404040 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.08) rotate(5deg);
}

.team-member:hover .member-avatar::before {
    transform: rotate(45deg) translateX(100%);
}

.avatar-placeholder {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    z-index: 2;
    position: relative;
}

.member-role {
    color: #0f0f0f;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0,0,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem 3rem;
    border-radius: 28px;
    border: 1px solid rgba(240, 240, 240, 0.5);
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0f0f0f, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.testimonial-card:hover::before {
    transform: translateX(100%);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
    border-color: rgba(200, 200, 200, 0.3);
    background: rgba(255, 255, 255, 1);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2.5rem;
    color: #2a2a2a;
    line-height: 1.8;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    position: relative;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.testimonial-content p::before {
    content: '"';
    font-size: 5rem;
    color: rgba(15, 15, 15, 0.08);
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-author strong {
    color: #0f0f0f;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.testimonial-author span {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Blog Section */
.blog {
    background: #ffffff;
    padding: 8rem 0;
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0,0,0,0.015) 0%, transparent 60%);
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(240, 240, 240, 0.4);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(20px);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0f0f0f, #404040, #0f0f0f, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.blog-card:hover::before {
    transform: translateX(100%);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(200, 200, 200, 0.3);
    background: rgba(255, 255, 255, 1);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 2.5rem;
}

.blog-content h3 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.blog-content h3 a {
    color: #0f0f0f;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0f0f0f 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content h3 a:hover {
    transform: translateX(2px);
}

.blog-content p {
    color: #2a2a2a;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.read-more {
    color: #0f0f0f;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    border-color: #0f0f0f;
    transform: translateX(2px);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 5rem;
    align-items: start;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    color: #0f0f0f;
    margin-bottom: 2.5rem;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0f0f0f, transparent);
}

.contact-item strong {
    color: #0f0f0f;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3.5rem;
    border-radius: 28px;
    border: 1px solid rgba(240, 240, 240, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0f0f0f, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.contact-form:hover::before {
    transform: translateX(100%);
}

.contact-form:hover {
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(200, 200, 200, 0.3);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0f0f0f;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(250, 250, 250, 0.5);
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f0f0f;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(15, 15, 15, 0.08);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 85, 48, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-option span {
    font-weight: 600;
    color: #333;
}

.cookie-option p {
    margin: 0.5rem 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding-top: 100px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.legal-section {
    margin-bottom: 2rem;
    padding: 0px;
}

.legal-section h2 {
    color: #2c5530;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: #2c5530;
    margin-top: 1.5rem;
}

.legal-section ul {
    margin-left: 1.5rem;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.cookie-preferences {
    background: #f0f8f0;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

/* Thanks Page */
.thanks-page {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info ul {
    margin-left: 1.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Post */
.blog-post {
    padding-top: 100px;
    padding-bottom: 100px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-category {
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.post-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.post-body {
    line-height: 1.8;
}

.post-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.post-body ul, .post-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-tip {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
    margin: 2rem 0;
}

.post-tip h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #4CAF50;
    color: white;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: #f9f9f9;
}

.checklist, .room-checklist {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.checklist h3, .room-checklist h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.checklist ul, .room-checklist ul {
    list-style: none;
    margin-left: 0;
}

.checklist li, .room-checklist li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.checklist li::before, .room-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.timeline {
    margin: 2rem 0;
}

.timeline h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.timeline ul {
    margin-bottom: 2rem;
    background: #f9f9f9;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 8px;
}

.post-footer {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.post-tags {
    margin-bottom: 2rem;
}

.post-tags span {
    font-weight: 600;
    margin-right: 1rem;
}

.tag {
    display: inline-block;
    background: #e8f5e8;
    color: #2c5530;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #4CAF50;
    color: white;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .post-nav {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .team-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .cookie-modal {
        display: none;
    }
    
    .legal-page,
    .blog-post {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .post-tip,
    .checklist,
    .room-checklist {
        page-break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: white;
    }
    
    .service-card,
    .team-member,
    .testimonial-card,
    .blog-card {
        border: 2px solid #333;
    }
}
