/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* ===== HAND-DRAWN STYLE ELEMENTS ===== */
.hand-drawn-border {
    position: relative;
}

.hand-drawn-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border: 2px solid #2c2c2c;
    border-radius: 8px;
    transform: rotate(-0.5deg);
    z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c2c2c;
    cursor: pointer;
    position: relative;
    transform: rotate(-0.3deg);
}

.btn-primary:hover {
    background: transparent;
    color: #2c2c2c;
    transform: rotate(0deg) scale(1.05);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border: 2px solid #2c2c2c;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    transform: rotate(0.3deg);
}

.btn-outline:hover {
    background: #2c2c2c;
    color: white;
    transform: rotate(0deg) scale(1.05);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: #666;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #666;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #555;
    transform: translateY(-2px);
}

.highlight {
    background: linear-gradient(120deg, #f39c12 0%, #f39c12 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
    color: #2c2c2c;
    font-weight: 700;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #e5e5e5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    transform: rotate(-1deg);
}

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

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f39c12;
    color: white;
    transform: rotate(-1deg);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f39c12' fill-opacity='0.05'%3E%3Cpath d='M54 20c0-6.627-5.373-12-12-12s-12 5.373-12 12 5.373 12 12 12 12-5.373 12-12zm-24 0c0-6.627-5.373-12-12-12S6 13.373 6 20s5.373 12 12 12 12-5.373 12-12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    transform: rotate(-0.5deg);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    transform: rotate(-0.3deg);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    transform: rotate(-0.2deg);
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: #f39c12;
    font-size: 1.2rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: rotate(0deg);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: rotate(0deg) translateY(-10px);
    border-color: #f39c12;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transform: rotate(-2deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
}

.project-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.project-card:nth-child(even) {
    transform: rotate(0.3deg);
}

.project-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.project-location {
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-5px);
    border-color: #f39c12;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card:nth-child(odd) {
    transform: rotate(0.2deg);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #f39c12;
}

