@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Critical Mobile CSS - Load First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --dark-blue: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 30px;
}

.header-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.header-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}

.header-call-btn i {
    font-size: 14px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    display: none;
    min-width: 280px;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown-brands {
    min-width: 700px;
}

.dropdown-menu .dropdown-column:only-child {
    width: 100%;
}

.dropdown-menu .dropdown-column:only-child a {
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    gap: 30px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-column h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.dropdown-column a {
    display: block;
    padding: 8px 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-column a:hover {
    background: var(--light-gray);
    color: var(--secondary-color);
    padding-left: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-phone {
    background: white;
    color: var(--primary-color);
}

.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: white;
}

.cta-whatsapp {
    background: #25D366;
    color: white;
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    max-width: 800px;
    margin: 10px auto 40px;
    line-height: 1.6;
}

/* Desktop Grid (3 columns) */
.features-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.feature-mobile-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: var(--secondary-color);
}

.feature-mobile-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-mobile-item:hover .feature-mobile-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.feature-mobile-content h3 {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-mobile-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .features-mobile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-mobile-item {
        padding: 20px;
    }
    
    .feature-mobile-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 15px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Desktop Services Grid (2 columns) */
.services-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-mobile-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-mobile-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.25);
}

.service-mobile-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.service-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-mobile-item:hover .service-mobile-image img {
    transform: scale(1.1);
}

.service-mobile-content {
    padding: 30px;
}

.service-mobile-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-mobile-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: var(--light-gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    justify-items: center;
}

.brand-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    padding: 20px;
}

.brand-circle:hover {
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
}

.brand-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-circle span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.brand-disclaimer {
    text-align: center;
    margin-top: 40px;
}

