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

:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #e8f4f8;
    --dark: #0d1f2d;
    --light: #ffffff;
    --gray: #6b7c8a;
    --gray-light: #f5f7f9;
    --success: #2a9d5c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--light);
    transition: 0.3s;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    z-index: 999;
}

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

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: padding-left 0.3s;
}

.nav-menu a:hover {
    padding-left: 10px;
    color: var(--secondary);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.03" width="50" height="50"/><rect fill="%23ffffff" fill-opacity="0.03" x="50" y="50" width="50" height="50"/></svg>');
    transform: rotate(15deg);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--light);
    line-height: 1.2;
    max-width: 700px;
}

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

.hero-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #d4ad32;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201,162,39,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
}

.btn-outline:hover {
    background: var(--light);
    color: var(--primary);
}

.btn-dark {
    background: var(--primary);
    color: var(--light);
}

.btn-dark:hover {
    background: var(--dark);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark);
    color: var(--light);
}

.section-gray {
    background: var(--gray-light);
}

.section-accent {
    background: var(--accent);
}

.section-gradient {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .section-header h2 {
    color: var(--light);
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* Problem Section */
.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1 1 280px;
    background: var(--light);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    color: #c0392b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.problem-card p {
    color: var(--gray);
}

/* Story Section */
.story-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1 1 400px;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.story-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--secondary);
    border-radius: 15px;
    z-index: -1;
}

.story-content {
    flex: 1 1 400px;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

.story-highlight {
    background: var(--accent);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid var(--primary);
}

.story-highlight p {
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--secondary);
}

.benefit-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    flex: 1 1 350px;
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-body {
    padding: 25px;
}

.service-body h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 300px;
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Trust Section */
.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--secondary);
}

.trust-item h4 {
    color: var(--light);
    font-size: 1.1rem;
}

.trust-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-item {
    flex: 1 1 250px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-large {
    flex: 2 1 500px;
}

/* Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: var(--gray-light);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s;
}

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

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

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--gray);
}

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

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-text h4 {
    color: var(--primary);
    font-size: 0.95rem;
}

.contact-text p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    flex: 1 1 400px;
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: var(--dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.4s;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    color: var(--light);
    font-size: 1rem;
}

.sticky-cta .btn {
    padding: 12px 30px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-brand {
    font-size: 1.5rem;
    color: var(--light);
    font-weight: 700;
    margin-bottom: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.cookie-banner p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.cookie-accept {
    background: var(--primary);
    color: var(--light);
}

.cookie-accept:hover {
    background: var(--dark);
}

.cookie-reject {
    background: var(--gray-light);
    color: var(--gray);
}

.cookie-reject:hover {
    background: #ddd;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
    background: var(--light);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--light);
}

.thanks-content h1 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 2rem;
}

.thanks-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.thanks-service {
    background: var(--accent);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.thanks-service span {
    color: var(--primary);
    font-weight: 600;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
}

.urgency-banner span {
    display: inline-block;
    margin: 0 10px;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--light);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Inline CTA */
.inline-cta {
    background: var(--accent);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.inline-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: var(--light);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.about-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 280px;
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary);
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--light);
}

.team-member h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--secondary);
    font-size: 0.9rem;
}

.team-member p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0 60px;
}

.legal-page h1 {
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.legal-page h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-page p {
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
    color: var(--gray);
}

.legal-page li {
    margin-bottom: 8px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--light);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.contact-hero p {
    color: rgba(255,255,255,0.8);
}

.contact-page-wrapper {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-main {
    flex: 1 1 400px;
}

.contact-sidebar {
    flex: 1 1 300px;
}

.contact-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
}

.hours-item span:first-child {
    font-weight: 500;
    color: var(--primary);
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1 {
    color: var(--light);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.services-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-light);
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-image {
    flex: 1 1 400px;
    height: 300px;
    background: var(--gray-light);
    border-radius: 15px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1 1 400px;
}

.service-detail-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.service-feature::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.service-price-tag {
    background: var(--accent);
    display: inline-block;
    padding: 15px 25px;
    border-radius: 10px;
}

.service-price-tag span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .story-image::after {
        display: none;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .sticky-cta p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-form-wrapper {
        padding: 25px;
    }

    .legal-page {
        padding: 80px 0 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }
}
