/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(231, 76, 60, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-logo:hover {
    text-decoration: none;
}

.logo {
    width: 200px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.nav-links li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 1rem;
}

/* Header Phone Numbers */
.header-phone-numbers {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}



.phone-icon {
    font-size: 1.1rem;
    animation: phoneRing 2s ease-in-out infinite;
}

.phone-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.primary-phone,
.secondary-phone {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: 2px solid #f39c12;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.primary-phone:hover,
.secondary-phone:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}



.header-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    min-width: 200px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.phone-btn:hover::before {
    left: 100%;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.primary-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.secondary-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.secondary-phone:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    opacity: 1;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.3s forwards;
}

.highlight {
    color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    opacity: 0;
    animation: slideInUp 1s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1s ease 0.9s forwards;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: slideInUp 1s ease 1.2s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Services Gallery Section */
.services-gallery {
    padding: 3rem 0;
    background: white;
}

.services-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-gallery .gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 250px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.services-gallery .gallery-item.loaded {
    opacity: 1;
    transform: translateY(0);
}

.services-gallery .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

.services-gallery .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 62, 80, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.services-gallery .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.services-gallery .gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #f39c12;
}

.services-gallery .gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Featured Gallery Item */
.featured-gallery-item {
    border: 3px solid #e74c3c;
    position: relative;
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3) !important;
}

.featured-gallery-item::before {
    content: '⭐ ÖNE ÇIKAN HİZMET';
    position: absolute;
    top: -10px;
    left: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.featured-gallery-item:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 20px 45px rgba(231, 76, 60, 0.4) !important;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.why-choose .section-title {
    color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-item h3 {
    margin-bottom: 1rem;
    color: #f39c12;
}

/* Service Areas */
.service-areas {
    background: #f8f9fa;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.city-group h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.city-group ul {
    list-style: none;
}

.city-group li {
    padding: 0.3rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

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

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Section */
.reviews {
    background: white;
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
    position: relative;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars span {
    font-size: 1.2rem;
    color: #ffc107;
}

.review-text {
    color: #2c3e50;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: #e74c3c;
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.review-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.contact-details h3 {
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.contact-details a:hover {
    color: #f39c12;
}

.contact-details a {
    display: block;
    margin: 0.3rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details a:last-child {
    border-bottom: none;
}

/* Form Styles */
.quote-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.quote-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f39c12;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    transition: all 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
}

.quote-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.quote-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1a252f;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #f39c12;
    margin-bottom: 1rem;
}

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

.footer-section li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bbb;
}

/* Enhanced WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1.2rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    font-size: 1.5rem;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    color: white;
}

/* WhatsApp pulse animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* WhatsApp notification badge */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: notificationBlink 1.5s ease-in-out infinite;
}

@keyframes notificationBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Phone Call Button Enhancement */
.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.phone-btn:hover::before {
    left: 100%;
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.phone-icon {
    font-size: 1.2rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* Phone Numbers Layout */
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.primary-phone {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.secondary-phone {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    opacity: 0.9;
}

.secondary-phone:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
    padding: 5rem 0;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #f39c12;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .logo {
        width: 300px;
        height: 100px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        order: 3;
        width: 100%;
        margin: 0;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .nav-links li a {
        padding: 1rem 2rem;
        display: block;
        width: 250px;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
        margin: 0.5rem 0;
        border: 1px solid rgba(231, 76, 60, 0.1);
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-contact {
        order: 1;
        margin-left: auto;
    }
    
    .nav-contact {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .header-phone-numbers {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        flex-wrap: nowrap;
        padding: 0 0.5rem;
    }

    .phone-number {
        font-size: 0.85rem;
        padding: 0.8rem 0.8rem;
        width: 165px;
        min-width: 165px;
        max-width: 165px;
        justify-content: center;
        font-weight: 700;
        gap: 0.6rem;
    }

    .phone-number .phone-text {
        font-size: 0.8rem;
        letter-spacing: 0.4px;
        font-weight: 700;
    }

    .phone-number .phone-icon {
        font-size: 0.9rem;
    }


    
    .header-buttons {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-btn {
        min-width: 170px;
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .phone-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .phone-text {
        font-size: 0.9rem;
    }
    
    .secondary-phone {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-gallery .gallery-item {
        height: 200px;
    }
    
    .services-gallery .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .services-gallery .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
    }
    
    .city-list {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-item {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        padding: 1rem 1.2rem;
        min-width: 140px;
        font-size: 0.9rem;
    }
    
    .whatsapp-text {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 0;
        padding-top: 6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .quote-form {
        padding: 1.5rem;
    }
    
    .phone-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo {
        width: 200px;
        height: 100px;
    }
    
    .nav-contact {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .header-phone-numbers {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        padding: 0 1rem;
        flex-wrap: nowrap;
    }

    .phone-number {
        font-size: 0.75rem;
        padding: 0.6rem 0.5rem;
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        justify-content: center;
        font-weight: 700;
        gap: 0.4rem;
    }


    
    .header-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .header-btn {
        min-width: 160px;
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .phone-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .phone-number .phone-text {
        font-size: 0.7rem;
        letter-spacing: 0.2px;
        font-weight: 700;
    }

    .phone-number .phone-icon {
        font-size: 0.8rem;
    }
    

    
    .phone-icon {
        font-size: 1rem;
    }
    
    .services-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-gallery .gallery-item {
        height: 180px;
    }
    
    .logo {
        width: 220px;
        height: 100px;
        padding: 0;
        background: transparent;
    }
    
    .whatsapp-float {
        padding: 0.8rem 1rem;
        min-width: 120px;
        font-size: 0.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-text {
        font-size: 0.75rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Critical CSS for above-the-fold content */
.hero,
.header {
    will-change: transform;
}

/* Hover effects for touch devices */
@media (hover: hover) {
    .service-card:hover,
    .advantage-item:hover,
    .btn:hover,
    .phone-btn:hover,
    .whatsapp-float:hover {
        /* Hover effects only on devices that support hover */
    }
}

/* SEO Article Pages Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '→';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #e74c3c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.article-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

.article-body {
    padding: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
}

.services-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.services-list .service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.services-list .service-item:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-list .service-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-item h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

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

.cta-section {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.city-group {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.city-group h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.city-group ul {
    list-style: none;
}

.city-group li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.city-group li:last-child {
    border-bottom: none;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.contact-form-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.equipment-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: #e74c3c;
    background: white;
    transform: translateY(-5px);
}

.equipment-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cost-factors {
    list-style: none;
    margin: 1.5rem 0;
}

.cost-factors li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vehicle-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.safety-measures {
    list-style: none;
    margin: 1.5rem 0;
}

.safety-measures li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 10px;
    color: #856404;
    font-weight: 500;
    border-left: 4px solid #ffc107;
}

.special-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.special-item {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.special-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.special-item h4 {
    color: #155724;
    margin-bottom: 1rem;
}

/* Mobile Responsive for Article Pages */
@media (max-width: 768px) {
    .article-header {
        padding: 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-grid,
    .cities-grid,
    .equipment-grid,
    .process-steps,
    .vehicle-options,
    .special-services {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
} 