/* ==========================================================
   SignGuru.net – Enhanced Stylesheet (Round 3)
   Color palette:
     Dark Teal  : #26423B
     Orange     : #F78700 / #E5A500 (gold yellow)
     White      : #FFFFFF
     Body Text  : #333333
   ========================================================== */

:root {
    --color-dark-teal: #26423B;
    --color-dark-teal-deep: #1a2e28;
    --color-orange: #F78700;
    --color-orange-hover: #e07a00;
    --color-gold: #E5A500;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-body-text: #333333;
    --color-light-text: #555555;
    --color-bg-light: #f5f7f6;
    --color-border: #e0e0e0;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --container-max: 1200px;
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 14px 44px rgba(0, 0, 0, 0.14);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-body-text);
    font-size: 16px;
    line-height: 1.75;
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark-teal);
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Section Label (subtitle/eyebrow) ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-orange);
    margin-bottom: 10px;
}

.section-label-light {
    color: var(--color-gold);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.btn-primary:hover {
    background: var(--color-orange-hover);
    border-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 135, 0, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark-teal);
}

.btn-phone {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
    font-size: 14px;
    padding: 11px 22px;
    border-radius: var(--radius);
}

.btn-phone:hover {
    background: var(--color-orange-hover);
    border-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 135, 0, 0.3);
}

.btn-large {
    padding: 16px 42px;
    font-size: 16px;
}

.btn-dark {
    background: var(--color-dark-teal);
    color: var(--color-white);
    border-color: var(--color-dark-teal);
    padding: 15px 42px;
    font-size: 16px;
}

.btn-dark:hover {
    background: #1a2e28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 66, 59, 0.4);
}

/* =================== NAVBAR =================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-dark-teal);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a.nav-item {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    padding: 5px 0;
    position: relative;
}

.nav-links a.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition);
}

.nav-links a.nav-item:hover::after {
    width: 100%;
}

.nav-links a.nav-item:hover {
    color: var(--color-orange);
}

.nav-phone-wrapper {
    margin-left: 20px;
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =================== HERO =================== */
.hero-section {
    background: linear-gradient(180deg, var(--color-dark-teal) 50%, var(--color-black) 100%);
    padding: 150px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content .section-label {
    color: var(--color-gold);
}

.hero-image {
    flex: 1;
}

.hero-title {
    color: var(--color-white);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Shape divider — smooth wave, no gaps */
.hero-shape-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-shape-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}

.hero-shape-bottom .shape-fill {
    fill: var(--color-white);
}

/* =================== SECTION COMMON =================== */
section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 55px;
}

.section-header h2 {
    color: var(--color-dark-teal);
}

.section-desc {
    color: var(--color-light-text);
    font-size: 16px;
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =================== FEATURE CARDS (with hover) =================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--color-dark-teal);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-img-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-img-wrap img {
    width: 100%;
    transition: var(--transition);
}

.feature-card:hover .feature-img-wrap img {
    transform: scale(1.05);
}

.feature-text {
    padding: 28px;
    transition: var(--transition);
}

.feature-text h3 {
    font-size: 1.2rem;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.75;
}

.feature-card:hover .feature-text h3 {
    color: var(--color-gold);
}

.feature-card:hover .feature-text p {
    color: rgba(255, 255, 255, 0.85);
}

/* =================== 10 SEC CHECK-IN =================== */
.ten-seconds-section {
    padding: 0;
}

.ten-seconds-bg {
    background: linear-gradient(135deg, var(--color-dark-teal), #3d6b5e);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.ten-sec-header {
    position: relative;
    margin-bottom: 55px;
}

.ten-sec-ellipse {
    position: absolute;
    top: -50px;
    left: -30px;
    width: 120px;
    opacity: 0.15;
    z-index: 0;
}

.ten-sec-header h2 {
    color: var(--color-white);
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
}

.ten-sec-header p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.steps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 35px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(247, 135, 0, 0.35);
}

.step-icon {
    width: 55px;
    height: 55px;
    margin: 10px auto 22px;
    color: var(--color-dark-teal);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    color: var(--color-dark-teal);
    font-size: 1.15rem;
}

.step-card p {
    color: var(--color-light-text);
    font-size: 15px;
    margin-bottom: 0;
}

/* =================== VIDEO CAROUSEL =================== */
.video-showcase-section {
    background: var(--color-bg-light);
}

.video-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.video-tab {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    padding: 11px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-body-text);
    cursor: pointer;
    transition: var(--transition);
}

.video-tab:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.video-tab.active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

.video-stage {
    position: relative;
}

.video-slide {
    display: none;
    animation: fadeSlide 0.4s ease;
}

.video-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
    color: var(--color-light-text);
    font-size: 15px;
}

.video-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 22px;
}

.video-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-dark-teal);
    background: transparent;
    color: var(--color-dark-teal);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-arrow:hover {
    background: var(--color-dark-teal);
    color: var(--color-white);
}

/* =================== SOFTWARE FEATURES =================== */
.software-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.software-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
    border: 1px solid #eee;
}

.software-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: var(--color-orange);
}

.software-img-wrap {
    padding: 22px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.software-img-wrap img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    transition: var(--transition);
}

.software-card:hover .software-img-wrap img {
    transform: scale(1.08);
}

.software-card h3 {
    padding: 0 22px;
    font-size: 1.05rem;
    color: var(--color-dark-teal);
}

.software-card:hover h3 {
    color: var(--color-orange);
}

.software-card p {
    padding: 0 22px 22px;
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.75;
}

/* =================== PMS INTEGRATION =================== */
.pms-section {
    background: var(--color-bg-light);
}

