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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #ffffff;
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Scroll effect removed - navbar stays the same */
        
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    order: 1;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 1rem;
    order: 3;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link i {
    font-size: 1rem;
    opacity: 0.8;
}

.nav-link span {
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(185, 55, 93, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    order: 2;
}

.search-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #666;
    padding: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ffffff;
    color: white;
    border-color: #ffffff;
    transform: scale(1.05);
}

.contact-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-text {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.2rem;
}

.phone-number {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.header-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 50% 0 0 50%;
    opacity: 0.08;
    transform: translateX(50%);
    z-index: -1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    opacity: 0.05;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    opacity: 0.03;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hero-content {
    text-align: left;
    color: #333;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-btn {
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(185, 55, 93, 0.3);
    animation: slideInLeft 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.hero-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 ease;
}

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

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(185, 55, 93, 0.4);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #f8f9fa;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    padding: 4rem 0;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.info-text {
    flex: 2;
}

.info-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.8;
}

.contact-btn {
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 93, 93, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-logo {
    text-align: center;
    position: relative;
}

.logo-large {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.logo-large i {
    display: block;
    font-size: 6rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    color: #ffffff;
}

.logo-decoration {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 50%;
    margin: 0 auto;
    opacity: 0.1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more-btn {
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 93, 93, 0.3);
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    border-radius: 2px;
}

.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;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-card p {
    color: #2c3e50;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FF6A00 0%, #FFA000 50%, #FF6A00 100%);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f8f9fa"/></path></svg>');
    background-size: cover;
    transform: translateY(-100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #E7D3D3;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #E7D3D3;
    border-radius: 2px;
}

.contact-prompt {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-phone {
    color: #E7D3D3;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
}

.address h4 {
    margin-bottom: 0.5rem;
    color: #E7D3D3;
}

.address p {
    line-height: 1.6;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(210, 93, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E7D3D3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E7D3D3;
    color: #ffffff;
    transform: translateY(-3px);
}

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

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
    color: #ffffff;
    padding-left: 10px;
}

.company-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.working-hours h4 {
    color: #FFA000;
    margin-bottom: 0.5rem;
}

.working-hours p {
    opacity: 0.8;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-copyright {
    flex: 1;
    text-align: center;
    opacity: 0.8;
}

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

.footer-links a:hover {
    opacity: 1;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.whatsapp {
    background: #25d366;
    width: auto;
    padding: 0 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.floating-btn.whatsapp span {
    white-space: nowrap;
}

.floating-btn.phone {
    background: #007bff;
}

.floating-btn.call-center {
    background: linear-gradient(45deg, #FFA000, #FF6A00);
    color: white;
    width: auto;
    padding: 0 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    gap: 0.5rem;
    text-align: center;
    line-height: 1.2;
}

.floating-btn.call-center span {
    white-space: nowrap;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #FF6A00 0%, #FFA000 25%, #FF6A00 50%, #FFA000 75%, #FF6A00 100%);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    position: relative;
    color: white;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFA000;
}

.separator {
    color: rgba(255,255,255,0.6);
}

.page-header-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff"/></path></svg>');
    background-size: cover;
    transform: translateY(100%);
}

/* About Page Styles */
.about-page-section {
    padding: 6rem 0;
    background: white;
}

.about-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-page-text h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-page-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 2px;
}

.about-page-text h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin: 2.5rem 0 1.5rem;
    position: relative;
}

.about-page-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 2px;
}

.about-page-text p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

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

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #EEEEEE;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.service-item i {
    font-size: 2rem;
    color: #ffffff;
    width: 50px;
    text-align: center;
}

.service-item span {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

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

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

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

.value-item i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.value-item p {
    color: #2c3e50;
    line-height: 1.6;
}

.contact-section {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 20px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFA000;
}

.contact-item p {
    color: #2c3e50;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Services Page Styles */
.services-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.8;
}

.main-services {
    padding: 6rem 0;
    background: white;
}

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

.service-card-extended {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-extended::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-extended:hover::before {
    transform: scaleX(1);
}

.service-card-extended:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.service-card-extended:hover .service-icon-large {
    transform: scale(1.1) rotate(10deg);
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-card-extended h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card-extended p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    color: #28a745;
    font-weight: 500;
    font-size: 0.95rem;
}

.additional-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 4rem;
}

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

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

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

.additional-service-item i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.additional-service-item h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.additional-service-item p {
    color: #2c3e50;
    line-height: 1.6;
}

.why-choose-us {
    padding: 6rem 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 4rem;
}

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

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

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-icon {
    transform: scale(1.1);
}

.reason-icon i {
    font-size: 2rem;
    color: white;
}

.reason-item h4 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.reason-item p {
    color: #2c3e50;
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FF6A00 0%, #FFA000 25%, #FF6A00 50%, #FFA000 75%, #FF6A00 100%);
    color: white;
    text-align: center;
}

.cta-content h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-btn.primary {
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    color: white;
}

.cta-btn.secondary {
    background: rgba(185, 55, 93, 0.1);
    color: #ffffff;
    border: 2px solid rgba(185, 55, 93, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    position: relative;
}

.contact-info-section h2::after,
.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    border-radius: 2px;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.phone {
    background: linear-gradient(45deg, #FF6A00, #FFA000);
}

.contact-icon.fax {
    background: linear-gradient(45deg, #FFA000, #FF6A00);
}

.contact-icon.email {
    background: linear-gradient(45deg, #FF6A00, #FFA000);
}

.contact-icon.address {
    background: linear-gradient(45deg, #FFA000, #FF6A00);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.contact-details p {
    color: #2c3e50;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.working-hours-section {
    margin-bottom: 3rem;
}

.working-hours-section h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.working-hours-grid {
    display: grid;
    gap: 1rem;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 15px;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.hours {
    font-weight: 600;
    color: #ffffff;
}

.hours.closed {
    color: #FFA000;
}

.emergency-contact {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #FF6A00, #FFA000);
    border-radius: 20px;
    color: white;
}

.emergency-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.emergency-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-form-section p {
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E7D3D3;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(185, 55, 93, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #ffffff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(185, 55, 93, 0.3);
}

.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #FF6A00, #FFA000);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(185, 55, 93, 0.3);
}

.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 4rem;
}

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

.faq-item {
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.faq-question:hover {
    background: rgba(185, 55, 93, 0.1);
}

.faq-question h4 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 0;
}

.faq-question i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #2c3e50;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        margin-left: 5%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .services-grid-extended {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* Mobile and below (768px) */
@media (max-width: 768px) {
    /* Header Styles */
    .header {
        padding: 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.8rem 0;
    }
    
    .logo {
        order: 1;
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .header-actions {
        order: 2;
        gap: 1rem;
    }
    
    .contact-info {
        display: none;
    }
    
    .search-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
        order: 4;
        width: 100%;
    }
    
    .nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.8rem;
        border-top: 1px solid #e9ecef;
        z-index: 999;
    }
    
    .nav.active .nav-link {
        color: #666;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        justify-content: center;
        font-size: 1rem;
    }
    
    .nav.active .nav-link:hover,
    .nav.active .nav-link.active {
        background: rgba(255, 106, 0, 0.1);
        color: var(--primary);
    }
    
    /* Hero Section */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 4rem 0 3rem;
        margin-top: 60px;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
        flex-wrap: wrap;
    }
    
    /* Sections */
    .about-section,
    .services-section,
    .why-choose-us,
    .about-page-section,
    .main-services,
    .additional-services,
    .contact-section,
    .service-detail-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    /* Info Section */
    .info-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .info-text p {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .logo-large {
        font-size: 3rem;
    }
    
    .logo-large i {
        font-size: 4rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    /* Services Grid Extended */
    .services-grid-extended {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-extended {
        padding: 2.5rem 2rem;
    }
    
    .service-card-extended h3 {
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    /* Additional Services */
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-service-item {
        padding: 1.5rem;
    }
    
    /* Reasons Grid */
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .reason-item {
        padding: 1.5rem;
    }
    
    .reason-icon {
        width: 70px;
        height: 70px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Floating Actions */
    .floating-actions {
        left: 10px;
        bottom: 10px;
        gap: 0.8rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-btn.whatsapp {
        width: auto;
        padding: 0 1rem;
        font-size: 0.85rem;
    }
    
    .floating-btn.whatsapp span {
        font-size: 0.85rem;
    }
    
    .floating-btn.call-center {
        width: auto;
        padding: 0 1rem;
        font-size: 0.75rem;
    }
    
    /* About Page */
    .about-page-text h2 {
        font-size: 2rem;
    }
    
    .about-page-text h3 {
        font-size: 1.6rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 2.5rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .emergency-contact {
        padding: 2rem 1.5rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h3 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Service Detail Pages */
    .service-detail-header {
        padding: 2.5rem 2rem;
    }
    
    .service-detail-header h2 {
        font-size: 2rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .service-cta {
        padding: 2.5rem 2rem;
    }
    
    /* Map Section */
    .map-section {
        padding: 4rem 0;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .search-btn {
        padding: 0.5rem;
    }
    
    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    /* Sections */
    .about-section,
    .services-section,
    .why-choose-us,
    .about-page-section,
    .main-services,
    .additional-services,
    .contact-section,
    .service-detail-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* About */
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p,
    .info-text p {
        font-size: 0.95rem;
    }
    
    .logo-large {
        font-size: 2.5rem;
    }
    
    .logo-large i {
        font-size: 3.5rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    /* Service Card Extended */
    .service-card-extended {
        padding: 2rem 1.5rem;
    }
    
    .service-card-extended h3 {
        font-size: 1.3rem;
    }
    
    .service-card-extended p {
        font-size: 0.95rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    
    /* Buttons */
    .contact-btn,
    .read-more-btn,
    .submit-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* Floating Actions */
    .floating-actions {
        left: 5px;
        bottom: 5px;
        gap: 0.5rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .floating-btn.whatsapp {
        padding: 0 0.7rem;
        font-size: 0.7rem;
    }
    
    .floating-btn.whatsapp span {
        font-size: 0.7rem;
    }
    
    .floating-btn.call-center {
        padding: 0 0.7rem;
        font-size: 0.65rem;
    }
    
    .floating-btn.call-center span {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    /* Footer */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .footer-phone {
        font-size: 1.1rem;
    }
    
    /* About Page */
    .about-page-text h2 {
        font-size: 1.8rem;
    }
    
    .about-page-text h3 {
        font-size: 1.4rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .value-item {
        padding: 1.2rem;
    }
    
    .value-item i {
        font-size: 2.5rem;
    }
    
    .value-item h4 {
        font-size: 1.3rem;
    }
    
    /* Contact Page */
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .emergency-contact {
        padding: 1.5rem 1rem;
    }
    
    .emergency-contact h3 {
        font-size: 1.3rem;
    }
    
    /* CTA Section */
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Service Detail */
    .service-detail-header {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-header h2 {
        font-size: 1.8rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .service-description h3,
    .service-features-detailed h3,
    .service-benefits h3,
    .service-process h3 {
        font-size: 1.6rem;
    }
    
    .feature-item,
    .step {
        padding: 1.2rem;
    }
    
    .feature-item .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item h4,
    .step h4 {
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-cta {
        padding: 2rem 1.5rem;
    }
    
    /* Map Section */
    .map-placeholder {
        padding: 2.5rem 1rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card-extended h3 {
        font-size: 1.2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

/* Clickable Service Cards */
.service-card-extended.clickable,
.additional-service-item.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-extended.clickable:hover,
.additional-service-item.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card-extended.clickable::before,
.additional-service-item.clickable::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 ease;
}

.service-card-extended.clickable:hover::before,
.additional-service-item.clickable:hover::before {
    left: 100%;
}

.service-click-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(185, 55, 93, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-click-hint i {
    font-size: 1rem;
}

.service-card-extended.clickable:hover .service-click-hint,
.additional-service-item.clickable:hover .service-click-hint {
    background: rgba(185, 55, 93, 0.2);
    transform: scale(1.05);
}

/* Service Detail Page Styles */
.service-detail-section {
    padding: 6rem 0;
    background: white;
}

.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 25px;
}

.service-detail-header .service-icon-large {
    margin: 0 auto 2rem;
}

.service-detail-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-body {
    display: grid;
    gap: 4rem;
}

.service-description h3,
.service-features-detailed h3,
.service-benefits h3,
.service-process h3,
.service-cta h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    position: relative;
}

.service-description h3::after,
.service-features-detailed h3::after,
.service-benefits h3::after,
.service-process h3::after,
.service-cta h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #000000, #000000);
    border-radius: 2px;
}

.service-description p {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

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

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #000000, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-item .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #2c3e50;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.benefit-item i {
    color: #000000;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

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

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #080002, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.step p {
    color: #2c3e50;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    border-radius: 25px;
    margin-top: 2rem;
}

.service-cta h3 {
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Responsive Design for Service Detail Pages */
@media (max-width: 768px) {
    .service-detail-header {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-detail-header h2 {
        font-size: 1.8rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .feature-item,
    .step {
        padding: 1.5rem;
    }
}

/* ===== Orange/White Theme Overrides ===== */
:root {
    --primary: #FF6A00;      /* Orange */
    --primary-2: #FFA000;    /* Lighter Orange */
    --tint-bg: #FFF3E6;      /* Soft orange tint */
}

/* Header & Navigation */
.logo, .logo i { color: var(--primary); }
.logo span { color: #000000 !important; } /* Make tektiklabilet.com text black */
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(255, 106, 0, 0.08); }
.nav-link::after { background: var(--primary); }
.search-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.phone-number:hover { color: var(--primary); }
.header-decoration { background: linear-gradient(45deg, var(--primary), var(--primary-2)); }

/* Hero */
.hero::before { background: linear-gradient(45deg, var(--primary), var(--primary-2)); }
.hero::after { background: linear-gradient(45deg, var(--primary-2), var(--primary)); }
.hero-title { color: var(--primary); }
.hero-btn { background: linear-gradient(45deg, var(--primary), var(--primary-2)); box-shadow: 0 8px 25px rgba(255,106,0,0.3); }
.hero-btn:hover { box-shadow: 0 12px 35px rgba(255,106,0,0.4); }

/* Sections background to white/tint */
.info-section,
.services-section,
.services-overview,
.additional-services,
.service-detail-header,
.contact-info-item,
.working-day { background: linear-gradient(135deg, #FFFFFF 0%, var(--tint-bg) 100%); }

/* Buttons */
.contact-btn,
.read-more-btn,
.submit-btn,
.map-link,
.cta-btn.primary,
.floating-btn.call-center { background: linear-gradient(45deg, var(--primary-2), var(--primary)); color: #fff; }
.read-more-btn:hover,
.contact-btn:hover,
.map-link:hover,
.submit-btn:hover { box-shadow: 0 12px 30px rgba(255,106,0,0.3); }

/* Accents & dividers */
.section-title::after,
.about-text h2::after,
.service-card::before,
.service-card-extended::before,
.service-description h3::after,
.service-features-detailed h3::after,
.service-benefits h3::after,
.service-process h3::after,
.service-cta h3::after { background: linear-gradient(45deg, var(--primary), var(--primary-2)); }

/* Icons & chips */
.service-icon,
.service-icon-large,
.reason-icon,
.feature-item .feature-icon { background: linear-gradient(45deg, var(--primary), var(--primary-2)); }
.additional-service-item i,
.map-placeholder i,
.faq-question i,
.service-item i,
.stat-number { color: var(--primary); }

/* Footer */
.footer { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--primary) 100%); }
.footer-menu a:hover { color: var(--primary); }
.working-hours h4 { color: var(--primary-2); }
.social-link:hover { background: #FFE0B2; color: var(--primary); }
.footer-logo span { color: #ffffff !important; } /* Footer logo text stays white for contrast */

/* Page header & breadcrumb */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 25%, var(--primary) 50%, var(--primary-2) 75%, var(--primary) 100%); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-2); }

/* Links and interactive accents */
.contact-item a,
.contact-details a,
.checkbox-group a { color: var(--primary); }
.contact-item a:hover,
.contact-details a:hover { color: var(--primary-2); }

/* Forms focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,106,0,0.1); }

/* Misc */
.faq-question:hover { background: rgba(255,106,0,0.1); }
.hours { color: var(--primary); }
.hours.closed { color: var(--primary-2); }
.emergency-contact { background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.emergency-btn { color: var(--primary); }

/* Airplane icons - ensure orange color */
.fas.fa-plane { color: var(--primary) !important; }
.logo i.fa-plane { color: var(--primary) !important; }
.footer-logo i.fa-plane { color: #ffffff !important; }

/* Ensure all icons are white unless specified otherwise */
.fas, .far, .fab, .fa {
    color: #ffffff !important;
}

/* Specific icon overrides for better visibility */
.nav-link i {
    font-size: 1rem;
    opacity: 0.9;
    color: #ffffff !important;
}

.nav-link:hover i,
.nav-link.active i {
    color: #FF6A00 !important;
}

/* Contact icons */
.contact-icon i,
.reason-icon i,
.service-icon i,
.service-icon-large i {
    color: #ffffff !important;
}

/* Social media icons */
.social-link i {
    color: #ffffff !important;
}

.social-link:hover i {
    color: #FF6A00 !important;
}

/* Floating button icons */
.floating-btn i {
    color: #ffffff !important;
}

/* Form and button icons */
.submit-btn i,
.emergency-btn i,
.cta-btn i {
    color: #ffffff !important;
}

/* Text colors - black for light backgrounds, white for dark backgrounds */
body, p, span, div, h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

/* White text for dark backgrounds */
.footer, .page-header, .cta-section, .emergency-contact {
    color: #ffffff;
}

.footer *, .page-header *, .cta-section *, .emergency-contact * {
    color: #ffffff !important;
}
