

body {
    font-family: 'Golos Text', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


/* Full-Width Sticky Header */
.full-width-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #FFC107; /* Matches your brand yellow */
    z-index: 1000; /* Ensures it's above content */
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Container */
.full-width-header .navbar {
    padding: 12px 0;
}

/* Logo */
.full-width-header .navbar-brand img {
    height: 50px;
    width: auto;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #222 !important; /* Darker for contrast */
    font-weight: 600;
    transition: color 0.3s ease-in-out;
    padding: 8px 15px;
}

/* Navbar Hover Effects */
.navbar-nav .nav-link:hover {
    color: #0056B3 !important; /* Match CTA blue */
    text-decoration: underline;
}

/* CTA Button */
.get-started-link {
    background-color: #007bff !important; /* Blue background */
    color: white !important;
    padding: 10px 16px; /* Adjust padding for better alignment */
    font-size: 1rem; /* Match nav font size */
    font-weight: bold;
    border-radius: 6px;
    display: flex;
    align-items: center; /* Ensures text is centered inside */
    justify-content: center;
    height: 40px; /* Ensures consistent height */
    line-height: normal; /* Prevents odd spacing */
}

/* Ensure alignment with navbar links */
.navbar-nav {
    display: flex;
    align-items: left; /* Align items vertically */
}

.get-started-link:hover {
    background-color: #0056b3 !important;
}


/* Fix positioning if navbar uses flex */
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

/* Mobile Navbar Dropdown */
@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFC107; /* Ensure contrast */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 10px;
    }

    /* Ensure dropdown is hidden initially */
    .navbar-collapse:not(.show) {
        display: none !important;
    }

    /* Show dropdown when toggled */
    .navbar-collapse.show {
        display: block !important;
    }

    /* Stack Mobile Navigation Links */
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    .get-started-link {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.bounce {
    display: inline-block; /* Ensures visibility */
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down-text {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    display: block; /* Ensures text renders properly */
    text-align: center;
    margin-bottom: 5px;
}

/* Price Styling */
h3 {
    font-size: 2rem;
    font-weight: bold;
}

.per-month {
    font-size: 1.2rem;
    font-weight: normal;
    color: #666;
}

.primary-btn {
    background: #ff5733;
    color: white;
}

.primary-btn:hover {
    background: #0056b3;
}

.secondary-btn {
    background: #ffc107;
    color: #333;
}

.secondary-btn:hover {
    background: #0056b3;
}


.policies {
    margin: 20px 0;
}

.footer-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    color: #333;
}

.footer-section .main-links ul {
    padding: 0;
    list-style: none;
}

.footer-section .main-links ul li {
    margin-bottom: 10px;
}

.footer-section .main-links ul li a {
    color: #333;
    text-decoration: none;
}

.footer-section .main-links ul li a:hover {
    text-decoration: underline;
}

.footer-section .contact-us {
    text-align: left;
}

.footer-section .contact-us h3 {
    margin-top: 0;
}

.footer-section .contact-us p {
    margin-bottom: 10px;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.footer-section .social-icons img {
    width: 24px;
    height: 24px;
}

.footer-section .text-center {
    margin-top: 20px;
}

/* Order form */

.form-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #ffdd57; /* Matches your pink accent color */
}

.freeze-order-summary {
    position: sticky;
    top: 20px;
}

.order-summary-card {
    background: white;
    padding: 20px;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-top: 5px solid #007bff !important; /* Matches your pink accent color */
}
.btn-success {
    font-size: 1.2rem;
    padding: 10px;
    background-color: #007bff;
    border: none;
}
.btn-success:hover {
    background-color: #0056b3; 
    border: none;
}
.btn-primary {
    transition: 0.3s;
    background:  #007bff;
    border: none;
    
        border-radius: 8px;
        box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    
    
}
.btn-primary:hover {
    background-color: #007bff; /* Darker Pink */
}
.btn-primary:disabled {
    background-color: #80BFFF !important;
}
.contact-entry {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.contact-entry input {
    background: #ffffff;
}

.delete-contact {
    background-color: #007bff;
    padding: 6px 12px; /* Reduce vertical padding */
    font-size: 14px; /* Adjust font size */
    width: 80%; /* Prevent excessive width */
}
.text-muted {
    font-size: 16px; /* Increase £5 p/m font size */
    font-weight: 600; /* Make it more prominent */
}

.delete-contact:hover {
    background-color: #0056b3;
    color: white;
}

input[readonly] {
    pointer-events: none;
    background-color: #f8f9fa; /* Keeps it visually distinct */
}

.contact-price {
    font-size: 20px;
    text-align: center;
}

.pink-text {
    color: #007bff;
}

.thank-you-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.thank-you-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.order-reference {
    background: #e3f2fd;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
}

.slug {
    font-family: monospace;
    color: #007bff;
}

.contact-text {
    font-size: 14px;
    color: #555;
}

.email-link {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.return-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .delete-contact {
        width: 100%; /* Make full-width on mobile */
        padding: 10px; /* Reduce excessive height */
        font-size: 16px; /* Match readability */
    }
}

[id] {
    scroll-margin-top: 99px; /* Adjust based on your header height */
}

/* Full-Screen Hero Section */
.custom-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5vh 20px 10vh; /* Less space on top */
    min-height: 85vh;
    background: linear-gradient(to bottom, #f8faff, white);
    position: relative;
}

/* Content Container */
.custom-hero .hero-content {
    max-width: 650px;
    margin: auto;
}

/* Headline Styling */
.custom-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 10px;
}

/* Subheading */
.custom-hero h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #007BFF;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Underline Effect */
.custom-hero h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: #007BFF;
    margin: 6px auto 0;
}

