/* Gavfull Temizlik Hizmetleri - Custom Styles
-------------------------------------------------- */

:root {
    --primary: #4A7C59;
    --secondary: #F9C784;
    --accent: #F26A4F;
    --text-dark: #2C3639;
    --text-light: #F8F9FA;
    --bg-light: #FDFAF6;
    --bg-dark: #E4DFDA;
    --border-color: #C8B8A9;
    --error: #D64045;
    --success: #6A994E;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    background-color: transparent;
}

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

.btn-urgent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
}

.btn-urgent:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-urgent-large {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
}

.btn-urgent-large:hover {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}


.paper-container {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.paper-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: var(--border-color);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.6;
}

.paper-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--border-color);
    clip-path: polygon(0 100%, 0 50%, 50% 100%);
    opacity: 0.4;
}

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

.section-header h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
}


.header {
    background-color: var(--bg-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary);
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.phone-link i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.phone-link:hover {
    color: var(--accent);
}


.hero {
    padding: 5rem 0 4rem;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--secondary);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: var(--primary);
    opacity: 0.1;
    border-radius: 0 100% 0 0;
}

.hero-content {
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p.lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}


.services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.service-card ul {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    flex-grow: 1;
}


.why-choose-us {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}


.process {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}


.equipment, .eco-friendly {
    padding: 5rem 0;
}

.equipment {
    background-color: var(--bg-dark);
}

.equipment-image img, .eco-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.equipment-content, .eco-content {
    padding: 2rem;
}

.equipment-content h2, .eco-content h2 {
    margin-bottom: 1.5rem;
}

.equipment-content ul, .eco-content ul {
    padding-left: 0;
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.equipment-content ul li, .eco-content ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.equipment-content ul li i, .eco-content ul li i {
    color: var(--primary);
    margin-right: 1rem;
    min-width: 20px;
}


.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.accordion-item {
    background-color: transparent;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 500;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: var(--text-light);
}

.accordion-body {
    background-color: white;
    padding: 1.5rem;
}


.contact-form {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(74, 124, 89, 0.25);
}

.choices__inner {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    min-height: 46px;
}

.choices__input {
    background-color: white;
}

.form-check-label {
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}


.contact-info {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #6c757d;
}


.footer {
    background-color: var(--bg-dark);
    padding: 4rem 0 0;
    color: var(--text-dark);
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-links ul {
    padding-left: 0;
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    color: var(--primary);
    margin-right: 1rem;
    min-width: 16px;
}

.footer-contact p a {
    color: var(--text-dark);
}

.footer-contact p a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    padding: 2rem 0;
}

.copyright p {
    margin-bottom: 0;
}

.footer-legal a {
    color: var(--text-dark);
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary);
}


.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 8px 8px 0 0;
    padding: 1.25rem 1.5rem;
}

.modal-title {
    color: var(--text-light);
}

.modal-header .btn-close {
    color: var(--text-light);
    opacity: 1;
}

.modal-body {
    padding: 2rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 1.5rem 0;
    z-index: 1050;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    display: none;
    border-top: 1px solid var(--border-color);
}

.cookie-consent-banner p {
    margin-bottom: 0;
}




.about-hero {
    padding: 5rem 0 2rem;
    background-color: var(--bg-light);
}

.about-story {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-content {
    padding: 2rem;
}

.mission-values {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.mission-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.values-list {
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.safety-standards {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.service-area {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.service-area-map img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.quality-guarantee {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.guarantee-item {
    text-align: center;
    padding: 2rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-faq {
    background-color: var(--bg-dark);
}

.cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--text-light);
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 2rem;
}


.urgent-hero {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.urgent-hero-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.urgent-hero-content {
    padding: 2rem 0;
}

.urgent-call-now {
    margin-top: 2rem;
}

.urgent-note {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.urgent-services {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.urgent-service-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--border-color);
    text-align: center;
}

.urgent-service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.urgent-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.urgent-service-card ul {
    text-align: left;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.urgent-process {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-item {
    text-align: center;
    padding: 2rem;
}

.process-step {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.urgent-pricing {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.pricing-info {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.pricing-factors {
    padding-left: 0;
    list-style: none;
    margin: 2rem 0;
}

.pricing-factors li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-factors li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

.factor-title i {
    margin-right: 0.5rem;
}

.pricing-note {
    background-color: rgba(242, 106, 79, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.pricing-note p {
    margin-bottom: 0;
}

.pricing-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.urgent-preparation {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.preparation-content {
    margin-bottom: 2rem;
}

.preparation-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.security-guarantee {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.security-item {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.security-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.security-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.urgent-faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.cta-urgent {
    background-color: var(--accent);
}


.contact-hero {
    padding: 5rem 0 2rem;
    background-color: var(--bg-light);
}

.contact-details {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.working-hours {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.hours-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--border-color);
}

.hours-list {
    padding-left: 0;
    list-style: none;
    margin: 2rem 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.hours-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.map-directions {
    margin-top: 3rem;
}

.direction-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.direction-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.direction-card h4 i {
    margin-right: 0.5rem;
}

.direction-card ul {
    padding-left: 1.5rem;
}

.contact-cta {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-options {
    padding-left: 0;
    list-style: none;
    margin: 2rem 0;
}

.contact-options li {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-options li i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    min-width: 24px;
}

.contact-options h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.response-time {
    font-style: italic;
    color: #6c757d;
    margin-top: 1.5rem;
}

.service-areas {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.area-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.area-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-align: center;
}

.area-list {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.area-list li {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.area-list li:last-child {
    border-bottom: none;
}

.service-area-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 2rem;
}


.thanks-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.thanks-content {
    padding: 2rem;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.what-next {
    margin: 3rem 0;
}

.next-step {
    text-align: center;
    padding: 1.5rem;
}

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

.next-step h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgent-reminder {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(242, 106, 79, 0.1);
    border-radius: 8px;
}

.services-shortcut {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.service-shortcut-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-shortcut-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}


.policy-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.policy-header {
    margin-bottom: 3rem;
}

.policy-intro {
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 2rem;
}

.policy-content table {
    margin-bottom: 2rem;
}

.cookie-settings-button {
    margin: 3rem 0;
}


@media (max-width: 991.98px) {
    .header-contact {
        margin-top: 1rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content, .equipment-content, .eco-content {
        padding: 2rem 0;
        text-align: center;
    }
    
    .equipment-content ul, .eco-content ul {
        text-align: left;
    }
    
    .about-image, .equipment-image, .eco-image {
        margin-bottom: 2rem;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 2rem;
    }
    
    .footer-legal, .copyright {
        text-align: center;
    }
    
    .footer-legal a {
        margin: 0 0.75rem;
    }
    
    .paper-container {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card, .feature-card, .process-card, .contact-card, .urgent-service-card, .security-item, .direction-card, .area-card {
        margin-bottom: 1.5rem;
    }
    
    .hours-card, .mission-card, .value-item, .guarantee-item {
        margin-bottom: 2rem;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .contact-options li {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options li i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn + .btn {
        margin-left: 0;
    }
    
    .policy-content h2 {
        font-size: 1.6rem;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .services, .why-choose-us, .process, .equipment, .eco-friendly, .faq, .contact-form, .contact-info {
        padding: 3rem 0;
    }
    
    .paper-container {
        padding: 1.25rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .table-responsive {
        margin-bottom: 1.5rem;
    }
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}