/* Modern Design System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00593f;
    --primary-dark: #004d36;
    --secondary: #fbbf24;
    --dark: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

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

/* Legacy text logo styling (keep for fallback) */
.logo-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-grow: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gray-700);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-600);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-link {
    background: transparent;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 0.875rem;
    align-self: flex-start;
}

.btn-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.btn-block {
    width: 100%;
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 50px;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu .btn-secondary {
    background: var(--primary);
    color: var(--secondary);
}

.mobile-menu .btn-primary {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video iframe {
    width: 120%;
    height: 120%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video-mobile {
    display: none;
}

.hero-video-desktop {
    display: block;
}

/* Hide YouTube UI elements by cropping */
.hero-video {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
    min-height: 350px;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-display: swap;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    display: block;
    margin-top: 1rem;
    line-height: 1.3;
}

.typing-text {
    color: var(--secondary);
    font-weight: 700;
    display: inline-block;
    min-width: 150px;
    position: relative;
}

.typing-text:after {
    content: '|';
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

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

.quote-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin-top: 3rem;
}

.quote-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: var(--white);
}

.quote-form button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
}

/* Trust Section */
.trust-section {
    background: var(--gray-100);
    padding: 4rem 0;
}

.trust-header {
    text-align: left;
    margin-bottom: 3rem;
}

.trust-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    margin: 0;
}

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

.platform-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-icon {
    width: 40px;
    height: 40px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-score {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.rating-count {
    font-size: 0.825rem;
    color: var(--gray-600);
    padding-left: 0.5rem;
    border-left: 1px solid var(--gray-300);
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
    align-items: stretch;
}

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

.service-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.service-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.2;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 0.85rem;
    flex: 1;
}

/* Services Include Section */
.services-include {
    background: var(--gray-50);
    padding: 3rem 0;
}

.include-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.include-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.include-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.include-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    padding: 8px;
}

.include-icon svg {
    width: 100%;
    height: 100%;
}

.include-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
    line-height: 1.2;
}

.include-card p {
    color: var(--gray-600);
    line-height: 1.4;
    font-size: 0.85rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.1;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.feature-icon {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.about-reviews-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    height: 100%;
    justify-content: stretch;
}

.about-review-card {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-review-card .review-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.about-review-card .review-text {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-review-card .review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.review-source {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.review-source:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.about-review-card .author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.about-reviews-stats .about-stats {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex: 1 1 0;
    align-items: center;
}


.stat-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: 8px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-reviews-stats .stat-card {
    background: transparent;
    padding: 0.5rem;
    box-shadow: none;
    border-radius: 0;
    min-height: auto;
}

.about-reviews-stats .stat-number {
    font-size: 2rem;
}

.about-reviews-stats .stat-label {
    font-size: 0.75rem;
}


.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-700);
}

.author-name {
    font-weight: 700;
    color: var(--dark);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Additional Services Section */
.additional-services {
    padding: 3rem 0;
    background: var(--white);
}

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

.additional-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.additional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.additional-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.popular-tag {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.additional-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-item.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.pricing-amount {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-500);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gray-50);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-300);
}

.contact-hours h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-hours p {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    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(--primary);
}

.form-group textarea {
    resize: vertical;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h4 a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section p {
    color: var(--gray-400);
    line-height: 1.7;
}

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

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

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-logo-link {
    display: inline-block;
    transition: var(--transition);
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}

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

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 999;
}

.floating-call-btn {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(100px);
    text-decoration: none;
}

.floating-quote-btn {
    min-width: 140px;
    height: 48px;
    padding: 0 20px;
    background: var(--gray-700);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(100px);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.floating-call-btn.visible,
.floating-quote-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
}

.floating-quote-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    z-index: 1000;
    transition: var(--transition);
    transform: translateY(0);
}

.cookie-consent.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-icon {
    display: none;
}

.cookie-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-text h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.cookie-text p {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    white-space: nowrap;
}

.cookie-settings {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-600);
}

.cookie-settings:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--gray-500);
}

.cookie-accept {
    background: var(--white);
    color: var(--dark);
}

.cookie-accept:hover {
    background: var(--gray-100);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-text p {
        display: none;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1.25rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
}

.cookie-category p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--primary);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-reject-all {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.cookie-reject-all:hover {
    background: var(--gray-50);
}

.cookie-save-settings {
    background: var(--primary);
    color: var(--white);
}

.cookie-save-settings:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }

    .hero-video-mobile iframe {
        width: 200%; /* Wider to crop vertical video to fill horizontal space */
        height: 150%;
        min-height: 120vh; /* Taller to ensure full coverage */
    }

    .logo-img {
        height: 50px;
        max-width: 180px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .typing-text {
        display: inline-block;
        min-width: 120px;
    }
    
    .quote-form {
        flex-direction: column;
    }
    
    .quote-form input {
        min-width: 100%;
    }
    
    .trust-platforms {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-image {
        width: 100%;
        height: 150px;
    }
    
    .include-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-text .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .about-reviews-stats {
        max-width: 100%;
        order: 2;
        gap: 1rem;
        height: auto;
    }
    
    .about-review-card {
        padding: 1rem;
        flex: none;
    }
    
    .about-review-card .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .about-review-card .review-stars {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .about-reviews-stats .about-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem;
        gap: 1rem;
        flex: none;
    }
    
    .about-reviews-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .about-reviews-stats .stat-label {
        font-size: 0.65rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-item.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-section {
        order: -1;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 45px;
        max-width: 150px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .include-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-reviews-stats .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .about-reviews-stats .stat-card {
        padding: 0.5rem 0.25rem;
        text-align: center;
    }
    
    .about-reviews-stats .stat-number {
        font-size: 1.25rem;
        font-weight: 900;
    }
    
    .about-reviews-stats .stat-label {
        font-size: 0.6rem;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.25rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-call-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-call-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-quote-btn {
        min-width: 120px;
        height: 44px;
        padding: 0 16px;
        font-size: 0.875rem;
    }
    
    .floating-quote-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.success-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.success-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.3s ease-out;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.success-message {
    text-align: left;
    margin-bottom: 2rem;
}

.success-message p {
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
}

.success-steps {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.success-steps li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.success-steps span:last-child {
    color: var(--gray-700);
    line-height: 1.4;
}

.success-contact {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
}

.success-contact p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.success-contact a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
}

.success-contact a:hover {
    text-decoration: underline;
}

.success-close-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    min-width: 160px;
}

.success-close-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .success-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .success-title {
        font-size: 1.5rem;
    }

    .success-steps li {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .success-contact {
        padding: 1.25rem;
    }
}