/* Ahsap Ustasi - Woodworking Website Styles */
/* Wood Workshop Theme with Copper Accents */

:root {
    --wood-dark: #2a1810;
    --wood-medium: #4a3228;
    --wood-light: #6b4c3a;
    --wood-grain: #3d2518;
    --copper-main: #b87333;
    --copper-light: #cd8544;
    --copper-dark: #8b5a2b;
    --cream: #f5ebe0;
    --cream-light: #faf6f1;
    --text-light: #e8ddd4;
    --text-dark: #1a0f0a;
    --shadow-color: rgba(26, 15, 10, 0.4);
    --overlay-dark: rgba(42, 24, 16, 0.95);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--wood-dark);
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(61, 37, 24, 0.3) 2px,
            rgba(61, 37, 24, 0.3) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(74, 50, 40, 0.2) 50px,
            rgba(74, 50, 40, 0.2) 51px
        ),
        linear-gradient(
            180deg,
            var(--wood-dark) 0%,
            var(--wood-grain) 25%,
            var(--wood-dark) 50%,
            var(--wood-medium) 75%,
            var(--wood-dark) 100%
        );
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

/* Wood Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, var(--wood-dark) 0%, rgba(42, 24, 16, 0.98) 100%);
    border-bottom: 3px solid var(--copper-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cream);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-icon {
    box-shadow: 0 5px 20px rgba(184, 115, 51, 0.6);
    transform: rotate(-5deg);
}

.logo:hover .logo-text {
    text-shadow: 0 0 10px rgba(184, 115, 51, 0.5);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(184, 115, 51, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

/* Carpenter Hammer SVG Icon */
.logo-icon::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5ebe0'%3E%3Cpath d='M2 19.63L13.43 8.2l-.71-.7 1.42-1.43 3.54 3.54-1.42 1.41-.71-.7L4.17 21.8c-.6.6-1.57.6-2.17 0-.6-.6-.6-1.57 0-2.17zM18.37 3.54c.78-.78 2.05-.78 2.83 0 .78.78.78 2.05 0 2.83l-2.12 2.12-2.83-2.83 2.12-2.12z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo-text span {
    color: var(--copper-main);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-desktop > a,
.nav-desktop > .dropdown > a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-desktop a:hover {
    background: var(--wood-medium);
    color: var(--copper-light);
}

.nav-desktop a.active {
    background: var(--copper-main);
    color: var(--cream);
}

.nav-desktop .dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-desktop .dropdown > a {
    display: block;
}

.nav-desktop .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--wood-dark);
    border: 1px solid var(--copper-main);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 25px var(--shadow-color);
    padding: 8px 0;
    z-index: 1001;
}

.nav-desktop .dropdown:hover .dropdown-content {
    display: block;
}

.nav-desktop .dropdown-content a {
    display: block;
    padding: 10px 20px;
    border-radius: 0;
    color: var(--text-light);
    text-decoration: none;
}

.nav-desktop .dropdown-content a:hover {
    background: var(--wood-medium);
    color: var(--copper-light);
    text-decoration: none;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--copper-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--wood-dark);
    border-right: 3px solid var(--copper-main);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

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

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--wood-medium);
    margin-bottom: 10px;
}

.nav-mobile-close {
    background: none;
    border: none;
    color: var(--copper-main);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.nav-mobile a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 14px 25px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: var(--wood-medium);
    border-left-color: var(--copper-main);
    color: var(--copper-light);
}

.nav-mobile .nav-section {
    padding: 10px 25px 5px;
    font-size: 0.8rem;
    color: var(--copper-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(42, 24, 16, 0.9), rgba(61, 37, 24, 0.8));
    border-bottom: 2px solid var(--copper-dark);
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--cream);
    text-shadow: 2px 2px 4px var(--shadow-color);
    position: relative;
}

.hero h1 span {
    color: var(--copper-main);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    color: var(--cream);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 115, 51, 0.5);
}

/* Page Header */
.page-header {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(42, 24, 16, 0.95), rgba(61, 37, 24, 0.9));
    border-bottom: 2px solid var(--copper-dark);
}

.page-header h1 {
    font-size: 2.4rem;
    color: var(--cream);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}


/* Main Content */
main {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.content-section {
    background: linear-gradient(135deg, rgba(74, 50, 40, 0.6), rgba(42, 24, 16, 0.8));
    border: 1px solid var(--wood-light);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px var(--shadow-color);
    backdrop-filter: blur(5px);
}

.content-section h2 {
    color: var(--copper-main);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--copper-dark);
}