/* Subtext */
.custom-hero .sub-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 25px 0px;
}

/* Benefits List - Proper Alignment */
.custom-hero .hero-benefits {
    list-style: none;
    padding: 0;
    margin: 25px auto;
    text-align: left;
    max-width: 500px;
}

/* Fix for Icons & Text Alignment */
.custom-hero .hero-benefits li {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Icon Styling */
.custom-hero .hero-benefits li .benefit-icon {
    font-size: 1.4rem;
    color: #007BFF;
    flex-shrink: 0; /* Prevents shrinking */
}

/* Text Wrapping Fix */
.custom-hero .hero-benefits li span {
    display: inline;
    word-break: normal; /* Prevents weird line breaks */
}

/* CTA Container */
.custom-hero .cta-container {
    background: white;
    padding: 20px;
    padding-bottom: 0px;
    border-radius: 10px;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 15px;
}

/* CTA Button */
.custom-hero .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 14px 24px 20px 24px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

.custom-hero .cta-button:hover {
    background: linear-gradient(135deg, #0056B3, #004494);
    box-shadow: 0px 6px 14px rgba(0, 86, 179, 0.5);
}

/* Navigation Buttons */
.custom-hero .quick-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.custom-hero .quick-links a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #007BFF;
    background: white;
    border: 2px solid #007BFF;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-hero .quick-links a:hover {
    background: #007BFF;
    color: white;
}

/* Small Text */
.custom-hero .small-text {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .custom-hero {
        min-height: auto;
        padding: 30px 20px;
    }

    .custom-hero h1 {
        font-size: 2.2rem;
    }

    .custom-hero h2 {
        font-size: 1.4rem;
    }

    .custom-hero .hero-benefits {
        text-align: left;
        max-width: 100%;
    }

    .custom-hero .hero-benefits li {
        font-size: 1.1rem;
        white-space: normal;
    }
}

@media (max-width: 400px) {
    .custom-hero .quick-links {
        flex-direction: column;
        gap: 10px;
    }

    .custom-hero .quick-links a {
        width: 100%;
        text-align: center;
    }
}

.custom-steps {
    background: linear-gradient(to bottom, #f8faff, white); /* Soft gradient for depth */
    padding: 80px 20px;
    text-align: center;
}

.custom-steps h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

/* Step Grid */
.custom-steps .custom-step-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Step Box */
.custom-steps .custom-step {
    max-width: 320px;
    text-align: center;
}

/* Step Icons */
.custom-steps .custom-step-icon {
    width: 95px;
    height: 95px;
    background: #007BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.custom-steps .custom-step-icon img {
    max-width: 55%;
    max-height: 55%;
}

/* Step Title */
.custom-steps .custom-step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* Step Description */
.custom-steps .custom-step-description {
    font-size: 1.2rem;
    color: #444;
    max-width: 300px;
    margin: 0 auto;
}

/* How It Works - Intro Text */
.custom-step-intro {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    padding: 15px 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #f8faff; /* Light blue tint */
    border-left: 4px solid #007BFF; /* Blue accent */
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.1);
}

/* Make Key Phrases Stand Out */
.custom-step-intro strong {
    color: #007BFF;
    font-weight: 700;
}

/* Improve Spacing on Mobile */
@media (max-width: 768px) {
    .custom-step-intro {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
}

/* CTA Button */
.cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adds spacing between buttons */
    justify-content: center; /* Centers the buttons */
    margin-top: 20px;
}

.custom-steps .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 14px 26px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 12px rgba(0, 123, 255, 0.3);
}

