* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Distress';
    src: url('Distress.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #E30A17;
    --gold-color: #D4AF37;
    --black-color: #1a1a1a;
    --dark-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

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

.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1px);
    transform: scale(1.05);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.hero-text-frame {
    position: relative;
    display: inline-block;
    padding: 2rem 4rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 2px solid rgba(227, 10, 23, 0.08);
    box-shadow: 0 0 30px rgba(227, 10, 23, 0.05),
                inset 0 0 20px rgba(227, 10, 23, 0.02);
    margin-bottom: 1rem;
}

.hero-text-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(227, 10, 23, 0.3) 25%, 
        rgba(212, 175, 55, 0.3) 50%, 
        rgba(227, 10, 23, 0.3) 75%, 
        transparent 100%);
    border-radius: 30px;
    opacity: 0;
    animation: frameGlow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes frameGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 12px;
    font-family: 'Arial Black', Arial, sans-serif;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.3rem;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-50px);
    animation: blurTextReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
                 0 0 20px rgba(227, 10, 23, 0.15),
                 0 0 30px rgba(212, 175, 55, 0.1);
}

@keyframes blurTextReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(-50px);
    }
    50% {
        opacity: 0.5;
        filter: blur(5px);
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}


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

.btn-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 240px;
}

.btn-hero-phone {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(227, 10, 23, 0.3);
}

.btn-hero-phone:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(227, 10, 23, 0.5);
}

.btn-hero-whatsapp {
    border-color: #25D366;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-hero-whatsapp:hover {
    background: #25D366;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-hero-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.btn-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}

.btn-hero-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-text {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 10, 23, 0.4);
}

.btn-primary:hover {
    background: #c20914;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 10, 23, 0.6);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.slider-btn {
    display: none;
}

.slider-prev {
    display: none;
}

.slider-next {
    display: none;
}


.references-ticker {
    background: var(--black-color);
    padding: 1.5rem 0;
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.ticker-item {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.why-us-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.why-us-card {
    background: linear-gradient(135deg, var(--light-gray), #ffffff);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(227, 10, 23, 0.1), transparent);
    border-radius: 0 0 0 100%;
    transition: all 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 10, 23, 0.2);
    border-color: var(--primary-color);
}

.why-us-card:hover::before {
    width: 200px;
    height: 200px;
}

.why-us-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
    font-family: 'Distress', 'Montserrat', sans-serif;
}

.why-us-card h3 {
    font-size: 1.4rem;
    color: var(--black-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-us-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.about-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: var(--black-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--black-color);
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.about-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(227, 10, 23, 0.8);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.about-slider-btn:hover {
    background: var(--primary-color);
}

.about-slider-prev {
    left: 10px;
}

.about-slider-next {
    right: 10px;
}

.about-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-slider-dots .dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

.services-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 10, 23, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--black-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.references-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.reference-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.reference-card:hover {
    transform: scale(1.15) translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 10, 23, 0.3);
    z-index: 10;
}

.reference-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-color);
    letter-spacing: 1px;
}

.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: 2px solid transparent;
}

.contact-card.clickable:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(227, 10, 23, 0.3);
}

.contact-card.clickable:hover .contact-icon {
    color: var(--white);
    transform: scale(1.1);
}

.contact-card.clickable:hover h3,
.contact-card.clickable:hover .contact-link {
    color: var(--white);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--black-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
}

.mini-map-wrapper {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.footer {
    background: var(--black-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gold-color);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.whatsapp-btn-large {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #25D366 !important;
    border-radius: 10px;
    width: auto !important;
    height: auto !important;
}

.whatsapp-btn-large span {
    font-size: 1rem;
    font-weight: 600;
}

.whatsapp-btn-large:hover {
    background: #20BA5A !important;
    transform: translateY(-3px) !important;
}

.phone-btn-footer {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color) !important;
    border-radius: 10px;
    width: auto !important;
    height: auto !important;
    margin-top: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn-footer span {
    font-size: 1rem;
    font-weight: 600;
}

.phone-btn-footer:hover {
    background: #c20914 !important;
    transform: translateY(-3px) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 10, 23, 0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(227, 10, 23, 0.6);
}

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: floatingPulse 2s ease-in-out infinite;
}

.floating-phone {
    background: linear-gradient(135deg, var(--primary-color), #c20914);
    color: var(--white);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    animation: none;
}

.floating-tooltip {
    position: absolute;
    right: 75px;
    background: var(--black-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--black-color);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(227, 10, 23, 0.6);
    }
}

.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--black-color), var(--dark-gray));
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gold-color);
}

.blog-section,
.faq-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 10, 23, 0.15);
    border-color: var(--primary-color);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.blog-date {
    background: var(--light-gray);
    color: #666;
}

.blog-category {
    background: var(--primary-color);
    color: var(--white);
}

.blog-card h2 {
    font-size: 1.5rem;
    color: var(--black-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-card ul {
    margin-left: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.blog-card li {
    margin-bottom: 0.5rem;
}

.blog-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.blog-card a:hover {
    text-decoration: underline;
}

.blog-cta,
.faq-cta {
    background: linear-gradient(135deg, var(--primary-color), #a00812);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(227, 10, 23, 0.3);
}

.blog-cta h2,
.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-cta p,
.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-buttons .btn:hover {
    background: var(--gold-color);
    color: var(--black-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(227, 10, 23, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu .nav-link {
        color: var(--white);
    }
    
    .nav-menu .nav-link:hover {
        color: var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

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

    .hero-content {
        top: 50%;
    }

    .hero-text-frame {
        padding: 1.5rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-slider-container {
        height: 350px;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .mini-map-wrapper {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slider-btn {
        padding: 0.5rem 1rem;
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-text-frame {
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero {
        min-width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .ticker-item {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

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

    .blog-cta,
    .faq-cta {
        padding: 2.5rem 1.5rem;
    }

    .blog-cta h2,
    .faq-cta h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .floating-buttons {
        right: 15px;
        bottom: 80px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-tooltip {
        display: none;
    }
}