.content-section h3 {
    color: var(--cream);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.content-section ul,
.content-section ol {
    margin: 15px 0 15px 25px;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 8px;
}

/* Project Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: linear-gradient(145deg, var(--wood-medium), var(--wood-dark));
    border: 1px solid var(--wood-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px var(--shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--copper-dark), var(--copper-main), var(--copper-dark));
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px var(--shadow-color),
        0 0 30px rgba(184, 115, 51, 0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--copper-dark);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--copper-main);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--copper-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--cream);
}

/* Why Choose Us Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.tool-item {
    background: linear-gradient(145deg, var(--wood-medium), var(--wood-grain));
    border: 1px solid var(--wood-light);
    border-radius: 10px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-color);
    min-height: 180px;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--copper-main);
    box-shadow: 0 12px 35px var(--shadow-color);
}

.tool-item.large,
.tool-item.wide,
.tool-item.tall {
    grid-column: auto;
    grid-row: auto;
}

.tool-item h4 {
    color: var(--copper-main);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.tool-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(42, 24, 16, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th {
    background: linear-gradient(135deg, var(--copper-dark), var(--copper-main));
    color: var(--cream);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 14px 15px;
    border-bottom: 1px solid var(--wood-medium);
    color: var(--text-light);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(184, 115, 51, 0.1);
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.checklist li {
    padding: 12px 15px 12px 45px;
    margin-bottom: 10px;
    background: rgba(74, 50, 40, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--copper-main);
    position: relative;
    color: var(--text-light);
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--copper-main);
    border-radius: 4px;
    background: transparent;
}

.checklist li.checked::before {
    background: var(--copper-main);
}

.checklist li.checked::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid var(--cream);
    border-width: 0 2px 2px 0;
}

/* Process Steps */
.process-steps {
    counter-reset: step-counter;
    margin: 30px 0;
}

.process-step {
    position: relative;
    padding: 25px 25px 25px 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(74, 50, 40, 0.6), rgba(42, 24, 16, 0.4));
    border-radius: 10px;
    border: 1px solid var(--wood-light);
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
}

.process-step h4 {
    color: var(--copper-main);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ Accordion */
.faq-list {
    margin: 30px 0;
}

.faq-item {
    background: rgba(74, 50, 40, 0.5);
    border: 1px solid var(--wood-light);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 50px 20px 25px;
    cursor: pointer;
    color: var(--cream);
    font-weight: 600;
    position: relative;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(184, 115, 51, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--copper-main);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text-light);
    border-top: 1px solid var(--wood-medium);
    padding-top: 20px;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-item {
    background: linear-gradient(145deg, var(--wood-medium), var(--wood-dark));
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--wood-light);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--copper-main);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-item h4 {
    color: var(--copper-main);
    margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--copper-light);
}

/* Form Styles */
.form-container {
    background: linear-gradient(145deg, rgba(74, 50, 40, 0.7), rgba(42, 24, 16, 0.9));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--wood-light);
    max-width: 600px;
    margin: 40px auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label .required {
    color: var(--copper-main);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(42, 24, 16, 0.8);
    border: 2px solid var(--wood-light);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--copper-main);
    box-shadow: 0 0 15px rgba(184, 115, 51, 0.3);
}

.form-control::placeholder {
    color: rgba(232, 221, 212, 0.4);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--copper-main);
    margin-top: 3px;
    flex-shrink: 0;
}

.form-checkbox span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--copper-main);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    border: none;
    border-radius: 8px;
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 115, 51, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.form-group.error .form-error {
    display: block;
}

/* Push Notification */
.push-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    color: var(--cream);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 350px;
}

.push-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.push-notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.push-notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.push-notification-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5ebe0'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
}

.push-notification-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.push-notification-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.push-notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.push-notification-close:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wood-dark);
    border-top: 3px solid var(--copper-main);
    padding: 25px;
    z-index: 9998;
    box-shadow: 0 -10px 40px var(--shadow-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--copper-main);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-text a {
    color: var(--copper-light);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--copper-main), var(--copper-dark));
    color: var(--cream);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.btn-cookie-necessary {
    background: transparent;
    border: 2px solid var(--copper-main);
    color: var(--copper-main);
}

.btn-cookie-necessary:hover {
    background: var(--copper-main);
    color: var(--cream);
}

.btn-cookie-decline {
    background: transparent;
    border: 2px solid var(--wood-light);
    color: var(--text-light);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--wood-grain), var(--wood-dark));
    border-top: 3px solid var(--copper-main);
    padding: 60px 20px 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: var(--copper-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--copper-dark);
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--copper-light);
}

.footer-section p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid var(--wood-medium);
    padding-top: 25px;
    text-align: center;
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sitemap Page */
.sitemap-section {
    margin-bottom: 30px;
}

.sitemap-section h3 {
    color: var(--copper-main);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--copper-dark);
}

.sitemap-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.sitemap-list li a {
    display: block;
    padding: 12px 15px;
    background: rgba(74, 50, 40, 0.4);
    border-radius: 6px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sitemap-list li a:hover {
    background: rgba(74, 50, 40, 0.7);
    border-left-color: var(--copper-main);
    color: var(--copper-light);
}

/* Legal Pages */
.legal-content h2 {
    color: var(--copper-main);
    font-size: 1.5rem;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--copper-dark);
}

.legal-content h3 {
    color: var(--cream);
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.legal-content p,
.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--copper-main);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        padding-left: 70px;
    }
    
    .process-step::before {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        left: 15px;
    }
    
    .form-container {
        padding: 25px;
        margin: 20px;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .push-notification {
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(-150%);
        top: auto;
        bottom: 20px;
    }
    
    .push-notification.show {
        transform: translateY(0);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .data-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 15px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .content-section {
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .btn-cookie {
        width: 100%;
    }
}

/* Image placeholders for cards */
.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--wood-medium), var(--wood-grain));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--copper-dark);
    position: relative;
    overflow: hidden;
}

.card-image-placeholder::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b87333'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-copper {
    color: var(--copper-main);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}
