/* Font Awesome 6.5.1 - Explicit load with font-display: swap */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2) format("woff2"),
        url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf) format("truetype");
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2) format("woff2"),
        url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf) format("truetype");
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2) format("woff2"),
        url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.ttf) format("truetype");
}

:root {
    /* Colors - Swiss Design Palette */
    --wp--preset--color--base: #F5F7FA;
    --wp--preset--color--contrast: #37474F;
    --text-color-dark: #37474F;
    --text-color-light: #ffffff;
    --link-color: #D32F2F;
    --accent-color: #D32F2F;
    --cta-color: #D32F2F;
    --cta-hover: #B71C1C;
    --border-color: #CFD8DC;
    --bg-color: #F5F7FA;

    /* Spacing */
    --wp--preset--spacing--30: 1.5rem;
    --wp--preset--spacing--40: 2rem;
    --wp--preset--spacing--50: 2.5rem;
    --wp--preset--spacing--60: 3rem;
    --wp--preset--spacing--70: 4rem;
    --wp--preset--spacing--80: 5rem;

    /* Typography */
    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    /* Language Switcher */
    --lang-switcher-bg: #fff;
    --lang-switcher-hover: #f0f0f0;
}

/* Language Switcher */
.language-selector {
    position: relative;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    z-index: 1100;
}

.current-lang {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color-dark);
    padding: 0.5rem 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: color 0.2s ease;
}

.current-lang:hover,
.current-lang:focus {
    color: var(--cta-color);
    background: transparent !important;
}

.current-lang img {
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: block;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    right: auto;
    margin-top: 0;
    padding: 0.5rem 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0, 0.4, 1);
    z-index: 1200;
}

/* Invisible bridge to prevent closing on gap hover */
.language-selector::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the content (flag + text) */
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-color-dark);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.lang-dropdown a:hover {
    background-color: #f8f9fa;
    color: var(--cta-color) !important;
    /* Removed padding shift to maintain centering */
}

.lang-dropdown img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive language switcher adjustment */
@media (max-width: 768px) {
    .language-selector {
        margin: 1rem 0;
        justify-content: center;
    }

    .lang-dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        text-align: center;
    }

    .language-selector:hover .lang-dropdown {
        display: block;
    }

    .lang-dropdown a {
        justify-content: center;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--bg-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Modern Link Styles - Remove underlines globally */
a,
a:link,
a:visited,
a:hover,
a:active {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Inline text links with animated underline - but NOT buttons */
p a:not(.btn-cta),
.about-text a:not(.btn-cta),
.services-intro a:not(.btn-cta),
.why-choose-section a:not(.btn-cta),
.page-intro a:not(.btn-cta),
.feature-text a:not(.btn-cta) {
    font-weight: 500;
    background-image: linear-gradient(var(--accent-color), var(--accent-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s ease, color 0.2s ease;
    padding-bottom: 2px;
}

p a:not(.btn-cta):hover,
.about-text a:not(.btn-cta):hover,
.services-intro a:not(.btn-cta):hover,
.why-choose-section a:not(.btn-cta):hover,
.page-intro a:not(.btn-cta):hover,
.feature-text a:not(.btn-cta):hover {
    background-size: 100% 2px;
    color: var(--cta-hover);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.has-text-align-center {
    text-align: center;
}

.is-vertically-aligned-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color-dark);
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    /* Ensure vertical alignment of text and language switcher */
}

.site-nav a {
    color: var(--text-color-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    background: none;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.site-nav a:hover {
    color: var(--accent-color);
}

.site-nav a:hover::after {
    width: 100%;
}

.site-nav a.active {
    color: var(--accent-color);
}

.site-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color-dark);
    margin: 5px 0;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* CTA Button Styles - Properly centered text */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cta-color);
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    background-image: none;
    text-align: center;
    line-height: 1.2;
}

.btn-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    color: #fff !important;
}

.btn-cta-secondary {
    background-color: transparent;
    border: 2px solid var(--cta-color);
    color: var(--cta-color) !important;
    box-shadow: none;
}

.btn-cta-secondary:hover {
    background-color: var(--cta-color);
    color: #fff !important;
}

/* Hero Section (Home Page) */
.hero-section {
    background-size: cover;
    background-position: 50% 15%;
    padding: var(--wp--preset--spacing--80);
    color: var(--wp--preset--color--base);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-columns {
    display: flex;
    gap: var(--wp--preset--spacing--60);
    align-items: center;
}

.hero-column {
    flex: 1;
}

.hero-logo {
    max-width: 100%;
    height: auto;
}

.hero-text-col h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 2rem;
}

/* Services Section (Home Page) */
.services-section {
    padding: var(--wp--preset--spacing--60) 0;
    background-color: #fff;
}

.services-intro {
    max-width: 1000px;
    margin: 0 auto var(--wp--preset--spacing--60);
}

.services-intro h2 {
    font-size: 3rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.services-grid {
    display: flex;
    gap: var(--wp--preset--spacing--50);
}

.service-col {
    flex: 1;
    text-align: center;
}

.service-img {
    margin-bottom: var(--wp--preset--spacing--30);
    overflow: hidden;
    border-radius: 8px;
}

.service-img img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s;
}

.service-col:hover .service-img img {
    transform: scale(1.05);
}

.service-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.service-col h3 a {
    color: inherit;
    background: none;
}

.service-col p {
    font-size: 1rem;
    color: var(--text-color-dark);
    line-height: 1.8;
}

/* Service Features List */
.service-features {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cta-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--wp--preset--spacing--70) 0;
    background-color: var(--bg-color);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--wp--preset--spacing--50);
    color: var(--text-color-dark);
}

.testimonials-grid {
    display: flex;
    gap: var(--wp--preset--spacing--40);
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-color-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq-section {
    padding: var(--wp--preset--spacing--70) 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--wp--preset--spacing--50);
    color: var(--text-color-dark);
}

