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

:root {
    --primary-blue: #0066cc;
    --light-blue: #e6f2ff;
    --sky-blue: #f0f8ff;
    --dark-blue: #003d7a;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --white: #ffffff;
    --black: #000000;
    --accent-blue: #0084ff;
    --primary-gradient: linear-gradient(135deg, #0066cc 0%, #0084ff 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--sky-blue);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Top Announcement Bar */
.top-announcement {
    background: var(--light-blue);
    padding: 8px 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--dark-blue);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.top-announcement a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
}

.top-announcement a:hover {
    text-decoration: underline;
}

.top-announcement .top-links {
    float: right;
    margin-right: 20px;
}

.top-announcement .top-links a {
    margin-left: 20px;
    color: var(--text-gray);
}

/* Navbar Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--black) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand .brand-subtitle {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 400;
    margin-left: 5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    font-size: 0.95rem;
    margin: 0 15px;
    transition: color 0.3s;
    padding: 8px 0 !important;
}

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

.nav-link .new-badge {
    background: var(--accent-blue);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 600;
}

.btn-primary-custom {
    background: var(--black);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #333;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary-custom {
    background: var(--white);
    border: 1px solid var(--text-gray);
    padding: 10px 24px;
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop') center/cover no-repeat;
    padding: 100px 0 100px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    /*min-height: 90vh;*/
    display: flex;
    align-items: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 248, 255, 0.9) 100%);
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,102,204,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 45px;
    opacity: 0.98;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-cta .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Features Section */
.features-section {
    background: var(--white);
    padding: 100px 0;
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.2);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
    transition: all 0.5s;
    position: relative;
    overflow: visible;
    z-index: 2;
}

.feature-icon i {
    position: relative;
    z-index: 10;
    display: block !important;
    color: white !important;
    font-size: 1.5rem !important;
}

/* Users Icon Animation - Rotating Gears */
.feature-icon.icon-users {
    animation: gearRotate 3s linear infinite;
}

.feature-icon.icon-users::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: gearPulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Building Icon Animation - Pulse */
.feature-icon.icon-building {
    animation: buildingPulse 2s ease-in-out infinite;
}

.feature-icon.icon-building::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    animation: buildingGlow 2s ease-in-out infinite;
    z-index: 1;
}

/* File Contract Icon Animation - Shake */
.feature-icon.icon-contract {
    animation: documentShake 2.5s ease-in-out infinite;
}

.feature-icon.icon-contract::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    animation: documentRipple 2.5s ease-out infinite;
    z-index: 1;
}

/* Calculator Icon Animation - Bounce */
.feature-icon.icon-calculator {
    animation: calculatorBounce 2s ease-in-out infinite;
}

.feature-icon.icon-calculator::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    animation: calculatorPulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Credit Card Icon Animation - Slide */
.feature-icon.icon-card {
    animation: cardSlide 2.5s ease-in-out infinite;
}

.feature-icon.icon-card::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    animation: cardGlow 2.5s ease-in-out infinite;
    z-index: 1;
}

/* Chart Bar Icon Animation - Grow */
.feature-icon.icon-chart {
    animation: chartGrow 2s ease-in-out infinite;
}

.feature-icon.icon-chart::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    animation: chartRipple 2s ease-out infinite;
    z-index: 1;
}

/* Animations */
@keyframes gearRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gearPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes buildingPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes buildingGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes documentShake {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(-5deg) translateY(-3px);
    }
    50% {
        transform: rotate(5deg) translateY(-5px);
    }
    75% {
        transform: rotate(-3deg) translateY(-3px);
    }
}

@keyframes documentRipple {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes calculatorBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

@keyframes calculatorPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes cardSlide {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-5px) rotate(-3deg);
    }
    50% {
        transform: translateX(5px) rotate(3deg);
    }
    75% {
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

@keyframes chartGrow {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.15);
    }
}

@keyframes chartRipple {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 18px 50px rgba(0, 102, 204, 0.6);
    animation-play-state: paused;
}

