/* 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;
}

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

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

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #B9375D;
    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: 2rem;
}

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

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

.contact-info {
    text-align: right;
}

.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: #B9375D;
}

.whatsapp-link {
    display: inline-block;
    margin-left: 0.5rem;
    color: #25d366;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128c7e;
    transform: scale(1.1);
}

.footer-whatsapp {
    color: #25d366;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.footer-whatsapp:hover {
    color: #128c7e;
}

.contact-whatsapp {
    display: inline-block;
    margin-left: 0.5rem;
    color: #25d366;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-whatsapp:hover {
    color: #128c7e;
    transform: scale(1.1);
}

.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: white;
    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, #B9375D, #D25D5D);
    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, #B9375D, #D25D5D);
    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, #D25D5D, #B9375D);
    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: #B9375D;
    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, #B9375D, #D25D5D);
    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, #D25D5D, #B9375D);
    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: #B9375D;
    margin-bottom: 2rem;
}

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

.logo-decoration {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #B9375D, #D25D5D);
    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, #D25D5D, #B9375D);
    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, #D25D5D, #B9375D);
    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, #D25D5D, #B9375D);
    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, #D25D5D, #B9375D);
    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, #D25D5D, #B9375D);
    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, #B9375D 0%, #D25D5D 50%, #B9375D 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: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E7D3D3;
    color: #B9375D;
    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: #B9375D;
    padding-left: 10px;
}

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

.working-hours h4 {
    color: #D25D5D;
    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: white;
}

.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;
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
}

.floating-btn.call-center {
    background: linear-gradient(45deg, #D25D5D, #B9375D);
    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, #B9375D 0%, #D25D5D 25%, #B9375D 50%, #D25D5D 75%, #B9375D 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: #B9375D;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.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, #B9375D, #D25D5D);
    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, #B9375D, #D25D5D);
    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: #B9375D;
    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: white;
    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: white;
    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: white;
    margin-top: 0.5rem;
}

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

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

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

.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, #B9375D, #D25D5D);
    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, #B9375D, #D25D5D);
    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: white;
    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, #B9375D, #D25D5D);
    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, #B9375D 0%, #D25D5D 25%, #B9375D 50%, #D25D5D 75%, #B9375D 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, #B9375D, #D25D5D);
    color: white;
}

.cta-btn.secondary {
    background: rgba(185, 55, 93, 0.1);
    color: #B9375D;
    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, #B9375D, #D25D5D);
    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, #B9375D, #D25D5D);
}

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

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

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

.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: #B9375D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.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: #B9375D;
}

.hours.closed {
    color: #D25D5D;
}

.emergency-contact {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #B9375D, #D25D5D);
    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: #B9375D;
    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: #B9375D;
    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: #B9375D;
    text-decoration: none;
}

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

.submit-btn {
    background: linear-gradient(45deg, #B9375D, #D25D5D);
    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: white;
    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, #B9375D, #D25D5D);
    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: white;
    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 */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .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: 2rem;
        gap: 1rem;
        border-top: 1px solid #e9ecef;
        z-index: 999;
    }
    
    .nav.active .nav-link {
        color: #666;
        padding: 1rem;
        border-radius: 6px;
        text-align: center;
    }
    
    .nav.active .nav-link:hover {
        background: rgba(185, 55, 93, 0.08);
        color: #B9375D;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .info-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .floating-actions {
        left: 10px;

    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-btn.whatsapp,
    .floating-btn.call-center {
        width: auto;
        padding: 0 0.8rem;
        font-size: 0.8rem;
    }

    /* Page Header Responsive */
    .page-header-content h1 {
        font-size: 2.5rem;
    }

    /* About Page Responsive */
    .company-stats {
        grid-template-columns: 1fr;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Services Page Responsive */
    .services-grid-extended {
        grid-template-columns: 1fr;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Contact Page Responsive */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Slightly larger blue call button */
    .floating-btn.phone { width: 64px; height: 64px; font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-actions {
        left: 5px;
    }
    

    /* Slightly larger blue call button */
    .floating-btn.phone { width: 58px; height: 58px; font-size: 1.5rem; }
}

/* 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: #B9375D;
    transition: all 0.3s ease;
}

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

.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, #B9375D, #D25D5D);
    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, #B9375D, #D25D5D);
    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: white;
    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, #B9375D, #D25D5D);
    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;
    }
}

/* Cookie Policy Page Styles */
.policy-section {
    padding: 6rem 0;
    background: white;
}

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

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

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

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

.policy-section-content {
    display: grid;
    gap: 3rem;
}

.policy-section-content h3 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    position: relative;
}

.policy-section-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #B9375D, #D25D5D);
    border-radius: 2px;
}

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

.policy-section-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-section-content li {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.cookie-type {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #B9375D;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cookie-type h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-type h4 i {
    color: white;
    font-size: 1.2rem;
}

.cookie-type p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-type ul {
    margin-left: 1rem;
    margin-bottom: 0;
}

.cookie-type li {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

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

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

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

.purpose-item i {
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.purpose-item p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 0;
}

.third-party-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #B9375D;
}

.third-party-list li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.cookie-management {
    background: linear-gradient(135deg, #EEEEEE 0%, #E7D3D3 100%);
    padding: 2rem;
    border-radius: 20px;
}

.cookie-management h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.cookie-management h4:first-child {
    margin-top: 0;
}

.cookie-preferences {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, #B9375D, #D25D5D);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(185, 55, 93, 0.3);
}

.cookie-btn.reject {
    background: #6c757d;
    color: white;
}

.cookie-btn.reject:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.cookie-btn.settings {
    background: #17a2b8;
    color: white;
}

.cookie-btn.settings:hover {
    background: #138496;
    transform: translateY(-2px);
}

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

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

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

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

.duration-item p {
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-policy {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-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;
}

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

.contact-item i {
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

/* Responsive Design for Cookie Policy */
@media (max-width: 768px) {
    .policy-section {
        padding: 4rem 0;
    }
    
    .policy-intro {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .policy-intro h2 {
        font-size: 2rem;
    }
    
    .policy-intro p {
        font-size: 1.1rem;
    }
    
    .policy-section-content h3 {
        font-size: 1.8rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .usage-purposes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-preferences {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-duration {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Global Responsive Enhancements */
/* Media-safe element defaults */
img, video, canvas, svg { max-width: 100%; height: auto; display: block; }

/* Better mobile navigation behavior */
@media (max-width: 768px) {
	.header-content { padding: 0.8rem 0; }
	.header-actions { gap: 1rem; }
	.nav.active {
		display: flex;
		position: fixed;
		top: 60px; /* approx header height */
		left: 0;
		right: 0;
		flex-direction: column;
		background: #ffffff;
		padding: 0.75rem 1rem 1rem;
		gap: 0.25rem;
		box-shadow: 0 10px 30px rgba(0,0,0,0.12);
		border-bottom-left-radius: 12px;
		border-bottom-right-radius: 12px;
		z-index: 999;
		animation: mobileMenuSlideDown 200ms ease;
	}
	.nav.active .nav-link {
		padding: 0.9rem 0.9rem;
		background: rgba(185, 55, 93, 0.06);
		border-radius: 8px;
		font-size: 1rem;
	}
	@keyframes mobileMenuSlideDown {
		from { transform: translateY(-8px); opacity: 0; }
		to { transform: translateY(0); opacity: 1; }
	}
}

/* Ensure desktop nav is always visible and reset from mobile state */
@media (min-width: 769px) {
	.nav { display: flex !important; position: static !important; box-shadow: none !important; background: transparent !important; padding: 0 !important; gap: 2.5rem; }
}

/* Improve grids at intermediate breakpoints */
@media (max-width: 1200px) {
	.services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
	.features-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
}

@media (max-width: 992px) {
	.services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
	.features-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
}

/* Footer responsiveness improvements */
.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 992px) {
	.footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.footer-content { grid-template-columns: 1fr; }
	.footer .footer-column { text-align: left; }
}

/* CTA buttons wrapping nicely on small screens */
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 480px) {
	.cta-buttons .cta-btn { width: 100%; text-align: center; }
}

/* Contact form readability on mobile */
@media (max-width: 768px) {
	.contact-form .form-group label { font-size: 0.95rem; }
	.contact-form input, .contact-form select, .contact-form textarea { font-size: 1rem; padding: 0.85rem 1rem; }
}

/* Improve page header readability on very small screens */
@media (max-width: 420px) {
	.page-header-content h1 { font-size: 2rem; }
}

/* Header Nav Dropdown */
.nav .nav-dropdown { position: relative; }
.nav .dropdown-toggle { display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer; border: none; background: transparent; color: #666; font-weight: 500; padding: 0.6rem 1.2rem; border-radius: 6px; transition: all 0.3s ease; }
.nav .dropdown-toggle i { font-size: 0.8rem; transition: transform 0.2s ease; }
.nav .dropdown-toggle:hover { color: #B9375D; background: rgba(185, 55, 93, 0.08); }

.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; background: #fff; border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); padding: 0.5rem; display: none; flex-direction: column; z-index: 1001; }
.dropdown-item { display: flex; align-items: center; gap: 0.6rem; color: #2c3e50; padding: 0.7rem 0.9rem; border-radius: 8px; text-decoration: none; transition: background 0.2s ease, transform 0.1s ease; }
.dropdown-item:hover { background: rgba(185, 55, 93, 0.08); transform: translateX(4px); }

/* Show on hover for desktop */
@media (min-width: 769px) {
  .nav .nav-dropdown:hover .dropdown-menu { display: flex; }
  .nav .nav-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
}

/* Mobile dropdown behavior */
@media (max-width: 768px) {
  .nav .dropdown-menu { position: static; box-shadow: none; padding: 0.25rem 0; background: transparent; }
  .nav .dropdown-item { padding-left: 1.2rem; }
  .nav .nav-dropdown.open .dropdown-menu { display: flex; }
}

/* Cookie Policy Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 1.5rem;
    color: #f39c12;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-btn.accept {
    background: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background: #229954;
    transform: translateY(-1px);
}

.cookie-btn.details {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.details:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Mobile responsive cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Powered by Footer */
.powered-by-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by-footer:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.powered-by-footer .code-icon {
    color: #8B5CF6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .powered-by-footer {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }
}