.custom-steps .cta-button:hover {
    background: linear-gradient(135deg, #0056B3, #004494);
    box-shadow: 0px 6px 16px rgba(0, 86, 179, 0.5);
}

/* Pricing Button (Smaller) */
.custom-steps .pricing-button {
    background: white;
    border: 2px solid #007BFF;
    color: #007BFF;
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-steps .pricing-button:hover {
    background: #007BFF;
    color: white;
}

.custom-steps .cta-button,
.custom-steps .pricing-button {
    min-width: 140px; /* Prevents buttons from getting too small */
    text-align: center;
    display: inline-block;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    .custom-steps {
        padding: 60px 15px;
    }

    .custom-steps .custom-step-container {
        gap: 20px;
    }

    .custom-steps .custom-step {
        max-width: 100%;
    }

    .custom-steps .custom-step-description {
        font-size: 1.1rem;
    }

    .custom-steps .cta-button,
    .custom-steps .pricing-button {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .custom-steps .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-steps .cta-container a {
        text-align: center;
        padding: 14px 24px;
    }
}

/********** START PRICING **************/

/* Custom Pricing Section */
.custom-pricing {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f8faff, white); /* Soft gradient for depth */
}

/* Pricing Title */
.custom-pricing h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtext */
.custom-pricing .pricing-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Pricing Container */
.custom-pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* Pricing Cards */
.custom-pricing-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Make "Need More Family & Friends?" Less Obvious */
.custom-pricing-card.addon-section h4 {
    color: #444; /* Darker, subtle color */
}

/* Hover Effect */
.custom-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
}

/* Fix Pricing Titles (Make Them Bigger) */
.custom-pricing-card h3,
.custom-pricing-card h4 {
    font-size: 1.6rem; /* Bigger text */
    font-weight: 700;
    margin-bottom: 10px;
}

/* Pricing Amount Styling */
.custom-pricing-card p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Old Price Styling */
.custom-pricing-card .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 5px;
}

/* New Price Styling */
.custom-pricing-card .new-price {
    color: #007BFF;
    font-size: 1.8rem;
    font-weight: 700;
}

/* List Alignment Fix */
.custom-pricing-card .pricing-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left; /* Left-align lists */
    display: block;
}

/* Fix List Items */
.custom-pricing-card .pricing-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
    white-space: normal;
    word-wrap: break-word;
}

/* Keep List Items Left-Aligned */
.custom-pricing-card .pricing-list li span {
    display: inline; /* Ensures text stays in line */
}

/* Restore Green Checkmarks */
.custom-pricing-card .pricing-list li::before {
    content: "✅";
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Gradient Button Effect */
.custom-pricing-card .pricing-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

/* Hover Effect */
.custom-pricing-card .pricing-cta a:hover {
    background: linear-gradient(135deg, #0056B3, #004494); /* Darker gradient */
    box-shadow: 0px 6px 14px rgba(0, 86, 179, 0.5);
}

/* Make pricing cards sit side by side on desktop */
/* Mobile Fixes */
@media (max-width: 768px) {
    .custom-pricing-card {
        text-align: center;
    }

    .custom-pricing-card h3,
    .custom-pricing-card h4 {
        font-size: 1.6rem; /* Smaller on mobile */
    }

    .custom-pricing-card p {
        font-size: 1rem;
    }

    .custom-pricing-card .new-price {
        font-size: 1.6rem;
    }

    .custom-pricing-card .pricing-list li {
        font-size: 1rem; /* Adjust for smaller screens */
    }
}

/**********END PRICING************** */

/* Testimonials Section */
.custom-testimonial-section {
    background: linear-gradient(to bottom, #f8faff, white); /* Soft gradient for depth */
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
}

/* Section Title */
.custom-testimonial-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Testimonials Container */
.custom-testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Testimonial Box */
.custom-testimonial-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    text-align: left;
}

/* Testimonial Header */
.custom-testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Testimonial Image */
.custom-testimonial-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

/* Testimonial Name */
.custom-testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

/* Testimonial Text */
.custom-testimonial-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #444;
}

/* CTA Button */
.custom-testimonial-btn {
    display: inline-block;
    background: linear-gradient(135deg, #007BFF, #0056B3);
    color: white;
    padding: 14px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
    margin-top: 20px;
}

.custom-testimonial-btn:hover {
    background: linear-gradient(135deg, #0056B3, #004494);
    box-shadow: 0px 6px 14px rgba(0, 86, 179, 0.5);
}

/* Trusted Text */
.custom-testimonial-trust-text {
    font-size: 1rem;
    color: #555;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .custom-testimonial-title {
        font-size: 1.8rem;
    }

    .custom-testimonial-box {
        max-width: 100%;
    }
}

/* FAQ Section */
.custom-faq-section {
    background: #f8faff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
}

/* FAQ Title */
.custom-faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* FAQ Container */
.custom-faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* FAQ Item */
.custom-faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

/* FAQ Question */
.custom-faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #007BFF;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-faq-question:hover {
    color: #0056B3;
}

/* FAQ Expand Icon */
.custom-faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007BFF;
    transition: transform 0.3s ease;
}

/* FAQ Answer (Initially Hidden) */
.custom-faq-answer {
    display: none;
    padding: 10px 15px;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    background: white;
    border-left: 3px solid #007BFF;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* FAQ Answer When Open */
.custom-faq-item.active .custom-faq-answer {
    display: block;
}

.custom-faq-item.active .custom-faq-icon {
    transform: rotate(45deg);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .custom-faq-title {
        font-size: 1.8rem;
    }

    .custom-faq-question {
        font-size: 1.1rem;
    }
}