.read-more {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
    border-left: 4px solid #f39c12;
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-card:nth-child(even) {
    transform: rotate(0.3deg);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author strong {
    color: #2c2c2c;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: #2c2c2c;
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 1rem;
    transform: rotate(-0.3deg);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input,
.form-row button {
    flex: 1;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    transform: rotate(-0.2deg);
}

.newsletter-form input:focus {
    outline: 2px solid #f39c12;
    transform: rotate(0deg);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: rotate(0deg) translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item:nth-child(even) {
    transform: rotate(0.2deg);
}

.contact-item i {
    color: #f39c12;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transform: rotate(0.3deg);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: rotate(0deg);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    transform: rotate(-0.1deg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    transform: rotate(0deg);
}

/* ===== FOOTER ===== */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f39c12;
    transform: rotate(-0.2deg);
}

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

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

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

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: #f39c12;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f39c12;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f39c12;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: rotate(-2deg);
}

.social-links a:hover {
    transform: rotate(0deg) scale(1.1);
    background: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* ===== COOKIE MANAGEMENT ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

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

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

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

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

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

.cookie-category span {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    display: block;
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2c2c2c 0%, #444 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
    transform: rotate(-0.3deg);
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #2c2c2c;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f39c12;
    transform: rotate(-0.2deg);
}

.legal-text h3 {
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #f39c12;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

/* Company Specific Styles */
.company-story {
    padding: 4rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transform: rotate(-0.1deg);
}

.timeline-item:nth-child(even) {
    transform: rotate(0.1deg);
}

.timeline-date {
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.company-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transform: rotate(1deg);
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-0.3deg);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mv-card:nth-child(even) {
    transform: rotate(0.3deg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: rotate(0deg) translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-card:nth-child(odd) {
    transform: rotate(0.2deg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-card:nth-child(even) {
    transform: rotate(0.2deg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
}

.team-role {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-0.1deg);
    transition: all 0.3s ease;
    border-left: 4px solid #f39c12;
}

.award-card:hover {
    transform: rotate(0deg) translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.award-card:nth-child(odd) {
    transform: rotate(0.1deg);
}

.award-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

/* Numbers Section */
.numbers-section {
    padding: 4rem 0;
    background: #2c2c2c;
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.number-card {
    text-align: center;
    padding: 2rem;
    transform: rotate(-0.3deg);
    transition: transform 0.3s ease;
}

.number-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.number-card:nth-child(even) {
    transform: rotate(0.3deg);
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 0.5rem;
    display: block;
}

/* Blog Page Styles */
.blog-articles {
    padding: 4rem 0;
    background: white;
}

.blog-articles .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.blog-card.featured .blog-img {
    height: 300px;
}

.blog-category {
    background: #f39c12;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 1rem;
}

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

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transform: rotate(-0.2deg);
}

.sidebar-widget h3 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    transform: rotate(0.1deg);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #2c2c2c;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: white;
    color: #f39c12;
}

.category-list span {
    color: #666;
    font-size: 0.8rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.popular-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.popular-content h4 a {
    color: #2c2c2c;
    text-decoration: none;
}

.popular-content h4 a:hover {
    color: #f39c12;
}

.popular-date {
    font-size: 0.8rem;
    color: #666;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Article Page Styles */
.article-page {
    padding: 120px 0 0;
    background: white;
}

.article-header {
    padding: 2rem 0 3rem;
    text-align: center;
    background: #f8f9fa;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #666;
}

.breadcrumb a {
    color: #f39c12;
    text-decoration: none;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.article-category {
    background: #f39c12;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-weight: 600;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.article-featured-image {
    text-align: center;
    margin: 3rem 0;
}

.article-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 400px;
    object-fit: cover;
}

.article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 2rem 0;
}

.article-body {
    max-width: none;
}

.article-body .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-body h2 {
    color: #2c2c2c;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f39c12;
}

.article-body h3 {
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.article-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.info-box {
    background: #e8f5e8;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: #2E7D2E;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.share-buttons,
.related-articles,
.cta-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transform: rotate(-0.2deg);
}

.share-buttons h4,
.related-articles h4,
.cta-box h4 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.social-share {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.email { background: #666; }

.related-article {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.related-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.related-content h5 a {
    color: #2c2c2c;
    text-decoration: none;
}

.related-content h5 a:hover {
    color: #f39c12;
}

.related-content span {
    font-size: 0.8rem;
    color: #666;
}

.cta-box {
    text-align: center;
    background: #2c2c2c;
    color: white;
}

.cta-box h4 {
    color: #f39c12;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c2c2c;
    text-decoration: none;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: rotate(-0.2deg);
}

.nav-link:hover {
    border-color: #f39c12;
    transform: rotate(0deg);
}

.nav-link.next {
    margin-left: auto;
    transform: rotate(0.2deg);
}

/* Thanks Page Styles */
.thanks-section {
    padding: 120px 0 80px;
    background: white;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
}

.thanks-section h1 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    transform: rotate(-0.3deg);
}

.thanks-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thanks-details {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    transform: rotate(-0.2deg);
}

.thanks-details h3 {
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transform: rotate(-0.1deg);
}

.step:nth-child(even) {
    transform: rotate(0.1deg);
}

.step-icon {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.step-content h4 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

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

.contact-reminder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    transform: rotate(0.2deg);
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.additional-info {
    margin: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transform: rotate(-0.2deg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: rotate(0deg) translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-card:nth-child(even) {
    transform: rotate(0.2deg);
}

.info-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.related-links {
    margin: 4rem 0;
}

.related-links h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: #2c2c2c;
    text-align: center;
    transition: all 0.3s ease;
    transform: rotate(-0.1deg);
    border: 2px solid transparent;
}

.link-card:hover {
    transform: rotate(0deg) translateY(-5px);
    background: white;
    border-color: #f39c12;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.link-card:nth-child(even) {
    transform: rotate(0.1deg);
}

.link-card i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
    display: block;
}

.link-card h4 {
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.link-card p {
    color: #666;
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .contact-grid,
    .newsletter-content,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .projects-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .article-content,
    .blog-articles .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-navigation {
        flex-direction: column;
    }

    .nav-link.next {
        margin-left: 0;
    }

    .next-steps,
    .links-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid,
    .values-grid,
    .team-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        margin-left: 0;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .thanks-section {
        padding: 100px 0 60px;
    }
}

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

    .hero {
        padding: 100px 0 60px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .service-card,
    .project-card,
    .blog-card,
    .testimonial-card {
        transform: none;
    }

    .service-card:hover,
    .project-card:hover,
    .blog-card:hover,
    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        text-align: left;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* ===== 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 better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #f39c12;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .project-card,
    .blog-card {
        border: 2px solid #2c2c2c;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .hero-buttons,
    .thanks-actions,
    .share-buttons,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