.faq-grid {
    display: flex;
    gap: var(--wp--preset--spacing--50);
}

.faq-item {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--wp--preset--spacing--70) 0;
    padding-bottom: calc(var(--wp--preset--spacing--70) + 5em);
    background: linear-gradient(135deg, var(--cta-color) 0%, #8B0000 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-cta {
    background-color: #fff;
    color: var(--cta-color) !important;
}

.cta-section .btn-cta:hover {
    background-color: #f0f0f0;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
    color: var(--cta-color) !important;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cta-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-success {
    background-color: #27ae60;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

button[type="submit"] {
    background-color: var(--cta-color);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

button[type="submit"]:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
}

button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Page Intro Section */
.page-intro {
    padding: var(--wp--preset--spacing--50) 0;
    background-color: #fff;
}

.page-intro h1 {
    font-size: 2.5rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

.page-intro p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    max-width: 1100px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: var(--cta-color);
    background: none;
}

.breadcrumbs a:hover {
    color: var(--cta-hover);
}

/* Feature Section */
.feature-section {
    padding: var(--wp--preset--spacing--40) 0;
    background-color: #fff;
}

.feature-row {
    display: flex;
    gap: 0;
    align-items: center;
}

.feature-col {
    flex: 1;
    padding: var(--wp--preset--spacing--40);
}

.feature-image {
    overflow: hidden;
    border-radius: 8px;
}

.feature-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text h2 {
    font-size: 2rem;
    color: var(--text-color-dark);
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-color-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Reverse layout for alternating sections */
.feature-reverse .feature-row {
    flex-direction: row-reverse;
}

/* About/Contact/Services Page Hero */
.about-hero,
.contact-hero,
.services-hero {
    background-size: cover;
    background-position: center;
    padding: var(--wp--preset--spacing--80) 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero::before,
.contact-hero::before,
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.about-hero .container,
.contact-hero .container,
.services-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1,
.contact-hero h1,
.services-hero h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Content Section */
.about-content {
    padding: var(--wp--preset--spacing--80) 0;
    background-color: #fff;
}

.about-columns {
    display: flex;
    gap: var(--wp--preset--spacing--80);
    align-items: flex-start;
}

.about-col {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Founder Section */
.founder-section {
    padding: var(--wp--preset--spacing--70) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.founder-content {
    display: flex;
    gap: var(--wp--preset--spacing--60);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    flex-shrink: 0;
}

.founder-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-text h2 {
    font-size: 2rem;
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--cta-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-text p {
    color: #555;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--wp--preset--spacing--80) 0;
    padding-bottom: calc(var(--wp--preset--spacing--80) + 5em);
    background-color: #fff;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    gap: var(--wp--preset--spacing--40);
    margin-bottom: var(--wp--preset--spacing--60);
    justify-content: center;
}

.contact-info-item {
    text-align: center;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--cta-color);
    margin-bottom: 0.5rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: #666;
}

.contact-info-item a {
    background: none;
}

.btn-submit {
    background-color: var(--cta-color);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
    text-align: center;
}

.btn-submit:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: var(--wp--preset--spacing--70) 0;
    border-top-left-radius: 3em;
    border-top-right-radius: 3em;
    position: relative;
    margin-top: -5em;
}

.footer-columns {
    display: flex;
    gap: var(--wp--preset--spacing--50);
}

.footer-col {
    flex: 1;
    text-align: center;
    padding: 0 var(--wp--preset--spacing--80);
}

.footer-col h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-col hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-col a {
    color: #fff;
    transition: color 0.3s;
    background: none;
}

.footer-col a:hover {
    color: var(--accent-color);
}

/* Social Links with Icons */
.social-links-footer {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--wp--preset--spacing--30);
    margin-top: 1rem;
}

.social-links-footer a {
    color: #fff;
    font-size: 1.8rem;
    transition: color 0.3s, transform 0.3s;
    background: none;
}

.social-links-footer a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Sticky Contact Button */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.sticky-contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-contact-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.sticky-contact-toggle i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.sticky-contact-toggle .fa-times {
    display: none;
}

.sticky-contact.active .sticky-contact-toggle .fa-comment {
    display: none;
}

.sticky-contact.active .sticky-contact-toggle .fa-times {
    display: block;
}

.sticky-contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.sticky-contact.active .sticky-contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-contact-options a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
    background-image: none;
}

.sticky-contact-options a:hover {
    transform: scale(1.1);
}

.sticky-contact-options a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: #333;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.sticky-contact-options a:hover::before {
    opacity: 1;
    visibility: visible;
}

.sticky-contact-options .messenger-btn {
    background-color: #0084ff;
}

.sticky-contact-options .linkedin-btn {
    background-color: #0077b5;
}

.sticky-contact-options a i {
    font-size: 1.4rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--cta-color);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-grid {
        flex-direction: column;
    }

    .founder-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 1000;
        padding-top: 80px;
    }

    .site-nav.active {
        right: 0;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }

    .site-nav li {
        border-bottom: 1px solid #eee;
    }

    .site-nav a {
        display: block;
        padding: 1rem 0;
    }

    .hero-columns {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-col h1 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .faq-grid {
        flex-direction: column;
    }

    .feature-row {
        flex-direction: column;
    }

    .feature-reverse .feature-row {
        flex-direction: column;
    }

    .page-intro h1 {
        font-size: 2rem;
    }

    .about-columns {
        flex-direction: column;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-col {
        padding: 0 1rem;
    }

    .site-footer {
        border-top-left-radius: 2em;
        border-top-right-radius: 2em;
    }

    .sticky-contact {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
    }

    .contact-info {
        flex-direction: column;
    }
}