:root {
    --primary: #ff8801;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.orange {
    background-color: orange;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* nav */

header {
    background: white;
    box-shadow: var(--shadow);
    top: 0;
    z-index: 10;
}

.machine {
    border-radius: 60px;
}

/* ===== TOP BAR ===== */
/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: skyblue;
    font-size: 14px;
}

.top-left {
    display: flex;
    gap: 12px;
}

.top-left a img {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.top-left a:hover img {
    transform: scale(1.2);
}

.top-right span {
    font-weight: 600;
    color: black;
}

.nav {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    color: #fff;
    padding: 5px;
    font-weight: 800;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

.quote-btn {
    background: var(--primary);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.7s ease-in;
}

.quote-btn:hover {
    border: 1px solid var(--primary);
    background-color: #fff;
    color: var(--primary);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 15px;
        font-size: 12px;
    }

    .top-left a img {
        width: 16px;
        height: 16px;
    }

    .nav {
        padding: 0 15px;
    }

    .logo img.machine {
        height: 70px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    .quote-btn {
        display: none;
    }

    .mobile-quote-btn {
        display: block;
        background-color: #3498db;
        color: white;
        padding: 15px 20px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        margin: 20px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 5px;
        padding: 8px 10px;
    }

    .nav {
        padding: 0 10px;
    }

    .logo img.machine {
        height: 60px;
    }
}


/* Header Styles */
.WorldPay360header {
    background: linear-gradient(135deg, #e3530c 0%, #e65e0c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo i {
    margin-right: 10px;
    color: #4cd964;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Bundles Section */
.bundles {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #1a2a6c;
}

.bundles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.bundle {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.bundle:hover {
    transform: translateY(-10px);
}

.bundle-title {
    font-size: 1.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.bundle-description {
    color: #666;
    font-size: 1rem;
}

.lite {
    border-top: 5px solid #4cd964;
}

.standard {
    border-top: 5px solid #007aff;
}

.pro {
    border-top: 5px solid #ff2d55;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2a3a7c, #3a4a8c);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #4cd964;
    color: white;
    border: 2px solid #4cd964;
}

.btn-primary:hover {
    background: #3ac853;
    border-color: #3ac853;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2a3a7c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.WorldPay360header {
    color: white;
    padding: 60px 0;
    text-align: center;
}

.WorldPay360header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.WorldPay360header {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.reasons-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a8f;
    font-size: 2.2rem;
    font-weight: 600;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    height: 120px;
    background: linear-gradient(135deg, #e3530c 0%, #e65e0c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: #1a3a8f;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card-content p {
    color: #555;
    font-size: 1rem;
}

.solutions-section {
    padding: 80px 0;
    background-color: #f0f4ff;
}

.solutions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.solutions-content {
    flex: 1;
    min-width: 300px;
}

.solutions-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.solutions-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    margin: 25px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits-list i {
    color: #1a3a8f;
    margin-right: 10px;
    margin-top: 5px;
}

.bundle-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.bundle-card h3 {
    color: #1a3a8f;
    margin-bottom: 20px;
    font-size: 1.6rem;
    border-bottom: 2px solid #1a3a8f;
    padding-bottom: 10px;
}

.bundle-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item i {
    color: #1a3a8f;
    margin-right: 10px;
    margin-top: 5px;
}

.cta-section {
    background: linear-gradient(135deg, #e3530c 0%, #e65e0c 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1a3a8f;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .solutions-container {
        flex-direction: column;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a8f;
    font-size: 2.2rem;
    font-weight: 600;
}

.bundle-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.bundle-content {
    flex: 1;
    min-width: 300px;
}

.bundle-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.bundle-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bundle-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #1a3a8f;
}

.bundle-card h3 {
    color: #1a3a8f;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.bundle-subtitle {
    text-align: center;
    color: #2a56c6;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.bundle-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9ff;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e6ebff;
    transform: translateX(5px);
}

.feature-item i {
    color: #1a3a8f;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    color: #1a3a8f;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .bundle-container {
        flex-direction: column;
    }

    .bundle-features {
        grid-template-columns: 1fr;
    }
}

.pro-bundle-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3530c 0%, #e65e0c 100%);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 600;
}

.bundle-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.bundle-content {
    flex: 1;
    min-width: 300px;
}

.bundle-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.bundle-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bundle-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333;
}

.bundle-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #1a3a8f;
}

.bundle-header h3 {
    color: #1a3a8f;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.bundle-subtitle {
    color: #2a56c6;
    font-size: 1.3rem;
    font-weight: 600;
}

.bundle-description {
    background: #f0f4ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #1a3a8f;
}

.bundle-description p {
    color: #1a3a8f;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.bundle-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9ff;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e6ebff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #1a3a8f;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.3rem;
    background: #e6ebff;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    color: #1a3a8f;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8a6d00;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.bundle-card {
    position: relative;
}

@media (max-width: 768px) {
    .bundle-container {
        flex-direction: column-reverse;
    }

    .bundle-features {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a8f;
    font-size: 2.2rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-size: 1.2rem;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #1a3a8f, transparent);
    margin: 30px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    border-left: 4px solid #1a3a8f;
}

.info-card h3 {
    color: #1a3a8f;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

.form-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
    color: #1a3a8f;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1a3a8f;
    box-shadow: 0 0 0 2px rgba(26, 58, 143, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #e3530c 0%, #e65e0c 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 58, 143, 0.4);
}



/* ===== FOOTER ===== */
body {
  margin: 0;
}

.footer {
  color: white;
}

.footer-upper-section {
  height: 382px;
  padding: 45px 30px;
  background-color: #0F172A;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.footer-content-about {
  width: 70%;
}

.footer-content-about p {
  width: 80%;
  line-height: 20px;
  font-weight: bold;
}
.footer-content-about h2,.footer-content-requestQuote-text h2,.footer-content-ourServices h2{
  color: orange;
}

.footer-content-ourServices ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 15px;
  cursor: pointer;
  
}
.footer-content-ourServices ul li a{
    text-decoration: none;
    color: white;
}
.footer-lower-section {
  height: 80px;
  background-color: #0F172A;
  padding: 20px;
  display: flex;
}

.footer-lower-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-divider {
  height: 1px;
  width: 90%;
  background-color: white;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }
  
  .pos-content {
    flex-direction: column;
  }

  .call-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-strip form {
    flex-direction: column;
    width: 100%;
  }

  .call-strip input {
    width: 100%;
  }
}
.form-get{
  margin-top: 15px;
  margin-bottom: 20px;
}
.right-col{display:flex;align-items:flex-start;justify-content:center;}
.form-wrap{
  width:100%;
  max-width:420px;
  background:var(--form-bg);
  color:#fff;
  padding:18px;
  border-radius:6px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.45);
}
.form-title{
  margin:0 0 14px 0;
  color:#7bd3ff;
  font-size:15px;
  font-weight:700;
}

/* Form fields */
form{display:flex;flex-direction:column;gap:10px}
input[type="text"], input[type="email"], input[type="tel"], select, textarea{
  width:100%;
  padding:9px 5px;
  border-radius:4px;
  border: none;
  outline: none;
  font-size:14px;
  background:#f3f4f6;
  color:#111;
}
select{appearance:none; background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%); background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right:34px;}
textarea{resize:vertical; min-height:100px;}

/* Because the form background is dark, we override field styles with dark mode look on small devices if desired */
.form-wrap input[type="text"], .form-wrap input[type="email"], .form-wrap input[type="tel"], .form-wrap select, .form-wrap textarea {
  /* keep light input fields for contrast to dark background */
}

/* Captcha placeholder */
.captcha{display:flex;align-items:center;gap:8px;background:#fff;padding:8px;border-radius:4px;color:#111;font-size:13px}
.captcha input{width:auto}

/* Submit */
.btn-submit{
  background:var(--cta);
  color:#fff;
  border:none;
  padding:11px 14px;
  border-radius:4px;
  cursor:pointer;
  font-weight:700;
  letter-spacing:0.6px;
  margin-top:6px;
}
.btn-submit:hover{filter:brightness(0.95)}

/* Small screens responsiveness */
@media (max-width:1024px){
  .quote-section { grid-template-columns: 1fr 360px; gap:20px; }
  .map-wrap iframe{height:300px}
}

@media (max-width:820px){
  .quote-section{
    grid-template-columns: 1fr;
    padding:0;
  }
  .left-col{order:1;align-items:center;text-align:center;padding:0}
  .contact-info{max-width:700px}
  .map-wrap{width:100%}
  .right-col{order:2;justify-content:center}
  .form-wrap{max-width:520px;width:92%}
}

@media (max-width:420px){
  .heading-blue{font-size:20px}
  .form-title{font-size:14px}
  .map-decor{height:55px}
}

