/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black-mantis: #0a0e27;
    --anthracite: #2a2e3e;
    --danger-red: #e63946;
    --tactical-gold: #f1a208;
    --steel-gray: #475569;
    --white: #ffffff;
    
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--black-mantis);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(241, 162, 8, 0.1);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--tactical-gold);
    box-shadow: 0 4px 12px rgba(241, 162, 8, 0.3);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tactical-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tactical-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--tactical-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--danger-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.btn-primary.blink {
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.3;
    }
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--tactical-gold);
}

.btn-secondary:hover {
    background: var(--tactical-gold);
    color: var(--black-mantis);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero side carousels */
.hero-side-carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(140px, 20vw, 260px);
    height: clamp(240px, 60vh, 520px);
    z-index: 8;
}

.hero-side-carousel-left {
    left: max(20px, 3vw);
    animation: sideFloatDown 8s ease-in-out infinite;
}

.hero-side-carousel-right {
    right: max(20px, 3vw);
    animation: sideFloatUp 8s ease-in-out infinite;
}

.hero-side-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInOut 30s infinite;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-side-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-side-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-side-slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-side-slide:nth-child(4) {
    animation-delay: 18s;
}

.hero-side-slide:nth-child(5) {
    animation-delay: 24s;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-slide:nth-child(4) {
    animation-delay: 18s;
}

.hero-slide:nth-child(5) {
    animation-delay: 24s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sideFloatDown {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-35%);
    }
}

@keyframes sideFloatUp {
    0%, 100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(-65%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(42, 46, 62, 0.75) 100%);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-white {
    color: var(--white);
}

.text-gradient {
    background: linear-gradient(135deg, var(--danger-red) 0%, var(--tactical-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--tactical-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--tactical-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--white);
}

.hero-parachute {
    position: absolute;
    top: 20%;
    right: 10%;
    color: var(--tactical-gold);
    opacity: 0.3;
    animation: parachuteFloat 8s ease-in-out infinite;
    z-index: 5;
}

@keyframes parachuteFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: linear-gradient(180deg, var(--black-mantis) 0%, var(--anthracite) 100%);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(42, 46, 62, 0.5);
    border: 1px solid rgba(241, 162, 8, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 162, 8, 0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--tactical-gold);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--danger-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.service-features li::before {
    content: '✓ ';
    color: var(--tactical-gold);
    font-weight: bold;
    margin-right: 8px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tactical-gold);
    margin-bottom: 20px;
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid rgba(241, 162, 8, 0.3);
    background: transparent;
    color: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--tactical-gold);
    color: var(--black-mantis);
    border-color: var(--tactical-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: var(--transition);
    background: #1f2937;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

/* ===== TRUST SECTION ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.trust-card {
    text-align: center;
    padding: 30px;
    background: rgba(42, 46, 62, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(241, 162, 8, 0.1);
}

.trust-icon {
    margin-bottom: 20px;
    color: var(--tactical-gold);
}

.trust-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--danger-red);
    display: inline-block;
}

.trust-suffix {
    font-size: 2rem;
    color: var(--tactical-gold);
    margin-left: 5px;
}

.trust-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 50px;
    background: rgba(42, 46, 62, 0.6);
    border-left: 4px solid var(--tactical-gold);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.testimonial-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-card .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.testimonial-author strong {
    color: var(--tactical-gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--danger-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.testimonial-arrow:hover {
    background: var(--tactical-gold);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(42, 46, 62, 0.4);
    border-radius: 16px;
    border: 2px solid rgba(241, 162, 8, 0.2);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--tactical-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    margin-bottom: 20px;
    color: var(--tactical-gold);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-card a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--tactical-gold);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* ===== QUOTE FORM ===== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(42, 46, 62, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(241, 162, 8, 0.2);
}

.form-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--danger-red) 0%, var(--tactical-gold) 100%);
    width: 33.33%;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--white);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(42, 46, 62, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-label:hover {
    border-color: var(--tactical-gold);
}

.radio-label input[type="radio"]:checked + .radio-content {
    border-left: 4px solid var(--tactical-gold);
}

.radio-label input[type="radio"] {
    accent-color: var(--tactical-gold);
}

.radio-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.radio-content strong {
    color: var(--white);
    font-size: 1.1rem;
}

.radio-content small {
    color: rgba(255, 255, 255, 0.6);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(10, 14, 39, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tactical-gold);
}

.alert {
    background: rgba(241, 162, 8, 0.1);
    border-left: 4px solid var(--tactical-gold);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 30px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--tactical-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-mantis);
    border-top: 1px solid rgba(241, 162, 8, 0.2);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(241, 162, 8, 0.3);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--tactical-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--tactical-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(241, 162, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tactical-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--tactical-gold);
    color: var(--black-mantis);
    transform: translateY(-3px);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.floating-emergency {
    background: var(--danger-red);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
    }
}

.floating-whatsapp {
    background: #25D366;
    color: var(--white);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* ===== EMERGENCY PANEL ===== */
.emergency-panel {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 350px;
    background: var(--anthracite);
    border: 2px solid var(--danger-red);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    display: none;
}

.emergency-panel.show {
    display: block;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.emergency-panel h3 {
    color: var(--danger-red);
    margin-bottom: 15px;
}

.emergency-panel textarea {
    width: 100%;
    padding: 12px;
    background: rgba(10, 14, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    margin-bottom: 15px;
    resize: none;
}

.emergency-actions {
    display: flex;
    gap: 10px;
}

.emergency-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-side-carousel {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 25px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .emergency-panel {
        width: calc(100% - 100px);
        right: 90px;
        bottom: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .testimonials-container {
        padding: 0 40px;
    }

    .testimonial-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .trust-number {
        font-size: 3rem;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-arrow {
        display: none;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}
