/*
Theme Name: Soleil Spray
Theme URI: https://digitalguider.com/
Author: the Digital Guider Team
Author URI: https://digitalguider.com/
Description: .
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soleilspray
*/


.footer.style-2 .newsletter-box .wpcf7-form-control-wrap {
        width: 100%;
}

.footer.style-2 .newsletter-box .input-group span label.error{
    display: none !important;
}

.footer.style-2 .newsletter-box .input-group input.wpcf7-email {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer.style-2 .newsletter-box .input-group input.wpcf7-submit  {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.footer.style-2 .newsletter-box  .input-group {
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.footer.style-2 .newsletter-box  .wpcf7-spinner{
    margin-left: -80px !important;
    border-radius: 100% !important;
    margin: 14px 24px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 10px 0.5em;
}

.footer.style-2 .newsletter-box .wpcf7-not-valid-tip {
    color: #fff;
    font-size: 14px;
}

/* Disable submit button while CF7 is submitting */
.wpcf7-form.submitting input[type="submit"],
.wpcf7-form.submitting button[type="submit"] {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

/***********Home Gallery Page CSS***********/
/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 24px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Overlay */
.masonry-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    border-radius: 8px;
}

.masonry-item:hover .overlay {
    opacity: 1;
}

.masonry-item .overlay i {
    color: #fff;
    font-size: 26px;
}

/* Responsive */
@media (max-width: 991px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .masonry-gallery {
        column-count: 1;
    }
}
/* End of Home Gallery Page CSS */

.faq-section-cus .faq-accordion .accordion-body {
    display: flex;
}

.faq-section-cus .faq-accordion .accordion-body p{
    padding: 0 10px 20px;
    color: #6b6b6b;
    line-height: 1.6;
    font-size: 15px;
    font-family: var(--font-primary);
}

section.page-content .content h1.title,
section.page-content .content h2.title {
    font-weight: 600;
    font-size: 40px;
    text-transform: capitalize;
    color: var(--color-dark);
    padding-left: 20px;
    letter-spacing: normal;
    display: flex;
    margin-bottom: 20px;
    border-left: 2px solid var(--color-primary);
}

section.page-content .content h2.title{
    justify-content: center;
    border: none;
}

section.page-content .tan-benefits {
    max-width: 700px;
    margin: 10px auto;
    padding: 0;
    list-style: none;
    font-family: "Poppins", Arial, sans-serif;
}

section.page-content .tan-benefits li {
    /* background: #fff; */
    /* border: 1px solid #eee; */
    border-radius: 12px;
    padding: 5px 20px 5px 55px;
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
    color: #333;
    /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
}

section.page-content .tan-benefits li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #c59d5f, #e3c58b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
}

section.page-content .tan-benefits.box li {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 20px 20px 55px;
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
    color: #333;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}




.img-box img{
    width: 100%;
    height:300px;
    object-fit: cover;
    object-position: top;
}

/* ============================================================
   POPUP OVERLAY
   ============================================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 9999;
}

.popup-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================================
   POPUP BOX – Large, Modern, Animated
   ============================================================ */
.popup-box {
    background: #ffffff;
    padding: 100px 45px;
    width: 100%;
    max-width: 800px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.popup-overlay.is-active .popup-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-box h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 36px;
    color: #111;
}

/* ============================================================
   CLOSE BUTTON
   ============================================================ */
.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 32px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
    color: #555;
}

/* ============================================================
   BUTTON CONTAINER – Side-by-Side Layout
   ============================================================ */
.popup-actions-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================================
   IRREGULAR QUADRILATERAL BUTTON BASE
   ============================================================ */
.popup-btn {
    display: inline-block;
    padding: 18px 36px;
    min-width: 200px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    border-radius: 0;
    clip-path: polygon(
        8% 0%,
        100% 0%,
        92% 100%,
        0% 100%
    );
}

/* ============================================================
   PRIMARY BUTTON – Gradient, Bold
   ============================================================ */
.popup-btn.primary {
    background: #f1f4f8;
    color: #222;
    border: 2px solid #d5dae1;
    box-shadow: 0 12px 24px rgba(0, 118, 255, 0.35);
}

.popup-btn.primary:hover {
     background: linear-gradient(135deg, #007bff, #004cba);
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 32px rgba(0, 118, 255, 0.45);
}

/* ============================================================
   SECONDARY BUTTON – Light, Elegant Border
   ============================================================ */
.popup-btn.secondary {
    background: #f1f4f8;
    color: #222;
    border: 2px solid #d5dae1;
}

.popup-btn.secondary:hover {
    background: linear-gradient(135deg, #007bff, #004cba);
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   RESPONSIVE BEHAVIOR
   ============================================================ */
@media (max-width: 480px) {
    .popup-box {
        padding: 40px 25px;
    }

    .popup-btn {
        min-width: 140px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .popup-actions-row {
        flex-direction: column;
        gap: 16px;
    }
}



/* ---------- Global Typography ---------- */
.custom-content {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.65;
   
    margin: 0 auto;
    padding: 20px;
}

/* Section Headers */
.custom-content h2,
.custom-content h3,
.custom-content h4 {
    font-weight: 600;
    color: #222;
    margin-top: 32px;
    margin-bottom: 12px;
}

.custom-content h3 {
    font-size: 1.5rem;
}

.custom-content h4 {
    font-size: 1.2rem;
    color: #444;
}

/* Paragraph & List Styling */
.custom-content p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.custom-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.custom-content ul li {
    margin-bottom: 10px;
}

/* Links */
.custom-content a {
    color: #d8a86b; /* soft bridal gold */
    text-decoration: none;
    font-weight: 600;
}

.custom-content a:hover {
    text-decoration: underline;
}

/* ---------- Images ---------- */
.custom-content .wp-block-image {
    margin: 30px auto;
    text-align: center;
}

.custom-content .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ---------- FAQ Styling ---------- */
.custom-content h4.wp-block-heading {
    margin-top: 25px;
    position: relative;
    padding-left: 0;
}

.custom-content h4.wp-block-heading strong {
    font-size: 1.1rem;
    color: #222;
}



/* ---------- Table of Contents ---------- */
.custom-content ul.wp-block-list {
    background: #faf7f2;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d8a86b;
    margin-bottom: 30px;
}

.custom-content ul.wp-block-list li {
    margin-bottom: 8px;
}

/* ---------- Conclusion Section ---------- */
.custom-content h2.wp-block-heading {
    margin-top: 40px;
    font-size: 1.6rem;
}

.custom-content p:last-child {
    margin-bottom: 0;
}

.main-image{
    text-align: center;
}

.clamp-2 {

  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
}



.clamp-3 {
    line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.mb-50{
    margin-bottom: 50px;
}
.blogs .blog-card .content p {
    min-height: 66px;
}
.custom-content p{
    color:#423d3d;
}

.service-card-1 {
      background: #ffffff;
      border-radius: 12px;
      padding: 28px 32px;
      box-shadow: 0 10px 30px rgba(1.2, 1.2, 1.2, .1);
    }

    .service-title-1 {
      font-size: 1.25rem;
      font-weight: 500;
      color: #1f1f1f;
    }

    .service-price {
      font-weight: 700;
      color: #000;
    }

    .service-desc-1 {
      color: #8c8c8c;
      font-size: 0.95rem;
      margin-top: 10px;
      line-height: 1.6;
    }

    .btn-gradient {
      background: linear-gradient(90deg, #ff6f91, #ff9671);
      border: none;
      color: #fff;
      padding: 14px 36px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .btn-gradient:hover {
      opacity: 0.9;
      color: #fff;
    }


    /* --------------------------------------------- */
/* GLOBAL TYPOGRAPHY & SPACING                   */
/* --------------------------------------------- */

.row.content {
    padding: 40px 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

.row.content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

h3.wp-block-heading {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #c88b4a; 
    
}


.wp-block-columns {
  
    gap: 40px;
}

@media (max-width: 768px) {
    .wp-block-columns {
        flex-direction: column;
    }
}


ul.wp-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.wp-block-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.4;
}

ul.wp-block-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background-color: #c88b4a;
    border-radius: 50%;
}


/* ============================================================
   PREMIUM SERVICE CARD DESIGN – HIGH-LEVEL ANIMATION
   Parent: .custm-service-card
   ============================================================ */

.custm-service-card .service-cards-sec {
    padding: 60px 0;
}

/* Core Card */
.custm-service-card .service-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(200, 200, 200, 0.35);
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating gradient glow behind card */
.custm-service-card .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212,163,115,0.22), transparent 65%);
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.55s ease;
    z-index: 0;
}

/* Shine animation overlay */
.custm-service-card .service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 240%;
    height: 120%;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: skewX(-20deg);
    transition: 0.9s;
    z-index: 10;
}

/* Hover state – premium animated transformation */
.custm-service-card .service-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 163, 115, 0.45);
}

/* Glow activate */
.custm-service-card .service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Shine sweep */
.custm-service-card .service-card:hover::after {
    left: 120%;
}

/* Icon styling */
.custm-service-card .service-card .icon {
    width: 95px;
    height: 95px;
    margin-bottom: 22px;
    z-index: 20;
    transition: transform 0.45s ease;
}

.custm-service-card .service-card .icon img {
    max-width: 100%;
    height: auto;
    transform: translateZ(0);
}

/* Icon lift effect */
.custm-service-card .service-card:hover .icon {
    transform: translateY(-8px) scale(1.07);
}

/* Card title */
.custm-service-card .service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #2c2c2c;
    letter-spacing: 0.3px;
    z-index: 20;
    transition: color 0.4s ease;
}

/* Text color shift on hover */
.custm-service-card .service-card:hover h4 {
    color: #b07b44;
}

/* ============================================================
   Responsive Adjustments
   ============================================================ */
@media (max-width: 768px) {
    .custm-service-card .service-card {
        padding: 30px 20px;
    }

    .custm-service-card .service-card .icon {
        width: 80px;
        height: 80px;
    }

    .custm-service-card .service-card h4 {
        font-size: 1.1rem;
    }
}


.cp-100{
    padding: 200px;
}