/* Access Control Systems Page Styles */

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (max-width: 991px) {
    .banner {
        margin-top: 0 !important;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Hero Section */
.access-hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: visible;
    /*background-color: #f5f5f5;*/
    background-image: url('../../img/patron-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    z-index: 1;
}

.access-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(168, 213, 226, 0.85) 0%, rgba(123, 184, 208, 0.75) 100%);*/
    z-index: 1;
}

.access-hero-container {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    z-index: 2;
    will-change: transform;
}

.access-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.access-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-hero-textbox {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(168, 213, 226, 0.95) 0%, rgba(123, 184, 208, 0.95) 100%);
    padding: 50px 40px;
    max-width: 500px;
    margin-left: 5%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-hero-textbox:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .access-hero-textbox:hover {
        transform: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
}

.access-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

.access-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #92BF24, #7bb8d0);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.access-hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a27;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Solutions for Your Industry Section */
.solutions-industry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.solutions-industry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(146, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(123, 184, 208, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.solutions-industry-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s ease-out;
}

.solutions-title {
    font-size: 48px;
    font-weight: 700;
    color: #2a2a27;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.solutions-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #92BF24, #7bb8d0, transparent);
    border-radius: 2px;
}

.solutions-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 30px auto 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
    animation: fadeInUp 0.8s ease-out both;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }

.solution-card-inner {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(146, 191, 36, 0.1);
}

.solution-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #92BF24, #7bb8d0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.solution-card-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(146, 191, 36, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card:hover .solution-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(146, 191, 36, 0.2);
    border-color: rgba(146, 191, 36, 0.3);
}

.solution-card:hover .solution-card-inner::before {
    transform: scaleX(1);
}

.solution-card:hover .solution-card-inner::after {
    opacity: 1;
}

.solution-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(146, 191, 36, 0.1) 0%, rgba(123, 184, 208, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(146, 191, 36, 0.2);
}

.solution-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(146, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #92BF24 0%, #7bb8d0 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(146, 191, 36, 0.3);
}

.solution-card:hover .solution-icon svg path,
.solution-card:hover .solution-icon svg rect,
.solution-card:hover .solution-icon svg circle,
.solution-card:hover .solution-icon svg text {
    stroke: #ffffff;
    fill: #ffffff;
}

.solution-card:hover .solution-icon-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.solution-icon svg {
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
}

.solution-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a27;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-card-title {
    color: #92BF24;
}

.solution-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    flex: 1;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #92BF24, #7bb8d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-features li::before {
    opacity: 1;
    transform: scale(1);
}

.solution-features li {
    transition: transform 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.solution-card:hover .solution-features li {
    transform: translateX(5px);
    color: #2a2a27;
}

.solution-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.solution-link {
    color: #92BF24;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.solution-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #92BF24;
    transition: width 0.3s ease;
}

.solution-card:hover .solution-link {
    color: #7bb8d0;
    transform: translateX(5px);
}

.solution-card:hover .solution-link::after {
    width: 100%;
}

/* Great For Section */
.great-for-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: visible;
    z-index: 2;
    margin-top: 0;
    min-height: 400px;
    display: block;
    visibility: visible;
}

.great-for-section .container {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.great-for-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(146, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.great-for-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2a2a27;
    margin-bottom: 50px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: fadeInUp 0.8s ease-out;
}

.great-for-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.great-for-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #92BF24, transparent);
    border-radius: 2px;
}

.great-for-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.great-for-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 calc(16.666% - 30px);
    min-width: 150px;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.great-for-item:nth-child(1) { animation-delay: 0.1s; }
.great-for-item:nth-child(2) { animation-delay: 0.2s; }
.great-for-item:nth-child(3) { animation-delay: 0.3s; }
.great-for-item:nth-child(4) { animation-delay: 0.4s; }
.great-for-item:nth-child(5) { animation-delay: 0.5s; }
.great-for-item:nth-child(6) { animation-delay: 0.6s; }

