/* CSS Variables */
:root {
    --bg-color: #0D0C0C;
    --primary-color: #1E1B1A;
    --accent-color: #FF9000;
    --secondary-color: #A65E2E;
    --text-color: #EAE6E3;
    --soft-accent: #3C342F;
    --contrast-color: #C12222;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff7b00;
}

/* Navigation */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 144, 0, 0.1);
    transition: var(--transition);
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-logo img {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-logo .accent {
    color: var(--accent-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: rgba(255, 144, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--primary-color) 100%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.float-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

.float-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.accent-text {
    color: var(--accent-color);
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 144, 0, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--soft-accent);
}

.btn-secondary:hover {
    background: var(--soft-accent);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.3), rgba(166, 94, 46, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 2rem;
    background: var(--primary-color);
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 144, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 144, 0, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 144, 0, 0.1);
    border-color: rgba(255, 144, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Preview */
.services-preview {
    padding: 100px 2rem;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--primary-color);
    padding: 3rem 2rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 144, 0, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 144, 0, 0.3);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 2rem;
    background: var(--primary-color);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-content > p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 144, 0, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 144, 0, 0.1);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.process-step p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Process Visual */
.process-visual {
    position: relative;
    height: 300px;
    order: -1;
}

.process-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.process-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 144, 0, 0.8), 
        rgba(166, 94, 46, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.process-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.process-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 100px 2rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 144, 0, 0.02) 25%, 
        rgba(255, 144, 0, 0.02) 50%, 
        transparent 50%, 
        transparent 75%, 
        rgba(255, 144, 0, 0.02) 75%);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 144, 0, 0.1);
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-card p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: var(--text-color);
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 144, 0, 0.3);
    color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--soft-accent);
}

.cta-buttons .btn-secondary:hover {
    background: var(--soft-accent);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 60px 2rem 20px;
    border-top: 1px solid rgba(255, 144, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand h3 img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-brand .accent {
    color: var(--accent-color);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-column a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.6;
}

.footer-column i {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-accent);
    opacity: 0.6;
}

/* Page Specific Styles */
.page-header {
    padding: 150px 2rem 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="%23FF9000" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
    animation: float 30s linear infinite;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-content {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.content-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 25px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--soft-accent);
    border: 2px solid transparent;
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 144, 0, 0.05);
}

.form-control::placeholder {
    color: rgba(234, 230, 227, 0.5);
}

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

/* Service Cards Extended */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail-card {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 144, 0, 0.3);
    box-shadow: var(--shadow);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
}

.service-detail-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-detail-card p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    opacity: 0.8;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Service Card Actions */
.service-card-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 144, 0, 0.1);
    text-align: center;
}

.service-card-actions .btn-primary {
    padding: 12px 30px;
    font-size: 0.95rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

.service-card-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.4);
    color: white;
}

