/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
}

body, html {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-bg);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.contact-link,
.contact-link:visited,
.contact-link:hover,
.contact-link:focus,
.contact-link:active {
    text-decoration: none !important;
}

.contact-link.call-btn {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.contact-link.call-btn:hover {
    color: #28a745;
    background: rgba(40, 167, 69, 0.2);
}

.contact-link.email-btn {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.contact-link.email-btn:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.2);
}

.social-link {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Navigation Styles */
.navbar {
    background-color: #fefefd;
    box-shadow: none;
    padding: 0 !important;
    margin: 0 !important;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    height: 80px;
    min-width: 180px;
    text-decoration: none;
}

.logo {
    height: 80px;
    max-width: 260px;
    width: auto;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
    filter: drop-shadow(none);
    display: block;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.quote-btn {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 5px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.quote-btn:hover {
    background-color: #0056b3;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    margin-top: 80px;
}

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

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    margin-left: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--text-color);
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

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

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #0056b3;
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--accent-color);
    margin-right: 10px;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Modern Contact Section Styles */
.contact {
    padding: 32px 0 0 0;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 40px;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.input-group i {
    padding: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #333;
}

.input-group textarea {
    min-height: 100px;
    resize: vertical;
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact Info Styles */
.contact-info-wrapper {
    background: none;
    box-shadow: none;
    border-radius: 0;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 22px 18px 18px 18px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: none;
    transition: box-shadow 0.2s;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f8f9fa;
}

.contact-item .icon i {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.contact-item .content {
    text-align: center;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    margin-bottom: 6px;
}

.contact-item,
.contact-item:hover,
.contact-item:focus,
.contact-item:active {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: inherit !important;
}

.contact-link {
    color: #444;
    font-size: 0.97rem;
    background: none;
    padding: 0;
    border-radius: 0;
    display: inline;
    text-decoration: none;
}

.contact-link:hover,
.contact-link:focus {
    text-decoration: none;
}

/* Remove copy hint styles */
.copy-hint {
    display: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .contact {
        padding: 40px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .quick-contact {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .contact {
        padding: 30px 0;
    }
    
    .contact-form-wrapper {
        padding: 15px;
    }
    
    .submit-btn {
        padding: 12px 25px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item .icon {
        width: 35px;
        height: 35px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}

/* WhatsApp Button - floating (keep only for floating button, not for hero section) */
/* .whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
} */

/* .whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
} */

/* Emergency Banner */
.emergency-banner {
    background-color: #dc3545;
    color: white;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}

.emergency-banner p {
    margin: 0;
    display: inline-block;
}

.emergency-banner .btn-danger {
    margin-left: 20px;
    padding: 5px 15px;
    font-size: 0.9rem;
}

/* Enhanced Responsive Design */
/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Medium devices (tablets, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-card {
        padding: 25px;
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .logo {
        height: 45px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

/* Extra small devices (portrait phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-link {
        padding: 8px 12px !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}

/* Extra extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-6:first-child {
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .nav-link {
        padding: 8px 12px !important;
    }
    
    .quote-btn {
        margin: 10px 0;
        display: block;
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .about-image {
        margin-top: 20px;
    }
    
    .contact-info {
        margin-top: 20px;
        text-align: center;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin: 20px 0;
    }
    
    .social-links {
        justify-content: center;
        margin: 20px 0;
    }
}

/* Fix for sticky header on mobile */
@media (max-width: 991px) {
    .navbar {
        height: 70px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    
    .nav-item {
        margin: 5px 0;
    }
}

/* Improved form responsiveness */
@media (max-width: 767px) {
    .contact-form {
        padding: 20px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Fix for emergency banner on mobile */
@media (max-width: 575px) {
    .emergency-banner {
        padding: 15px 0;
    }
    
    .emergency-banner p {
        display: block;
        margin-bottom: 10px;
    }
    
    .emergency-banner .btn-danger {
        margin: 0;
        display: block;
        width: 100%;
    }
}

/* Fix for WhatsApp button on mobile */
@media (max-width: 575px) {
    /* .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    } */
}

/* Improved image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for container padding on mobile */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Improved text alignment for mobile */
@media (max-width: 767px) {
    .text-center-mobile {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Fix for hero section spacing on mobile */
@media (max-width: 767px) {
    .hero {
        padding: 100px 0;
        margin-top: 66px;
    }
}

/* Improved button spacing on mobile */
@media (max-width: 575px) {
    .btn {
        margin: 5px 0;
    }
    
    .hero-buttons {
        margin-top: 20px;
    }
}

/* Fix for social links alignment */
.social-links {
    display: flex;
    align-items: center;
}

/* Improved form field spacing */
.form-group {
    margin-bottom: 1rem;
}

/* Fix for footer spacing */
@media (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Accessibility Improvements */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Improved form accessibility */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Improved button contrast */
.btn {
    font-weight: 500;
    text-transform: none;
}

/* Improved link contrast */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Improved focus states */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

/* Responsive logo sizes */
@media (max-width: 991px) {
    .logo {
        height: 50px;
    }
    .footer-logo {
        height: 45px;
    }
}

@media (max-width: 767px) {
    .logo {
        height: 45px;
    }
    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 575px) {
    .logo {
        height: 40px;
    }
    .footer-logo {
        height: 35px;
    }
}

/* Ensure logo container doesn't collapse */
.navbar-brand {
    min-width: 200px;
    margin-right: 2rem;
}

/* Add hover effect to logo */
.navbar-brand:hover {
    opacity: 0.9;
}

/* Ensure logo is clickable */
.navbar-brand img {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar {
        height: 70px;
    }
}

@media (max-width: 767px) {
    .navbar {
        height: 60px;
    }
}

@media (max-width: 575px) {
    .navbar {
        height: 50px;
    }
}

/* Our Clients Section */
.clients {
    background: #f8f9fa;
}
.client-logo {
    max-width: 200px; /* Adjust this value as needed */
    height: auto;
    object-fit: contain;
    padding: 0;
    margin: 0 auto;
    display: block;
    opacity: 1;
    box-shadow: none;
    transition: all 0.3s ease;
}

@keyframes scaleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.client-logo:hover {
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.18);
}

/* Remove underline reveal effect */
.client-logo-wrapper::after,
.client-logo-wrapper:hover::after {
    content: none;
}

.client-logo-large {
    height: 140px;
    max-width: 110%;
}

/* Fix container alignment */
.container-fluid {
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

/* Ensure navbar items are properly aligned */
.navbar-nav {
    align-items: center;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 4px rgba(0,0,0,0.04);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.12), 0 3px 8px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.02);
    background: #f8faff;
}

.contact-card .icon {
    background: linear-gradient(135deg, #007bff 60%, #00c6ff 100%);
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    flex-shrink: 0;
}

.contact-card .content h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

.contact-card .contact-link {
    font-size: 1rem;
    color: #007bff;
    font-weight: 500;
    word-break: break-all;
}

@media (max-width: 767px) {
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    .contact-card .icon {
        margin-bottom: 0.5rem;
    }
}

.quick-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
  width: 100%;
}

.contact-card-matching {
  background: #fff;
  border-radius: 16px;
  box-shadow: none;
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 48px;
  transition: background 0.2s;
  width: 100%;
  max-width: 100%;
  gap: 0.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contact-card-matching:hover {
  background: #f0f6fa;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.contact-icon-matching {
  font-size: 1.25rem;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  line-height: 1.1;
}

.contact-value {
  font-size: 1.13rem;
  color: #1976d2;
  text-align: left;
  word-break: break-all;
  font-weight: 500;
  line-height: 1.4;
  margin-left: 2.1rem; /* aligns value under label, matching icon+label indent */
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}

.contact-value a {
  color: #1976d2;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-card-matching {
    align-items: flex-start;
    text-align: left;
    gap: 0.2rem;
    padding: 1rem 0.7rem;
  }
  .contact-value {
    margin-left: 0;
  }
}

.social-links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

.social-links-label {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #1976d2; /* fallback */
  text-decoration: none;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: #e4405f; }
.social-link.whatsapp { background: #25d366; }

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 18px rgba(25, 118, 210, 0.18);
  opacity: 0.92;
  
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 0 !important;
    height: auto;
  }

  .navbar-brand img {
    max-height: 40px;
  }

  .header-right {
    display: none;
  }
}
@media (max-width: 576px) {
  .footer .row > div {
    text-align: center !important;
    margin-bottom: 1.5rem !important;
  }

  .footer-links,
  .footer-contact,
  .footer-about {
    text-align: center !important;
  }

  .footer-links li {
    justify-content: center !important;
    display: flex !important;
  }

  .footer .social-link {
    margin-left: 6px !important;
    margin-right: 6px !important;
    display: inline-flex !important;
  }

  .quick-contact {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
  }

  .contact-item {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}