.feature-card:hover .feature-icon::before {
    animation-play-state: paused;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
    line-height: 1.4;
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.feature-list li:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

.feature-list li i {
    color: #009bdf;
    font-size: 1rem;
    background: rgba(166, 166, 166, 0.12);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Section */
.pricing-section {
    background: var(--sky-blue);
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 24px 24px 0 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    background: var(--accent-blue);
    color: white;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: translateX(-50%);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.pricing-period {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    text-align: left;
}

.pricing-features li {
    padding: 14px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.pricing-features li:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

.pricing-features li i {
    color: #009bdf;
    font-size: 1.2rem;
    background: rgba(166, 166, 166, 0.12);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Demo Signup Section */
.demo-section {
    background: rgba(255, 255, 255, 0.5);
}

.demo-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s;
}

.demo-form:hover {
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.2);
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 20px;
    transition: all 0.3s;
    background: #fafbfc;
}

.form-control-custom:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
    background: white;
    transform: translateY(-2px);
}


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

.benefits-list li {
    padding: 15px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.benefits-list li:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

.benefits-list li i {
    color: #009bdf;
    font-size: 1.3rem;
    background: rgba(166, 166, 166, 0.12);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(250, 251, 252, 0.5);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.12);
    height: 100%;
    border: 2px solid rgba(99, 102, 241, 0.15);
    transition: all 0.5s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(255, 255, 255, 1);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-blue);
}

.testimonial-info p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 132, 255, 0.03) 100%);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-form:hover {
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px;
    color: var(--dark-blue);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.contact-form h3,
.contact-info h3 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after,
.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 2px;
}

.contact-items-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 132, 255, 0.08) 100%);
    border-radius: 16px;
    transition: all 0.4s;
    border: 1px solid rgba(0, 102, 204, 0.15);
    position: relative;
    overflow: visible;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 132, 255, 0.12) 100%);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    z-index: 2;
}

/* Email Icon Animation - Opening/Closing Envelope */
.contact-item.email-item i {
    animation: envelopeOpen 2.5s ease-in-out infinite;
}

.contact-item.email-item .contact-icon-wrapper {
    animation: envelopeBgPulse 2.5s ease-in-out infinite;
}

@keyframes envelopeOpen {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(1.15) translateY(-3px);
    }
    50% {
        transform: scale(1.2) translateY(-5px);
    }
    75% {
        transform: scale(1.15) translateY(-3px);
    }
}

@keyframes envelopeBgPulse {
    0%, 100% {
        background: rgba(0, 102, 204, 0.1);
    }
    50% {
        background: rgba(0, 102, 204, 0.2);
    }
}

/* Phone Icon Animation - Ringing */
.contact-item.phone-item {
    position: relative;
}

.contact-item.phone-item i {
    animation: phoneRing 1.2s ease-in-out infinite;
}

.contact-item.phone-item .contact-icon-wrapper {
    position: relative;
}

.contact-item.phone-item .contact-icon-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: ringPulse 1.2s ease-out infinite;
    opacity: 0;
}

.contact-item.phone-item .contact-icon-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: ringPulse 1.2s ease-out infinite 0.4s;
    opacity: 0;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    10% {
        transform: rotate(-12deg) scale(1.1);
    }
    20% {
        transform: rotate(12deg) scale(1.1);
    }
    30% {
        transform: rotate(-12deg) scale(1.1);
    }
    40% {
        transform: rotate(12deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* Address Icon Animation - Presentable Location Pin */
.contact-item.address-item i {
    animation: locationBounce 2s ease-in-out infinite;
}

.contact-item.address-item .contact-icon-wrapper {
    position: relative;
    animation: locationGlow 2s ease-in-out infinite;
}

.contact-item.address-item .contact-icon-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.15);
    border-radius: 50%;
    animation: locationRipple 2s ease-out infinite;
}

.contact-item.address-item .contact-icon-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    animation: locationRipple 2s ease-out infinite 0.5s;
}

@keyframes locationBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.1);
    }
    50% {
        transform: translateY(-8px) scale(1.15);
    }
    75% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes locationGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
    }
}

@keyframes locationRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.contact-item div h5 {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
}

.contact-item div p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced Contact Item Styling */
.contact-item {
    overflow: visible;
}

.contact-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item.email-item .contact-icon-wrapper {
    background: rgba(0, 102, 204, 0.1);
}

.contact-item.phone-item .contact-icon-wrapper {
    background: rgba(0, 102, 204, 0.1);
}

.contact-item.address-item .contact-icon-wrapper {
    background: rgba(0, 102, 204, 0.1);
}

/* Website Icon Animation - Rotating Globe */
.contact-item.website-item i {
    animation: globeRotate 3s linear infinite;
}

.contact-item.website-item .contact-icon-wrapper {
    position: relative;
    animation: globeGlow 2.5s ease-in-out infinite;
}

.contact-item.website-item .contact-icon-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 50%;
    animation: globePulse 2.5s ease-out infinite;
}

.contact-item.website-item .contact-icon-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 102, 204, 0.15);
    border-radius: 50%;
    animation: globePulse 2.5s ease-out infinite 0.6s;
}

@keyframes globeRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes globeGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
    }
}