.service-card-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 12, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 144, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 144, 0, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-section {
        padding: 100px 1rem 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .stats-section {
        padding: 60px 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .services-preview {
        padding: 60px 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 40px 1rem 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4 {
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
    }
    
    .footer-column a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
    
    .footer-column p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .newsletter-form {
        margin-top: 1.5rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-input {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 50px;
        border-radius: 25px;
        font-size: 1rem;
    }
    
    .newsletter-checkbox {
        margin-bottom: 1.5rem;
    }
    
    .newsletter-checkbox .checkbox-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .newsletter-success {
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 120px 1rem 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .page-content {
        padding: 60px 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-control {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .service-card-actions .btn-primary {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 60px 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
    }
    
    /* Process Section Mobile Styles */
    .process-section {
        padding: 60px 1rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-content h2 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .process-content > p {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
    }
    
    .process-step:hover {
        transform: translateY(-5px);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    .process-step h4 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .process-step p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .process-visual {
        height: 250px;
        order: -1;
    }
    
    .process-image {
        height: 100%;
    }
    
    .overlay-content i {
        font-size: 2rem;
    }
    
    .overlay-content span {
        font-size: 0.9rem;
    }
    
    .visual-circle {
        width: 120px;
        height: 120px;
    }
    
    .visual-line {
        height: 100px;
    }
    
    .visual-dots span {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 0.5rem;
    }
    
    .hero-section {
        padding: 80px 0.5rem 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 40px 0.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .services-preview {
        padding: 40px 0.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 30px 0.5rem 15px;
    }
    
    .footer-column h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-column a {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .footer-column p {
        font-size: 0.95rem;
    }
    
    .newsletter-input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .newsletter-btn {
        height: 45px;
        font-size: 0.95rem;
    }
    
    .newsletter-checkbox .checkbox-text {
        font-size: 0.85rem;
    }
    
    .newsletter-success {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 100px 0.5rem 50px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 40px 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-control {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .service-card-actions .btn-primary {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    /* Process Section Small Mobile Styles */
    .process-section {
        padding: 40px 0.5rem;
    }
    
    .process-content h2 {
        font-size: 1.8rem;
    }
    
    .process-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1.25rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .process-step:hover {
        transform: translateY(-3px);
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    
    .process-step h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .process-visual {
        height: 200px;
    }
    
    .overlay-content i {
        font-size: 1.8rem;
    }
    
    .overlay-content span {
        font-size: 0.85rem;
    }
    
    .visual-circle {
        width: 100px;
        height: 100px;
    }
    
    .visual-line {
        height: 80px;
    }
    
    .visual-dots {
        gap: 6px;
    }
    
    .visual-dots span {
        width: 6px;
        height: 6px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 144, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Additional Styles for Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    background: rgba(255, 144, 0, 0.05);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.method-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.method-content p {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.method-content span {
    font-size: 0.875rem;
    opacity: 0.7;
}

.consultation-card {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.consultation-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-form-section {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 10px;
    transition: var(--transition);
}

.checkbox-item:hover {
    background: rgba(255, 144, 0, 0.05);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--soft-accent);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.checkbox-item.privacy {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 144, 0, 0.05);
    border-radius: 10px;
}

.checkbox-item.privacy a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-item.privacy a:hover {
    text-decoration: underline;
}

/* FAQ Styles */
.faq-container {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 144, 0, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 144, 0, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
}

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

.testimonial-card {
    background: var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.875rem;
    opacity: 0.7;
}

.author-rating {
    color: var(--accent-color);
}

/* Office Hours */
.office-hours-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.hours-list {
    margin: 2rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 144, 0, 0.1);
}

.hours-item .day {
    font-weight: 600;
}

.hours-item .time {
    color: var(--accent-color);
    font-weight: 600;
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    font-style: italic;
}

.emergency-contact {
    background: rgba(255, 144, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.emergency-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 1rem;
}

.emergency-number:hover {
    color: var(--secondary-color);
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-color);
}

.legal-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.legal-section strong {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-highlight {
    background: rgba(255, 144, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.legal-highlight p {
    margin-bottom: 0;
}

.contact-info-legal {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.contact-info-legal h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
}

/* Table Styles for Legal Pages */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
}

.legal-table th {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.legal-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 144, 0, 0.1);
}

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

/* Responsive Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: var(--primary-color);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #ff7b00;
}

/* Mobile Table Styles */
@media (max-width: 768px) {
    .legal-table {
        min-width: 600px; /* Ensure minimum width for readability */
        font-size: 0.875rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    .legal-table th {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }
    
    .legal-table td {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-table {
        min-width: 500px;
        font-size: 0.8rem;
    }
    
    .legal-table th,
    .legal-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .legal-table th {
        font-size: 0.75rem;
    }
    
    .legal-table td {
        font-size: 0.75rem;
    }
}

/* Alternative Mobile Table Layout */
@media (max-width: 600px) {
    .legal-table-mobile {
        display: block;
        width: 100%;
    }
    
    .legal-table-mobile thead {
        display: none;
    }
    
    .legal-table-mobile tbody {
        display: block;
        width: 100%;
    }
    
    .legal-table-mobile tr {
        display: block;
        margin-bottom: 1rem;
        background: var(--primary-color);
        border-radius: 10px;
        padding: 1rem;
        border: 1px solid rgba(255, 144, 0, 0.1);
    }
    
    .legal-table-mobile td {
        display: block;
        text-align: left;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 144, 0, 0.1);
        position: relative;
        padding-left: 120px;
    }
    
    .legal-table-mobile td:last-child {
        border-bottom: none;
    }
    
    .legal-table-mobile td::before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 0;
        width: 110px;
        font-weight: 600;
        color: var(--accent-color);
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--primary-color);
    padding: 1rem 2rem;
    margin-top: 80px;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--accent-color);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--soft-accent);
}

/* Print Styles */
@media print {
    .navbar-custom,
    .footer,
    .floating-elements {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page-content {
        padding: 0 !important;
    }
    
    .legal-content {
        max-width: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --bg-color: #000000;
        --primary-color: #111111;
        --text-color: #FFFFFF;
        --accent-color: #FFAA00;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements,
    .float-element {
        animation: none !important;
    }
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.form-control:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
    transition: var(--transition);
}

.skip-link:focus {
    top: 6px;
}

/* Additional Responsive Improvements */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .office-hours-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        padding: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-table {
        font-size: 0.875rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Error States */
.form-error {
    border-color: var(--contrast-color) !important;
    background: rgba(193, 34, 34, 0.1);
}

.error-message {
    color: var(--contrast-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Success States */
.form-success {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.1);
}

.success-message {
    color: #22c55e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Testimonials Page Styles */
.featured-testimonial {
    background: linear-gradient(135deg, #1E1B1A 0%, #3C342F 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.featured-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF9000" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FF9000" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23FF9000" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 3rem;
    color: #FF9000;
    margin-bottom: 1.5rem;
}

.featured-testimonial blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #EAE6E3;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FF9000;
}

.author-info h4 {
    color: #EAE6E3;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.author-info span {
    color: #A65E2E;
    font-size: 0.9rem;
}

.rating {
    color: #FF9000;
    margin-top: 0.5rem;
}

.testimonial-card {
    background: var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9000, #A65E2E);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quote-icon-small {
    color: #FF9000;
    font-size: 1.5rem;
}

.testimonial-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-footer h5 {
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.testimonial-footer span {
    color: var(--secondary-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Case Studies */
.case-studies {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.case-study:nth-child(even) {
    direction: rtl;
}

.case-study:nth-child(even) .case-study-content {
    direction: ltr;
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-study-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.5rem;
}

.case-study-category {
    background: #FF9000;
    color: #1E1B1A;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-study-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF9000;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #A65E2E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.case-study-results h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.case-study-results ul {
    list-style: none;
    padding: 0;
}

.case-study-results li {
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.case-study-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.metric-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 144, 0, 0.3);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

/* FAQ Page Styles */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.faq-category-btn {
    background: var(--primary-color);
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-category-btn:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.faq-category-btn i {
    font-size: 1.2rem;
}

.faq-section {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section.active {
    display: block;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1E1B1A;
}

.faq-item {
    background: var(--primary-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 144, 0, 0.05);
}

.faq-question h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 144, 0, 0.02);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.faq-answer ul {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #1E1B1A 0%, #3C342F 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.contact-cta h2 {
    color: #EAE6E3;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #A65E2E;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .case-study:nth-child(even) {
        direction: ltr;
    }
    
    .case-study-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-category-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .featured-testimonial {
        padding: 2rem;
    }
    
    .featured-testimonial blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .case-study {
        padding: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    padding-top: 10vh;
    /* Temporary debug styles */
    background: rgba(255, 0, 0, 0.1);
}

.cookie-popup.show {
    display: flex !important;
    animation: cookieFadeIn 0.3s ease-out;
    /* Temporary debug styles */
    background: rgba(0, 255, 0, 0.1);
}

.cookie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: overlayFadeIn 0.3s ease-out;
}

.cookie-container {
    position: relative;
    background: var(--primary-color);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 144, 0, 0.2);
    animation: cookieSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 144, 0, 0.1);
}

.cookie-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-header h3 i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.cookie-close:hover {
    background: rgba(255, 144, 0, 0.1);
    color: var(--accent-color);
    transform: scale(1.1);
}

.cookie-content {
    padding: 2rem;
}

.cookie-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1rem;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-type {
    background: rgba(255, 144, 0, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 144, 0, 0.1);
    transition: var(--transition);
}

.cookie-type:hover {
    background: rgba(255, 144, 0, 0.08);
    border-color: rgba(255, 144, 0, 0.2);
    transform: translateY(-2px);
}

.cookie-type-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-type-info h4 {
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-type-info h4 i {
    color: var(--accent-color);
    font-size: 1rem;
}

.cookie-type-info p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    flex-shrink: 0;
}

.toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background: var(--soft-accent);
    border-radius: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label:hover {
    background: rgba(255, 144, 0, 0.3);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .toggle-label {
    background: var(--accent-color);
}

input[type="checkbox"]:checked + .toggle-label .toggle-slider {
    transform: translateX(24px);
    background: white;
}

input[type="checkbox"]:disabled + .toggle-label {
    background: var(--accent-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cookie-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 144, 0, 0.1);
}

.cookie-links a:hover {
    background: rgba(255, 144, 0, 0.2);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 144, 0, 0.1);
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ff7b00, #8b4a1f);
    color: white;
}

.cookie-btn-primary {
    background: var(--soft-accent);
    color: var(--text-color);
    border: 2px solid rgba(255, 144, 0, 0.3);
}

.cookie-btn-primary:hover {
    background: rgba(255, 144, 0, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--soft-accent);
}

.cookie-btn-secondary:hover {
    background: var(--soft-accent);
    border-color: var(--contrast-color);
    color: var(--contrast-color);
}

/* Animations */
@keyframes cookieFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design for Cookie Popup */
@media (max-width: 768px) {
    .cookie-popup {
        padding: 0.5rem;
    }
    
    .cookie-container {
        max-height: 95vh;
        border-radius: 20px;
    }
    
    .cookie-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .cookie-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-content {
        padding: 1.5rem;
    }
    
    .cookie-type-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cookie-type-info h4 {
        font-size: 1rem;
    }
    
    .cookie-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .cookie-content {
        padding: 1rem;
    }
    
    .cookie-type {
        padding: 1rem;
    }
    
    .cookie-actions {
        padding: 1rem;
    }
}

/* Cookie Banner (Alternative for mobile) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-top: 2px solid var(--accent-color);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-banner-text h4 {
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.cookie-banner-text p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cookie-banner-btn.accept {
    background: var(--accent-color);
    color: white;
}

.cookie-banner-btn.accept:hover {
    background: #ff7b00;
    transform: translateY(-1px);
}

.cookie-banner-btn.settings {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--soft-accent);
}

.cookie-banner-btn.settings:hover {
    background: var(--soft-accent);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
    }
    
    .cookie-banner-actions {
        justify-content: center;
    }
}

/* Newsletter Form Styles */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--soft-accent);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 144, 0, 0.05);
}

.newsletter-input::placeholder {
    color: rgba(234, 230, 227, 0.5);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

.newsletter-btn i {
    font-size: 1rem;
}

.newsletter-checkbox {
    margin-bottom: 1rem;
}

.newsletter-checkbox .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    transition: none;
    margin: 0;
}

.newsletter-checkbox .checkbox-item:hover {
    background: transparent;
}

.newsletter-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--soft-accent);
    border-radius: 3px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.newsletter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.newsletter-checkbox .checkbox-text {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.4;
}

.newsletter-checkbox .checkbox-text a {
    color: var(--accent-color);
    text-decoration: none;
    padding: 0;
    opacity: 1;
}

.newsletter-checkbox .checkbox-text a:hover {
    text-decoration: underline;
    transform: none;
}

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-success i {
    font-size: 1.1rem;
    color: #22c55e;
}

/* Newsletter Error States */
.newsletter-input.form-error {
    border-color: var(--contrast-color);
    background: rgba(193, 34, 34, 0.1);
}

.newsletter-error {
    color: var(--contrast-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