/* Legal Disclaimer Section */
.legal-disclaimer-section {
    padding: 30px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.legal-disclaimer {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;

    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.trustindex-widget {
    max-width: 1200px;
    margin: 0 auto;
}

.call-to-action-box {
    text-align: center;
    margin-top: 50px;
    padding: 30px 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-group {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.service-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.service-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.phone-number {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin: 12px 0;
    letter-spacing: 1px;
}

.guarantee-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    background: white;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.customer-name {
    color: var(--text-light);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    clip-path: ellipse(70% 100% at 50% 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
}

.container-fluid {
    max-width: 100%;
    padding: 0 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-left {
    flex: 1;
}

.footer-left h3 {
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-subtitle {
    color: white;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-desc {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    color: white !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-contact p:hover {
    color: white !important;
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--accent-color);
    width: 18px;
    font-size: 16px;
}

.footer-center {
    flex: 1;
}

.footer-center h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-center h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-center ul {
    list-style: none;
}

.footer-center ul li {
    color: #e2e8f0;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-center ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.footer-center ul li:hover {
    color: white;
    padding-left: 20px;
}

.footer-center ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: white;
}

.footer-right {
    flex: 1.2;
}

.footer-right h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-right h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-regions {
    display: flex;
    gap: 40px;
}

.region-col h4 {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.region-col ul {
    list-style: none;
}

.region-col ul li {
    color: #e2e8f0;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.region-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.region-col ul li:hover {
    color: white;
    padding-left: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    color: #cbd5e1;
    font-size: 14px;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 50px 0;
    text-align: center;
}

.services-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

.services-hero-desc {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* About Hero Section */
.about-hero-section {
    padding: 80px 0;
    background: white;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}



.about-hero-left h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 25px !important;
}

.about-hero-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-special-note {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px !important;
    margin-top: 30px !important;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: 30px;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.about-hero-right {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.about-image-wrapper:hover .about-hero-image {
    transform: scale(1.05);
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.25);
}

.service-item-image {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item-card:hover .service-item-image img {
    transform: scale(1.1);
}

.service-item-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-item-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-item-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.service-item-empty {
    opacity: 0.5;
}

.service-item-empty .service-item-image {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.fault-list-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 50px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fault-list-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.fault-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.fault-grid-list ul {
    list-style: none;
}

.fault-grid-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.fault-grid-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.fault-summary {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    line-height: 1.7;
}

.services-closing-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-closing-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-closing-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.services-cta-section {
    text-align: center;
}

.services-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.services-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

/* Brands Grid Section */
.brands-grid-section {
    padding: 80px 0;
    background: white;
}

.brands-list-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.brand-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.brand-box:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.brand-box i {
    font-size: 32px;
    color: var(--secondary-color);
}

.brand-box span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Regions Banner */
.regions-banner {
    position: relative;
    height: 400px;
    background-image: url('images/banners/4.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.regions-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.regions-banner-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Regions Content */
.regions-content-section {
    padding: 80px 0;
    background: white;
}

.regions-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 500;
}

.region-area {
    margin-bottom: 60px;
}

.region-header-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
}

.region-header-box i {
    font-size: 14px;
}

.region-header-box h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.neighborhoods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.neighborhoods-list span,
.neighborhoods-list a {
    background: var(--light-gray);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.neighborhoods-list span i,
.neighborhoods-list a i {
    color: var(--secondary-color);
    font-size: 14px;
}

.neighborhoods-list span:hover,
.neighborhoods-list a:hover {
    background: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.regions-cta-box {
    text-align: center;
    background: var(--light-gray);
    padding: 35px 25px;
    border-radius: 15px;
    margin-top: 60px;
}

.regions-cta-box h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 12px;
}

.regions-cta-box p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.regions-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.regions-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.important-note {
    margin-top: 25px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 19px !important;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.highlight-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    background: white;
}

.highlight-box i {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.highlight-box h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.highlight-box p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.about-contact-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--light-gray);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-contact-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.about-contact-section > p {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 25px;
}

.about-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin: 10px 0;
}

.about-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.contact-desc {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.fault-list {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 50px 40px;
    background: var(--light-gray);
    border-radius: 20px;
}

.fault-list h2 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.fault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.fault-grid ul {
    list-style: none;
}

.fault-grid li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.fault-grid li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.fault-summary {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    line-height: 1.7;
}

.about-service-info {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-service-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-service-info strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.final-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.cta-whatsapp-large {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.cta-whatsapp-large:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Disable hover effects on touch devices (mobile) */
@media (hover: none) and (pointer: coarse) {
    .service-mobile-item:hover {
        transform: none !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-mobile-item:hover .service-mobile-image img {
        transform: none !important;
    }
    
    .service-item-card:hover {
        transform: none !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-item-card:hover .service-item-image img {
        transform: none !important;
    }
    
    /* Prevent tap highlight on mobile */
    .service-mobile-item,
    .service-item-card {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    .container, .container-fluid {
        overflow-x: hidden;
    }

    .header-call-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        margin-top: 10px;
        flex-direction: column;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-right {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .fault-grid-list {
        grid-template-columns: 1fr;
    }

    .fault-list-section {
        padding: 30px 20px;
    }

    .services-cta-button {
        font-size: 18px;
        padding: 15px 35px;
    }

    .brands-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .regions-banner {
        height: 300px;
    }

    .regions-banner-title {
        font-size: 36px;
    }

    .region-header-box {
        flex-direction: column;
        gap: 10px;
    }

    .region-header-box h2 {
        font-size: 28px;
    }

    .regions-cta-box h3 {
        font-size: 24px;
    }

    .regions-cta-button {
        font-size: 18px;
        padding: 15px 35px;
    }

    /* Mobile section subtitle - smaller font */
    .section-subtitle {
        font-size: 15px;
        margin: 10px auto 30px;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    /* Mobile Features Grid - Stack vertically with bigger cards */
    .features-mobile-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }
    
    .feature-mobile-item {
        padding: 25px 20px;
    }
    
    .feature-mobile-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .feature-mobile-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .feature-mobile-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Mobile Services - Apply hizmetler.html card style with bigger spacing */
    .services-mobile-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .service-mobile-item {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .service-mobile-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 35px rgba(59, 130, 246, 0.25);
    }
    
    .service-mobile-image {
        width: 100%;
        height: 220px;
        background: var(--light-gray);
        overflow: hidden;
    }
    
    .service-mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-mobile-item:hover .service-mobile-image img {
        transform: scale(1.1);
    }
    
    .service-mobile-content {
        padding: 30px 25px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .service-mobile-content h3 {
        color: var(--primary-color);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .service-mobile-content p {
        color: var(--text-light);
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    .brand-circle {
        width: 100px;
        height: 100px;
    }

    .container-fluid {
        padding: 0 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .footer {
        overflow-x: hidden;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .footer-left, .footer-center, .footer-right {
        width: 100%;
        max-width: 100%;
    }

    .footer-regions {
        flex-direction: column;
        gap: 25px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-hero-left h1 {
        font-size: 32px;
    }

    .about-image-wrapper {
        height: 350px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .fault-grid {
        grid-template-columns: 1fr;
    }

    .about-contact-section {
        padding: 40px 20px;
    }

    .about-phone-btn {
        font-size: 20px;
        padding: 15px 35px;
    }

    .final-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-large {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}


/* Brand Page Styles */
.brand-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.brand-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.brand-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.brand-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-content {
    padding: 80px 0;
    background: white;
}

.brand-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-content-left h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.brand-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.brand-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.brand-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.brand-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.brand-feature-item i {
    font-size: 28px;
    color: var(--secondary-color);
}

.brand-feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.brand-content-right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.brand-models {
    padding: 80px 0;
    background: var(--light-gray);
}

.brand-models h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.model-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.model-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.model-category h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-category h3 i {
    font-size: 24px;
}

.model-category ul {
    list-style: none;
}

.model-category ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 15px;
}

.model-category ul li:last-child {
    border-bottom: none;
}

.model-category ul li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

.brand-services-section {
    padding: 80px 0;
    background: white;
}

.brand-services-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.brand-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.brand-service-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-service-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.brand-service-item i {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.brand-service-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.brand-service-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-hero h1 {
        font-size: 28px;
    }

    .brand-hero p {
        font-size: 16px;
    }

    .brand-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-content-right {
        order: -1;
    }

    .brand-features {
        grid-template-columns: 1fr;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .brand-services-grid {
        grid-template-columns: 1fr;
    }
}





/* Region header clickable */
.region-header-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-header-link h2 {
    color: white;
}

.region-header-link i {
    color: white;
}

.region-header-link:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}


/* Footer region links */
.footer-regions h4 a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-regions h4 a:hover {
    color: white;
}

.footer-regions ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-regions ul li a:hover {
    color: white;
}


/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.contact-left h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.contact-info-item h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-btn-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.contact-btn-whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hanging Icons */
.contact-right {
    position: relative;
    height: 400px;
}

.hanging-icons {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    height: 100%;
    padding-top: 40px;
}

.hanging-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: swing 3s ease-in-out infinite;
}

.hanging-icon:nth-child(1) {
    margin-top: 0;
}

.hanging-icon:nth-child(2) {
    margin-top: 40px;
}

.hanging-icon:nth-child(3) {
    margin-top: 20px;
}

.rope {
    width: 2px;
    height: 250px;
    background: linear-gradient(to bottom, #666, #999);
    margin-bottom: 0;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 40px;
    color: white;
}

.hanging-icon:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(3deg);
    }
    75% {
        transform: rotate(-3deg);
    }
}

.contact-map {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-map iframe {
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h1 {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-right {
        height: 300px;
    }

    .hanging-icons {
        padding-top: 20px;
    }

    .rope {
        height: 60px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle i {
        font-size: 32px;
    }

    .contact-action-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    animation: pulse-whatsapp 2s infinite !important;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 32px !important;
    color: white !important;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp i {
        font-size: 28px;
    }
}

/* Floating Call Button */
.floating-call {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4) !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    animation: pulse-call 2s infinite !important;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.floating-call i {
    font-size: 28px !important;
    color: white !important;
}

@keyframes pulse-call {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.7);
    }
}

@media (max-width: 768px) {
    .floating-call {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .floating-call i {
        font-size: 24px;
    }
}

/* Mobile Critical CSS - Ensure Loading */
@media screen and (max-width: 768px) {
    body {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .section-title {
        font-size: 24px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .features-mobile-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 0 10px !important;
    }
    
    .feature-mobile-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 25px 20px !important;
        background: white !important;
        border-radius: 12px !important;
        border: 2px solid #e5e7eb !important;
    }
    
    .feature-mobile-icon {
        width: 55px !important;
        height: 55px !important;
        background: linear-gradient(135deg, #1e3a8a, #3b82f6) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        color: white !important;
        margin-bottom: 18px !important;
    }
    
    .services-mobile-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    .service-mobile-item {
        background: white !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 400px !important;
    }
}