@keyframes globePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.contact-item.website-item .contact-icon-wrapper {
    background: rgba(0, 102, 204, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #002d5a 100%);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

body > footer:last-child {
    margin-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand img {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-top: 15px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li .footer-link {
    display: block;
    line-height: 1.6;
    white-space: normal;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
    border-color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 50px;
    padding-top: 25px;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Remove white space after footer */
footer.footer:last-child {
    margin-bottom: 0;
}

body {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Alert Messages */
.alert-custom {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Buttons Mobile Responsive */
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-primary-custom:last-child,
    .btn-secondary-custom:last-child {
        margin-bottom: 0;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 80px 0;
    }
    
    /* Section Padding Mobile */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Feature Cards Mobile */
    .feature-card {
        margin-bottom: 25px;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card {
        margin-bottom: 25px;
    }
    
    /* Contact Form Mobile */
    .contact-form,
    .contact-info {
        margin-bottom: 25px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    /* Navbar Mobile */
    .navbar-brand12 img {
        height: 50px !important;
    }
    
    .nav-link {
        margin: 5px 0;
        padding: 10px 0 !important;
    }
    
    /* Why PMS Section Mobile */
    .why-pms-section .why-card {
        margin-bottom: 25px;
    }
    
    /* Inline styled buttons mobile fix */
    .btn-primary-custom[style*="margin-right"],
    .btn-secondary-custom[style*="margin-right"] {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    /* Button group mobile */
    .button-group-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .button-group-mobile .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .demo-form {
        padding: 30px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .contact-form h3,
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    /* See How Our Software Works - Mobile Responsive (Mobile-First Design) */
    .property-slider-section {
        padding: 25px 0 15px;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 132, 255, 0.03) 100%) !important;
    }
    
    /* Mobile - Images clickable */
    .slider-image-clickable {
        cursor: pointer !important;
        pointer-events: auto !important;
        transition: transform 0.2s ease;
    }
    
    .slider-image-clickable:active {
        transform: scale(0.98);
    }
    
    /* Mobile - Modal visible when active */
    @media (max-width: 768px) {
        .image-modal.active {
            display: flex !important;
        }
    }
    
    .slider-title {
        margin-bottom: 20px !important;
        padding: 0 10px;
    }
    
    .slider-title h2 {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3;
        font-weight: 700;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 5px;
        max-width: 100%;
    }
    
    .slider-title p {
        font-size: 0.8rem !important;
        margin-bottom: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 5px;
        max-width: 100%;
    }
    
    /* Desktop - Images not clickable */
    .slider-image-clickable {
        cursor: default;
        pointer-events: none;
    }
    
    /* Image Modal - Hidden on Desktop */
    .image-modal {
        display: none !important;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        overflow: auto;
        animation: fadeIn 0.3s ease;
    }
    
    /* Desktop - Modal always hidden */
    @media (min-width: 769px) {
        .image-modal {
            display: none !important;
        }
        
        .image-modal.active {
            display: none !important;
        }
    }
    
    .image-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .image-modal-content {
        max-width: 100%;
        max-height: 90vh;
        margin: auto;
        display: block;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .image-modal-content img {
        width: 100%;
        height: auto;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
    }
    
    .image-modal-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        background: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .image-modal-close:hover,
    .image-modal-close:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @media (max-width: 768px) {
        .image-modal-close {
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            font-size: 1.5rem;
        }
        
        .image-modal-content {
            padding: 15px;
        }
        
        .image-modal-content img {
            max-height: 80vh;
        }
    }
    
    .software-slider-container {
        padding: 0;
        border-radius: 0;
        margin: 0;
        box-shadow: none;
        border: none;
        background: transparent;
        max-width: 100%;
    }
    
    .software-slider-wrapper {
        height: auto;
        min-height: 280px;
        max-height: 400px;
        border-radius: 12px;
        margin-bottom: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background: white;
        border: 1px solid rgba(0, 102, 204, 0.1);
    }
    
    .software-slide {
        padding: 5px;
    }
    
    .software-slide img {
        object-fit: contain;
        object-position: center;
        border-radius: 8px;
        max-height: 100%;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 102, 204, 0.2);
    }
    
    .slider-arrow.prev {
        left: 8px;
    }
    
    .slider-arrow.next {
        right: 8px;
    }
    
    .slider-arrow i {
        font-size: 1rem;
        color: var(--primary-blue);
    }
    
    .slide-caption {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0;
        padding: 10px 15px;
        font-size: 0.8rem;
        display: block;
        width: 100%;
        text-align: center;
        white-space: normal;
        border-radius: 8px;
        opacity: 1 !important;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
        color: white;
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(0, 102, 204, 0.2);
    }
    
    .slider-caption-container {
        margin-top: 0;
        min-height: auto;
        padding: 0;
        width: 100%;
    }
    
    .slider-navigation {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 12px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        background: rgba(0, 102, 204, 0.3);
        border: 1px solid rgba(0, 102, 204, 0.4);
    }
    
    .slider-dot.active {
        width: 24px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
        border-color: var(--primary-blue);
    }
}

@media (max-width: 480px) {
    /* Buttons Extra Small Mobile */
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero Section Extra Small */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Section Padding Extra Small */
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* See How Our Software Works - Extra Small Mobile (Mobile App Style) */
    .property-slider-section {
        padding: 20px 0 12px;
    }
    
    .slider-title {
        margin-bottom: 15px !important;
        padding: 0 8px;
    }
    
    .slider-title h2 {
        font-size: 1.25rem !important;
        margin-bottom: 6px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        padding: 0 4px;
        max-width: 100%;
    }
    
    .slider-title p {
        font-size: 0.75rem !important;
        margin-bottom: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 4px;
        max-width: 100%;
    }
    
    .software-slider-container {
        padding: 0;
    }
    
    .software-slider-wrapper {
        min-height: 240px;
        max-height: 320px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-arrow.prev {
        left: 6px;
    }
    
    .slider-arrow.next {
        right: 6px;
    }
    
    .slider-arrow i {
        font-size: 0.9rem;
    }
    
    .slide-caption {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .slider-navigation {
        margin-top: 10px;
        gap: 5px;
        padding: 0 8px;
    }
    
    .slider-dot {
        width: 7px;
        height: 7px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
    
    .screen-body {
        padding: 12px;
        height: calc(100% - 45px);
    }
    
    .software-demo-item {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    /* Why PMS Section - Mobile */
    .why-pms-section .why-card {
        margin-bottom: 25px;
    }
    
    .why-pms-section .why-card > div:first-child {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .why-pms-section h3 {
        font-size: 1.3rem !important;
    }
    
    .why-pms-section .row.mt-5 > .col-lg-12 > div {
        padding: 30px 20px !important;
    }
    
    .why-pms-section .row.mt-5 h3 {
        font-size: 1.5rem !important;
    }
    
    .why-pms-section .row.mt-5 p {
        font-size: 1rem !important;
    }
    
    .why-pms-section .row.mt-5 .col-md-4 {
        margin-bottom: 25px;
    }
    
    .why-pms-section .row.mt-5 .col-md-4 > div:first-child {
        font-size: 2rem !important;
    }
    
    /* Contact Form Extra Small */
    .demo-form,
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    /* Footer Extra Small */
    .footer {
        padding: 50px 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Additional Enhancements */
.hero-section {
    animation: pulse 8s ease-in-out infinite;
}

.section-padding {
    position: relative;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

/* Additional Card Enhancements */
.section-padding:not(.hero-section) {
    background: #ffffff;
}

.section-padding:nth-child(even):not(.hero-section) {
    background: rgba(250, 251, 252, 0.3);
}

/* Stats Section Enhancement */
.stats-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    margin: 40px 0;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

/* Animated Video Section - Office Demo */
.property-slider-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 132, 255, 0.05) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.software-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.25);
    background: var(--white);
    padding: 40px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.software-slider-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid rgba(0, 102, 204, 0.15);
    margin-bottom: 80px;
}

.software-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.software-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.95);
}

.software-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.software-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
}

.slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 102, 204, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-dot.active {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    width: 30px;
    border-radius: 6px;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.slider-dot:hover {
    background: rgba(0, 102, 204, 0.8);
    border-color: var(--primary-blue);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.slider-arrow:hover i {
    color: white;
}

.slide-caption {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
    white-space: nowrap;
}

.slide-caption.show {
    opacity: 1;
}

.slider-caption-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
    min-height: 50px;
    text-align: center;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-title {
    text-align: center;
    margin-bottom: 60px;
}

.slider-title h2 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slider-title p {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-item {
    padding: 30px;
    transition: all 0.3s;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why PMS Section */
.why-pms-section {
    position: relative;
}

.why-card {
    position: relative;
    background: white; 
    border-radius: 16px; 
    padding: 40px 30px; 
    height: 100%; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
    transition: all 0.4s; 
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2) !important;
}

.why-card:hover > div:first-child {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4) !important;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.why-card div {
    width: 70px; 
    height: 70px; 
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 25px; 
    font-size: 2rem; 
    color: white; 
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Mobile Responsive for Scroll to Top Button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}