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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

[class*="col-"] {
    padding: 0 15px;
}

.hidden {
    display: none !important;
}

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

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-color: #3498db;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
    border-color: #95a5a6;
}

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

.btn-outline {
    background-color: white;
    color: #3498db;
    border-color: #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px 0;
    margin-top: 75px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* ===== SECTION CONTENT STYLES ===== */
.section-content {
    padding: 20px 0;
}

.section-icon {
    margin-bottom: 30px;
}

.section-icon img {
    width: 60px;
    height: 60px;
    filter: hue-rotate(210deg) saturate(1.2);
}

.section-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: translateY(-5px);
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    filter: hue-rotate(210deg) saturate(1.2);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    filter: hue-rotate(210deg) saturate(1.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* ===== STATS ===== */
.stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars img {
    width: 20px;
    height: 20px;
    filter: hue-rotate(45deg) saturate(1.5);
}

.testimonial-card p {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card cite {
    color: #3498db;
    font-weight: 600;
    font-style: normal;
}

.testimonial-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item span {
    color: #bdc3c7;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.cookie-categories {
    margin-bottom: 30px;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    background-color: #f8f9fa;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-submit {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== CONTACT CARDS ===== */
.contact-info-section {
    padding: 60px 0;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-icon {
    margin-bottom: 25px;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    filter: hue-rotate(210deg) saturate(1.2);
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card a {
    color: #3498db;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 15px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.legal-document {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-meta {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.legal-meta p {
    margin-bottom: 10px;
    color: #7f8c8d;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #2c3e50;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-section li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #2c3e50;
}

.legal-section a {
    color: #3498db;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
    min-height: calc(100vh - 75px);
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;

}

.thank-you-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.thank-you-details {
    background: white;
    border-radius: 15px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.thank-you-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thank-you-text h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2rem;
}

.next-steps {
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.contact-reminder {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-reminder h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.urgent-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.urgent-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.urgent-contact img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-hours {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 10px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: #3498db;
}

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

/* About Page */
.mission-section {
    background-color: #f8f9fa;
}

.values-section {
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    margin-bottom: 25px;
}

.value-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    filter: hue-rotate(210deg) saturate(1.2);
}

.value-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.achievements-section {
    background-color: #f8f9fa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.achievement-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
}

.achievement-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.why-choose-section {
    padding: 80px 0;
}

.reason-list {
    margin-top: 30px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background-color: #e9ecef;
    transform: translateX(10px);
}

.reason-icon img {
    width: 40px;
    height: 40px;
    filter: hue-rotate(210deg) saturate(1.2);
}

.reason-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.reason-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Services Page */
.service-detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-image-container {
    position: relative;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(52, 152, 219, 0.9);
    padding: 15px;
    border-radius: 50%;
}

.service-icon-overlay img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.service-detail-content {
    padding: 30px;
}

.service-detail-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-detail-content p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-features img {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    filter: hue-rotate(210deg) saturate(1.2);
}

.process-details-section {
    background-color: #f8f9fa;
}

.process-details {
    margin-top: 50px;
}

.process-detail-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.process-detail-item.reverse {
    flex-direction: row-reverse;
}

.process-detail-image {
    flex: 1;
}

.process-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.process-detail-content {
    flex: 1;
    position: relative;
}

.process-step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.process-detail-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
    margin-left: 50px;
}

.process-detail-content p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.process-steps {
    list-style: none;
    margin-top: 25px;
}

.process-steps li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.nice-areas-section {
    padding: 80px 0;
}

.nice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.area-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-content {
    padding: 25px;
}

.area-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.area-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.area-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-feature {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.legal-services-section {
    background-color: #f8f9fa;
}

.legal-services-list {
    margin-top: 30px;
}

.legal-service-item {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.legal-service-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-service-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.legal-documents-showcase {
    position: relative;
}

.legal-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.legal-overlay-images {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.legal-overlay-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Team Page */
.team-intro {
    padding: 60px 0;
}

.team-members {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-image-container {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    background: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.1);
}

.team-social img {
    width: 20px;
    height: 20px;
    filter: hue-rotate(210deg) saturate(1.2);
}

.team-content {
    padding: 30px;
}

.team-content h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.team-position {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-expertise span {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-values {
    padding: 80px 0;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-item .value-icon {
    margin-bottom: 20px;
}

.value-item .value-icon img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    filter: hue-rotate(210deg) saturate(1.2);
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.team-stats {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-large {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-large .stat-label {
    color: #2c3e50;
    font-weight: 600;
}

/* Contact Page */
.contact-sidebar {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.consultation-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.consultation-info p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.consultation-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item img {
    width: 16px;
    height: 16px;
    filter: hue-rotate(210deg) saturate(1.2);
}

.emergency-contact {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.emergency-contact h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.emergency-contact p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.emergency-phone img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Resources and Additional Sections */
.resources-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.resource-icon {
    margin-bottom: 20px;
}

.resource-icon img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    filter: hue-rotate(210deg) saturate(1.2);
}

.resource-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-section {
    padding: 80px 0;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    flex: 1;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    filter: hue-rotate(45deg) saturate(1.5);
}

.testimonial-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-quote cite {
    color: #3498db;
    font-weight: 600;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}