.pms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pms-block {
    background: var(--color-white);
    padding: 42px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.pms-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.pms-block h3 {
    font-size: 1.15rem;
}

.pms-icon {
    width: 120px;
    margin: 18px auto;
}

/* =================== GO GREEN =================== */
.go-green-section {
    background: linear-gradient(135deg, var(--color-dark-teal) 0%, #1a2e28 100%);
    color: var(--color-white);
    padding: 90px 0;
}

.go-green-section h2 {
    color: var(--color-white);
}

.go-green-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* =================== ABOUT US =================== */
.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
}

.about-us-section a {
    color: var(--color-orange);
}

.about-us-section a:hover {
    text-decoration: underline;
}

/* =================== PRICING (centered) =================== */
.pricing-section {
    background: var(--color-bg-light);
}

.price-card-center {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.price-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border-top: 5px solid var(--color-orange);
    padding: 45px 55px;
    box-shadow: var(--shadow-card);
    max-width: 560px;
    width: 100%;
    text-align: left;
}

.price-tag {
    font-size: 1.9rem;
    color: var(--color-orange);
    margin-bottom: 22px;
}

.price-features {
    margin: 22px 0 32px;
}

.price-features li {
    padding: 14px 0 14px 32px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: bold;
}

/* =================== BRANDS =================== */
.pms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 35px 0 45px;
}

.pms-tag {
    display: inline-block;
    padding: 9px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.pms-tag:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-2px);
}

/* Universal PMS CTA */
.pms-universal-cta {
    margin: 30px auto 0;
    max-width: 750px;
    background: linear-gradient(135deg, rgba(38, 66, 59, 0.06), rgba(247, 135, 0, 0.06));
    border: 2px solid var(--color-orange);
    border-radius: var(--radius-lg);
    padding: 22px 30px;
    text-align: center;
}

.pms-universal-cta p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark-teal);
    line-height: 1.6;
}

.pms-universal-cta a {
    color: var(--color-orange);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pms-universal-cta a:hover {
    color: var(--color-orange-hover);
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    padding: 35px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.logo-cloud img {
    height: 50px;
    transition: var(--transition);
    filter: grayscale(80%);
    opacity: 0.7;
}

.logo-cloud img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

/* =================== COMPLIANCE CERTIFICATIONS =================== */
.compliance-section {
    padding: 70px 0;
    background: var(--color-bg-light);
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    min-width: 110px;
    transition: var(--transition);
}

.compliance-badge:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(247, 135, 0, 0.12);
}

.compliance-badge img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.badge-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-dark-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =================== FAQ SECTION =================== */
.faq-section {
    background: var(--color-white);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--color-bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--color-orange);
    box-shadow: 0 4px 18px rgba(247, 135, 0, 0.1);
}

.faq-question {
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark-teal);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 700;
    color: var(--color-orange);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-item[open] .faq-question {
    color: var(--color-orange);
    background: rgba(247, 135, 0, 0.04);
}

.faq-question:hover {
    color: var(--color-orange);
}

.faq-answer {
    padding: 0 28px 22px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-light-text);
    margin: 0;
}

.faq-answer a {
    color: var(--color-orange);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* =================== CONTACT FORM =================== */
.contact-section {
    padding: 0;
}

.contact-bg {
    background: linear-gradient(180deg, var(--color-dark-teal) 60%, #0b1a14 100%);
    padding: 90px 0;
}

.contact-card {
    background: var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 55px 45px;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.contact-card h2 {
    color: var(--color-white);
    font-size: 2.1rem;
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--color-white);
    color: var(--color-body-text);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus {
    box-shadow: 0 0 0 3px rgba(38, 66, 59, 0.3);
}

.captcha-row {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.math-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 22px;
    border-radius: var(--radius);
}

.math-captcha label {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.math-captcha input {
    width: 90px;
    padding: 9px 14px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    text-align: center;
    outline: none;
}

.form-status {
    margin-top: 16px;
    font-weight: 600;
    font-size: 15px;
}

.form-status.success {
    color: #155724;
}

.form-status.error {
    color: #721c24;
}

/* =================== FOOTER =================== */
.site-footer {
    background: var(--color-dark-teal);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 65px;
}

.footer-content {
    padding-bottom: 35px;
}

.footer-logo-wrap {
    margin-bottom: 22px;
}

.footer-logo-img {
    height: 48px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 28px 0;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-circle:hover {
    background: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 165, 0, 0.4);
}

/* Footer Suite Badge */
.footer-suite-badge {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.footer-suite-badge a {
    color: var(--color-gold);
    font-weight: 600;
}

.footer-suite-badge a:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

/* Footer Contact Pills */
.footer-contact-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-pill svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

a.footer-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-pill-location {
    cursor: default;
}

/* Footer Suite Products */
.footer-suite-products {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-suite-heading {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.footer-suite-list {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.suite-product {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.suite-product.active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

.suite-product a {
    color: inherit;
}

.suite-product:not(.active):hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-bottom {
    margin-top: 32px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.disclaimer-heading {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
}

.disclaimer-body {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 820px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =================== SCROLL ANIMATIONS =================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--color-dark-teal);
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-phone-wrapper {
        display: none;
    }

    .hero-section {
        padding: 125px 0 85px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    section {
        padding: 60px 0;
    }

    .features-grid,
    .steps-cards,
    .software-grid,
    .pms-grid,
    .about-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 38px 22px;
    }

    .contact-card h2 {
        font-size: 1.6rem;
    }

    .social-icons {
        gap: 12px;
    }

    .social-circle {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .pms-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .video-tab {
        font-size: 12px;
        padding: 9px 16px;
    }

    .price-card {
        padding: 35px 25px;
    }

    .price-tag {
        font-size: 1.6rem;
    }
}