.great-for-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.great-for-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid #92BF24;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.great-for-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(146, 191, 36, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.great-for-icon:hover {
    background-color: #92BF24;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(146, 191, 36, 0.4);
}

.great-for-icon:hover::before {
    width: 120px;
    height: 120px;
}

.great-for-icon:hover svg path,
.great-for-icon:hover svg rect,
.great-for-icon:hover svg circle {
    stroke: #ffffff;
    fill: #ffffff;
}

.great-for-icon svg {
    width: 50px;
    height: 50px;
}

.great-for-label {
    font-size: 14px;
    color: #2a2a27;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease, transform 0.3s ease;
}

.great-for-item:hover .great-for-label {
    color: #92BF24;
    transform: translateY(-2px);
}

/* Why and How Section */
.why-how-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
    position: relative;
    overflow: visible;
    z-index: 2;
    min-height: 600px;
    display: block;
    visibility: visible;
}

.why-how-section .container {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.why-how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(123, 184, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(146, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.why-how-item {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.why-how-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-how-item:nth-child(1) {
    animation-delay: 0.1s;
}

.why-how-item:nth-child(2) {
    animation-delay: 0.3s;
}

.why-how-title {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a27;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.why-how-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #92BF24, #7bb8d0);
    border-radius: 2px;
    animation: scaleIn 0.6s ease-out 0.3s both;
}

.why-how-text {
    font-size: 16px;
    line-height: 1.7;
    color: #363434;
    margin-bottom: 30px;
    flex: 1;
}

/* Why Choose Paxton Section */
.why-choose-header {
    margin-bottom: 40px;
}

.why-choose-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 600px;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.why-choose-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    border: 1px solid rgba(146, 191, 36, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-choose-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #92BF24, #7bb8d0);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.why-choose-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(146, 191, 36, 0.15);
    border-color: rgba(146, 191, 36, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.why-choose-feature:hover::before {
    transform: scaleY(1);
}

.why-choose-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(146, 191, 36, 0.1) 0%, rgba(123, 184, 208, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(146, 191, 36, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(146, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.why-choose-feature:hover .why-choose-icon {
    background: linear-gradient(135deg, #92BF24 0%, #7bb8d0 100%);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(146, 191, 36, 0.3);
}

.why-choose-feature:hover .why-choose-icon::after {
    width: 100px;
    height: 100px;
}

.why-choose-feature:hover .why-choose-icon svg path,
.why-choose-feature:hover .why-choose-icon svg rect,
.why-choose-feature:hover .why-choose-icon svg circle {
    stroke: #ffffff;
    fill: #ffffff;
}

.why-choose-icon svg {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.why-choose-content {
    flex: 1;
}

.why-choose-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a27;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.why-choose-feature:hover .why-choose-feature-title {
    color: #92BF24;
}

.why-choose-feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.why-choose-feature:hover .why-choose-feature-text {
    color: #555;
}

/* Quote Contact Form */
.quote-form-wrapper {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(146, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #92BF24, #7bb8d0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.quote-form-wrapper:hover::before {
    transform: scaleX(1);
}

.quote-contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a27;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #2a2a27;
    background: #ffffff;
    border: 2px solid rgba(146, 191, 36, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
}

.form-control:focus {
    border-color: #92BF24;
    box-shadow: 0 0 0 4px rgba(146, 191, 36, 0.1);
    background: #ffffff;
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

.form-control:focus::placeholder {
    color: #bbb;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.quote-submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #92BF24 0%, #7bb8d0 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(146, 191, 36, 0.3);
}

.quote-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(146, 191, 36, 0.4);
}

.quote-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.quote-submit-btn:active {
    transform: translateY(0);
}

.quote-submit-btn .btn-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.quote-submit-btn:hover .btn-text {
    transform: translateX(-3px);
}

.quote-submit-btn .btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.quote-submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

.quote-submit-btn .btn-icon svg {
    width: 20px;
    height: 20px;
}

.why-how-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.why-how-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(146, 191, 36, 0.1) 0%, rgba(123, 184, 208, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-how-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.why-how-image:hover::after {
    opacity: 1;
}

.why-how-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-how-image:hover img {
    transform: scale(1.1);
}

.why-how-item:first-child .why-how-image {
    order: 3;
    margin-top: 30px;
}

.why-how-item:last-child .why-how-image {
    order: 1;
    margin-bottom: 30px;
}

/* Which System Section */
.which-system-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: visible;
    z-index: 2;
    min-height: 800px;
    display: block;
    visibility: visible;
}

.which-system-section .container {
    position: relative;
    z-index: 3;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.which-system-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 184, 208, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.which-system-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2a2a27;
    margin-bottom: 60px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    animation: fadeInUp 0.8s ease-out;
}

.which-system-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.which-system-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #92BF24, #7bb8d0, transparent);
    border-radius: 2px;
}

.system-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.system-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0) scale(1);
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.system-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.system-card:nth-child(1) { animation-delay: 0.1s; }
.system-card:nth-child(2) { animation-delay: 0.3s; }
.system-card:nth-child(3) { animation-delay: 0.5s; }

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #92BF24, #7bb8d0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.system-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.system-card:hover::before {
    transform: scaleX(1);
}

.system-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
}

.system-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(146, 191, 36, 0.1) 0%, rgba(123, 184, 208, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.system-card:hover .system-card-image::after {
    opacity: 1;
}

.system-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.system-card:hover .system-card-image img {
    transform: scale(1.1);
}

.system-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a27;
    margin: 25px 25px 15px;
    line-height: 1.3;
}

.system-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #363434;
    margin: 0 25px 20px;
    flex: 1;
}

.system-card-applications {
    margin: 0 25px 20px;
}

.applications-title {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a27;
    margin-bottom: 10px;
}

.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.applications-list li {
    font-size: 15px;
    color: #363434;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.applications-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #92BF24;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.system-card:hover .applications-list li:before {
    opacity: 1;
    transform: scale(1);
}

.applications-list li {
    transition: transform 0.3s ease, padding-left 0.3s ease;
}

.system-card:hover .applications-list li {
    transform: translateX(5px);
}

.system-card-summary {
    font-size: 15px;
    line-height: 1.6;
    color: #363434;
    margin: 0 25px 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.system-card-summary strong {
    color: #92BF24;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .access-hero-textbox {
        max-width: 450px;
        padding: 40px 35px;
    }

    .access-hero-title {
        font-size: 42px;
    }

    .system-cards {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .access-hero-section {
        min-height: 450px;
        background-position: center center;
    }

    .access-hero-container {
        min-height: 450px;
        align-items: flex-start;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .access-hero-image {
        width: 100%;
    }

    .access-hero-textbox {
        max-width: 90%;
        margin: 0 auto;
        position: relative;
        padding: 35px 30px;
        width: 100%;
    }

    .access-hero-title {
        font-size: 38px;
    }

    .access-hero-description {
        font-size: 15px;
    }

    .solutions-title {
        font-size: 38px;
    }

    .solutions-subtitle {
        font-size: 16px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .solution-card-inner {
        padding: 35px 30px;
    }

    .great-for-icons {
        gap: 25px;
    }

    .great-for-item {
        flex: 0 1 calc(33.333% - 25px);
    }

    .why-how-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-feature {
        padding: 20px;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-icon svg {
        width: 30px;
        height: 30px;
    }

    .why-choose-feature-title {
        font-size: 18px;
    }

    .why-choose-feature-text {
        font-size: 14px;
    }

    .quote-form-wrapper {
        padding: 30px 25px;
        margin-top: 30px;
    }

    .form-row {
        gap: 18px;
    }

    .why-how-item:first-child .why-how-image,
    .why-how-item:last-child .why-how-image {
        order: 0;
        margin: 30px 0;
    }

    .system-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .access-hero-section {
        min-height: 400px;
        background-size: cover;
        background-position: center center;
    }

    .access-hero-section::before {
        background: linear-gradient(135deg, rgba(168, 213, 226, 0.9) 0%, rgba(123, 184, 208, 0.85) 100%);
    }

    .access-hero-container {
        min-height: 400px;
        align-items: flex-start;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .access-hero-textbox {
        padding: 30px 25px;
        max-width: 100%;
        margin: 0 auto;
        width: calc(100% - 30px);
        border-radius: 10px;
    }

    .access-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .access-hero-title::after {
        width: 60px;
        height: 3px;
    }

    .access-hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .solutions-industry-section {
        padding: 60px 0;
    }

    .solutions-title {
        font-size: 32px;
    }

    .solutions-subtitle {
        font-size: 15px;
        margin-top: 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-card-inner {
        padding: 30px 25px;
    }

    .solution-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .solution-icon {
        width: 90px;
        height: 90px;
    }

    .solution-card-title {
        font-size: 24px;
    }

    .great-for-title,
    .which-system-title {
        font-size: 32px;
    }

    .great-for-icons {
        gap: 20px;
    }

    .great-for-item {
        flex: 0 1 calc(50% - 20px);
        min-width: 140px;
    }

    .great-for-icon {
        width: 70px;
        height: 70px;
    }

    .great-for-icon svg {
        width: 45px;
        height: 45px;
    }

    .why-how-section,
    .which-system-section {
        padding: 60px 0;
    }

    .why-how-title {
        font-size: 28px;
    }

    .quote-form-wrapper {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .form-row {
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .quote-submit-btn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .why-choose-subtitle {
        font-size: 15px;
    }

    .why-choose-features {
        gap: 18px;
    }

    .why-choose-feature {
        padding: 18px;
        gap: 15px;
    }

    .why-choose-icon {
        width: 55px;
        height: 55px;
    }

    .why-choose-icon svg {
        width: 28px;
        height: 28px;
    }

    .why-choose-feature-title {
        font-size: 17px;
    }

    .why-choose-feature-text {
        font-size: 14px;
    }

    .system-card-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .access-hero-section {
        min-height: 350px;
    }

    .access-hero-container {
        min-height: 350px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .access-hero-textbox {
        padding: 25px 20px;
        width: calc(100% - 20px);
        border-radius: 8px;
        margin: 0 auto;
    }

    .access-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .access-hero-title::after {
        width: 50px;
        height: 2px;
    }

    .access-hero-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .solutions-industry-section {
        padding: 50px 0;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solutions-subtitle {
        font-size: 14px;
    }

    .solution-card-inner {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .solution-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .solution-icon {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }

    .solution-card-title {
        font-size: 22px;
    }

    .solution-card-description {
        font-size: 14px;
    }

    .solution-features li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 30px;
    }

    .great-for-title,
    .which-system-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .great-for-item {
        flex: 0 1 100%;
    }

    .why-how-title {
        font-size: 24px;
    }

    .why-choose-subtitle {
        font-size: 14px;
        margin-top: 12px;
    }

    .why-choose-features {
        gap: 15px;
    }

    .why-choose-feature {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-choose-icon {
        width: 50px;
        height: 50px;
    }

    .why-choose-icon svg {
        width: 25px;
        height: 25px;
    }

    .why-choose-content {
        text-align: center;
    }

    .why-choose-feature-title {
        font-size: 16px;
    }

    .why-choose-feature-text {
        font-size: 13px;
    }

    .quote-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
        margin-top: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }

    .quote-submit-btn {
        padding: 14px 25px;
        font-size: 16px;
    }

    .system-card-image {
        height: 200px;
    }

    .access-hero-section {
        background-attachment: scroll;
    }
}

/* Additional smooth transitions for interactive elements */
.great-for-item,
.why-how-item,
.system-card,
.access-hero-textbox {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation for images */
.why-how-image img,
.system-card-image img {
    animation: fadeIn 0.8s ease-out;
}

/* Enhanced focus states for accessibility */
.great-for-icon:focus,
.system-card:focus {
    outline: 3px solid #92BF24;
    outline-offset: 3px;
}

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
}

/* Performance optimization */
.why-how-image,
.system-card-image {
    will-change: transform;
}

