
/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #2e7d32;
    --primary-light: #81c784;
    --secondary-color: #1a1a1a;
    --text-dark: #212121;
    --text-light: #757575;
    --text-white: #ffffff;
    --background: #ffffff;
    --background-alt: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(76, 175, 80, 0.2);
    --transition: all 0.3s ease;
}

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

/* Prevent selection of emojis and icons globally */
.contact-icon,
.phone-icon,
.hero-logo,
.stat-item,
.service-icon,
.feature-icon,
.process-step .step-number,
.footer-emoji,
[class*="icon"] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html {
    scroll-behavior:smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
}

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

/* ===========================
   Header & Navigation
   =========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(76, 175, 80, 0.3);
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

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

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

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

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

.nav-phone {
    margin-left: 2rem;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.phone-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2e7d32 100%);
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('van.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234CAF50" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 1000px;
    margin-top: 80px;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.3);
}

.hero-logo-text {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 4rem;
    color: var(--primary-color);
    letter-spacing: 8px;
    line-height: 1;
    text-shadow: 3px 3px 6px rgba(76, 175, 80, 0.5);
    margin: 0;
}

.hero-logo-subtext {
    font-size: 1rem;
    color: var(--text-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 0.5rem;
}

.hero-title {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 4.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    margin-top: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ===========================
   Introduction Section
   =========================== */
.intro-section {
    padding: 6rem 0;
    background: var(--background);
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

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

.intro-text {
    padding-right: 2rem;
}

.section-title {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 1rem;
}

.intro-paragraph {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-hover);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
}

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

/* ===========================
   FLIP CARD STYLES
   =========================== */
.service-card-flipper {
    perspective: 1000px;
    height: 450px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card-flipper.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    flex-direction: column;
}

.service-card-front {
    background: var(--background);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card-flipper:hover .service-card-front {
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-card-back {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    transform: rotateY(180deg);
    overflow-y: auto;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    transition: transform 0.3s ease;
}

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

.service-card-front h3,
.service-card-back h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.service-card-front h3 {
    color: var(--text-dark);
}

.service-card-back h3 {
    color: var(--text-white);
}

.short-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
}

.full-desc {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    color: var(--text-white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.flip-hint {
    text-align: center;
    font-size: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.service-card-front .flip-hint {
    color: var(--primary-color);
}

.service-card-back .flip-hint {
    color: rgba(255, 255, 255, 0.8);
}

/* Old styles for backward compatibility */
.service-card {
    background: var(--background);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--primary-color);
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===========================
   Process Section
   =========================== */
.process-section {
    padding: 6rem 0;
    background: var(--background);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 2.5rem;
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.step-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===========================
   Why Us Section
   =========================== */
.why-us-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

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

.feature-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===========================
   Service Areas Section
   =========================== */
.areas-section {
    padding: 6rem 0;
    background: var(--background);
}

.areas-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.areas-text-centered {
    text-align: center;
}

.areas-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.areas-list-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.area-column h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    color: var(--text-light);
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.area-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.areas-note {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

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

.testimonial-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 6rem 0;
    background: var(--background);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-alt);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--background);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-alt);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: bold;
}

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--text-white);
}

.contact-section .section-title::after {
    background: var(--text-white);
}

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

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--text-white);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}


.contact-link {
    color: var(--text-white); /* belo */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text-black); /* crno */
}


.contact-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    word-break: break-word;
}

/* Email text styling - make it white and properly formatted */
.contact-card .email-text {
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0.75rem 0;
    opacity: 1;
}

.contact-card .email-text a {
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card .email-text a:hover {
    color: var(--text-white) !important;
    text-decoration: underline;
}

/* Copy email button styling */
.contact-card .copy-email-btn {
    background: var(--text-white);
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.contact-card .copy-email-btn:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: var(--text-white);
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.cta-btn.secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo h3 {
    font-family: 'Bebas Neue', 'Arial Black', 'Impact', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-emoji {
    flex-shrink: 0;
    user-select: none;
    display: inline-block;
    min-width: 20px;
}

.footer-contact-text {
    flex: 1;
    word-break: break-word;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
}

/* ===========================
   Animations
   =========================== */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.4s ease forwards;
    will-change: opacity, transform;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
    will-change: opacity;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.15s;
}

.delay-3 {
    animation-delay: 0.2s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .intro-content,
    .areas-content-full {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .areas-list-full {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-phone {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 35px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .areas-list-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-subtext {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo-text {
        font-size: 3rem;
    }
    
    .hero-logo-subtext {
        font-size: 0.85rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
}/* ===========================
   Google Map Section
   =========================== */
.map-section {
    padding: 6rem 0;
    background: var(--background);
}

.map-container {
    margin: 3rem 0;
    box-shadow: 0 10px 40px var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--background-alt);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-address h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-address p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.map-address p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.map-directions .cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .map-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .map-directions {
        justify-self: center;
    }
    
    .map-container iframe {
        height: 350px;
    }
}
