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


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body, p, div, h2, h3, h4, button, a {
  font-family: "Inter", sans-serif;color: #000;
}
.mobile { display:none; }
/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
    background: #fff;
    width: 400px;
    max-width: 90%;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Close Button */
.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Simple Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
.modal-content h2 {
    font-size: 23px;
    margin-bottom: 12px;
}
.btn-dark.client-bg {
    border-radius: 42px;
    background: #14301D;
    font-weight: 400;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: transparent;
    padding: 24px 0 0 0;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    /* position: sticky; */
    /* top: 0; */
    /* z-index: 1000; */
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.logo {
    margin-top: 15px;
}
.user-sec {
    padding-top: 35px;
}
.phone-btn {
    background: #14301D;
    color: white;
    padding: 10px 17px;
    border-radius: 42px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    line-height: 23px;
    float: right;
    margin: 0 10px 0 0;
}
.phone-btn img {
    float: left;
    margin: 0 10px 0 0;
}
.phone-btn:hover {
    background: #3d6626;
}

/* Hero Section */
.hero {
    padding: 185px 0 110px 0;
    background: url(../frontasset/img/hero-img.png), #f4f5e9;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 50%;margin-top: -133px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 81px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
    font-family: "Anton", sans-serif;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
    margin-top: 35px;
}
.border-bg {
    height: 1px;
    border: 1px solid #DDDDDD73;
    width: 342px;
    margin: 60px 0;
}
.cta-buttons .simplify-bookings-btn {
    background: #D2DC41;
    border: 1px solid #D2DC41;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 11px;
    border-radius: 42px;
    color: #000;font-family: "Inter", sans-serif;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #c8d96f;
    color: #000;
}

.btn-primary:hover {
    background: #d4e384;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #8fb339;
    color: #000;
}

.btn-secondary:hover {
    background: #9fc24a;
    transform: translateY(-2px);
}

.btn-accent {
    background: #d4e384;
    color: #000;
}

.btn-accent:hover {
    background: #dce99a;
    transform: translateY(-2px);
}
.btn-dark.book-demo-now {
    width: auto;
    font-weight: 400;
    padding: 10px 17px;
    font-size: 16px;
    border-radius: 42px;
    background: #14301D;
    margin-top: 20px;
}
.btn-dark {
    background: #1a3a0f;
    color: white;
    width: 100%;
}

.btn-dark:hover {
    background: #2d5016;
    transform: translateY(-2px);
}

.ratings {
    display: flex;
    gap: 50px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.stars {
    color: #ffa500;
}

.platform {
    font-weight: bold;
    font-size: 1.2rem;
}
.break-sec {
    text-align: center;
    padding: 80px 0 0 0;
}
.break-sec .break {
    height: 1px;
    border: 1px solid #B1B1B15E;
    width: 342px;
    margin: 0 auto;
}
/* Demo Form */
.demo-form {
    background: white;
    padding: 35px;
    border-radius: 38px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    /* width: 50%; */
    margin-left: 60px;
}

.demo-form h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}

.demo-form > p {
    font-size: 16px;
    color: #000;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 13px;
    color: #000;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #f3f3f3;
    color: #000;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #5a7c1f;
}

.form-group input::placeholder {
    color: #aaa;
}

/* Description Section */
.description {
    background: #fff;
    padding: 110px 0 0 0;
    text-align: center;
}

.description p {
    font-size: 20px;
    line-height: 34px;
    color: #000;
    max-width: 995px;
    margin: 0 auto;
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 80px 0 0 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 55px;
    font-family: "Anton", sans-serif;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #F4F5E9;
    padding: 35px 25px;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #000;
    line-height: 34px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

/* Customisable Section */
.customisable {
    /* background: #2d5016; */
    padding: 160px 0 0 0;
    color: white;
}

.customisable-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #29643B;
    border-radius: 25px;
    padding: 0 65px 0 65px;
}
.customisable-left h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #D2DC41;
    font-family: "Anton", sans-serif;
    line-height: 55px;
}

.customisable-left > p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 26px;
}
.get-started-now {
    background: #14301D;
    border: 1px solid #14301D;
    color: #fff;
    padding: 10px 17px;
    font-size: 16px;
    border-radius: 42px;text-decoration: none;
}
.checklist {
    list-style: none;
    margin-bottom: 30px;
    float: left;
}

.checklist li {
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 35px;
    float: left;
    width: 50%;
    color: #fff;
    line-height: 38px;
    background: url(../skippybin/img/SealCheck.png);
    background-repeat: no-repeat;
    background-position: 0 8px;
}
.customisable-right img {
    /* width: 100%; */
    /* border-radius: 10px; */
    margin: -50px 0 -3px 0;
}

/* CTA Sections */
.cta-sections {
    padding: 130px 0 0 0;
    background: #fff;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.get-started-sec {
    background: #D2DC41;
    padding: 0;
    border-radius: 24px;
}
.get-started-sec img {
    width: 100%;
    margin: 0 0 -3px 0;
    padding: 0;
    border-radius: 0 0 25px 25px;
}
.get-started-text {
    width: 100%;
    margin: 0;
    padding: 60px 81px 0;float: left;
}
.get-started-text h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    font-family: "Anton", sans-serif;
    line-height: 55px;text-transform: uppercase;
}
.get-started-text .get-started-now {
    float: left;
}
.get-started-text > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000;
    line-height: 27px;
}
.built-sec {
    padding: 50px 0 0px 100px;
}
.built-sec h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    font-family: "Anton", sans-serif;
    line-height: 55px;
    text-transform: uppercase;
}
.built-sec > p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000;
    line-height: 27px;
}
.cta-card {
    padding: 50px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.cta-yellow {
    background: #c8d96f;
}

.cta-white {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-card img {
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
}

.highlight-box {
    background: #fff;
    padding: 40px 0 0 0;
    border-radius: 0;
    border-top: 2px solid #B1B1B15C;
    margin-top: 10px;
    float: left;
}
.highlight-box span {
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
    padding: 0;
    color: #000;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}
.highlight-box p {
    float: left;
    margin: 0 0 25px 0;
    padding: 0 40px 0 0;
    font-size: 16px;
    line-height: 27px;
}
.highlight-box .get-started-now {
    float: left;
}

/* Footer */
footer {
    background: #14301D;
    padding: 40px 0 20px;
    margin-top: 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}


.footer-contact p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 24px;
}
.footer-contact p a {
    color: #fff;
    text-decoration: none;
}
.footer-contact p a img {
    float: left;
    margin: 0;
    padding: 0 10px 0 0;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}
.footer-bottom p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
}
.footer-bottom p a {
    color: #fff;
    text-decoration: none;
}
/* Responsive Design */


@media only screen and (min-width: 1025px) and (max-width: 1305px) {
.hero { background-repeat: repeat-y; background-position: right top;}   
.hero-left h1 {font-size: 57px;}
.demo-form {margin-left: 30px;}
.customisable-content {padding: 0px 50px 0;gap: 22px;}
.customisable-right img {width: 100%;margin: 77px 0 -4px 0;}
.built-sec {padding: 13px 0 0px 0px;}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
header { padding: 0;}
.header-content { gap: 55px;}
.hero-left h1 {font-size: 50px;line-height: 57px;}
.cta-buttons {gap: 10px;}
.border-bg { margin: 40px auto;}
.ratings {justify-content: center;}
.demo-form {margin-left: 0;}
.customisable-right {text-align: center;}
.customisable-right img {width: 400px;margin: -40px 0 -3px 0;}
.description {padding: 85px 0 0 0;}
.customisable {padding: 85px 0 0 0;}
.cta-sections { padding: 85px 0 0 0;}
.hero { padding: 185px 0 60px 0;}
.get-started-text {margin: 0 0 27px 0; padding: 40px 20px 0;}
.get-started-text h2 { font-size: 34px;line-height: 44px;}
.built-sec {padding: 0px 0 0px 0;}
.built-sec h2 {font-size: 33px; line-height: 44px;}
.built-sec > p {margin-bottom: 20px;}
.highlight-box { padding: 0 0 0 0; border-top: 0px; margin-top: -15px;}
.highlight-box span { margin: 0 0 15px 0;}
.highlight-box p {margin: 0 0 15px 0;}
footer {margin-top: 85px;}


    .hero-content{
        grid-template-columns: 1fr 1fr;gap: 25px;
    }
    .customisable-content {
    grid-template-columns: 1fr;padding: 65px 65px 0;}
    .hero {
        background: linear-gradient(180deg, #f5f1e8 0%, #f5f1e8 60%, #5a7c1f 60%, #5a7c1f 100%);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
}

@media (max-width: 767px) {
header { padding: 0;}
.ratings {
  display: flex;
  gap: 38px;
}
.mobhide{display: none;}
.phone-btn {padding: 4px 11px; font-size: 11px;margin: 0 8px 0 0;}
.phone-btn img {margin: 4px 7px 0 0;width: 16px;}
.desktop {display: none;}
.mobile {display: block;float: left;}
.phone-btn img.user-icon {width: 13px;}
.header-content {grid-template-columns: 25% 73%; gap: 10px;}
.logo img {width: 90px;}
.logo {margin-top: 10px;}
.user-sec { padding-top: 20px;}
.hero-content {grid-template-columns: 1fr;}
.hero { background: linear-gradient(180deg, #f5f1e8 0%, #f5f1e8 60%, #5a7c1f 60%, #5a7c1f 100%);padding: 160px 0 50px 0;}
.demo-form { padding: 30px; border-radius: 30px;margin-left: 0px;gap: 35px;}
.cta-buttons .simplify-bookings-btn { font-size: 14px; line-height: 20px;}
.border-bg { width: 100%; margin: 35px 0;}
.hero-left h1 { font-size: 35px;line-height: 50px; margin-bottom: 16px;}
.subtitle {font-size: 20px; margin-bottom: 20px; margin-top: 0;}
.cta-buttons { gap: 8px;margin-bottom: 0;display: block;}
.cta-buttons .simplify-bookings-btn { font-size: 15px; line-height: 20px;margin-bottom: 10px;}
.border-bg {margin: 20px 0;}
.hero-left {margin: 0 auto;text-align: center; width: 340px;}
br { display:none; }
.description { padding: 35px 0 0 0;}
.description p {font-size: 18px;line-height: 32px;}
.features { padding: 40px 0 0 0;}
.features h2 { margin-bottom: 35px;}
.customisable {padding: 50px 0 0 0;}
.customisable-content {display: block;padding: 20px 20px 0;}
.checklist li { width: 100%;}
.customisable-right {text-align: center;}
.customisable-right img { width: 70%;margin: 20px 0 -3px 0;}
.cta-sections {padding: 50px 0 0 0;background: #fff;}
.cta-grid {grid-template-columns: 1fr; gap: 20px;}
.built-sec {padding: 10px 0 0px 0px;}
.get-started-text {padding: 30px 20px 0;}
.get-started-text h2 { font-size: 33px; line-height: 36px;}
.built-sec h2 {font-size: 29px; line-height: 40px;}
.built-sec > p { margin-bottom: 15px;}
.highlight-box { padding: 20px 0 0 0;}
.highlight-box p { padding: 0;}
footer { margin-top: 45px;}
.footer-contact {width: 278px;}
.footer-contact p {float: left;}
.footer-bottom {padding-top: 0;}
.footer-logo img {width: 120px;}
.customisable-left h2 {line-height: 40px;}
.break-sec { padding: 44px 0 0 0;}
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    
    
    .btn {
        width: 100%;
    }
    
   
    
    .features h2,
    .customisable-left h2,
    .cta-card h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
