/* Advanced Package Styles for Sonicaptures */

/* General Layout */
.sonicaptures-body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.sonicaptures-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Package Detail Card */
.sonicaptures-package-card {
    display: flex;
    margin-top: 138px;
    flex-wrap: wrap;
    gap: 30px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

    padding: 66px;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.sonicaptures-package-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Image Gallery */
.sonicaptures-image-container {
    flex: 1;
    min-width: 45%;
    max-width: 50%;
}

.sonicaptures-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sonicaptures-main-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 400px;
    transition: transform 0.3s ease;
}

.sonicaptures-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.sonicaptures-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.2s;
}

.sonicaptures-thumbnail.active,
.sonicaptures-thumbnail:hover {
    border-color: #28a745;
    transform: scale(1.1);
}

/* Package Information */
.sonicaptures-package-info {
    flex: 1;
    min-width: 45%;
    text-align: center;
}

.sonicaptures-package-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.sonicaptures-package-description h2 {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sonicaptures-package-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #28a745;
    margin: 20px 0;
}

/* WhatsApp Inquiry Button */
.sonicaptures-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    justify-content: center;
    width: auto;
}

.sonicaptures-whatsapp-btn:hover {
    background-color: #1ebc59;
    transform: scale(1.05);
}

.sonicaptures-whatsapp-btn i {
    font-size: 1.6rem;
}

/* Footer */
.sonicaptures-footer {
    background: #f1f1f1;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    color: #666;
    margin-top: 40px;
}

.sonicaptures-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.sonicaptures-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sonicaptures-package-card {
        flex-direction: column;
        gap: 20px;
    }

    .sonicaptures-image-container,
    .sonicaptures-package-info {
        min-width: 100%;
    }

    .sonicaptures-thumbnails {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sonicaptures-thumbnail {
        width: 50px;
        height: 50px;
    }

    .sonicaptures-whatsapp-btn {
        width: 100%;
        padding: 15px 30px;
    }
}

.navbar-default {
    background: #ffffff;
    border-bottom: 1px solid #efefef;
    width: 100%;
    margin-bottom: 0;
    padding: 0 35px;
}

.navbar-nav.navbar-right {
    position: relative;
}

.navbar .navbar-brand {
    padding: 50px 15px 50px;
    display: inline-block;
    height: 124;
}

.navbar-nav>li {
    margin-left: 5px;
    position: initial;
}

.navbar-nav>li:first-child {
    margin-left: 20px;
}

.navbar-nav {
    /* opacity: 0;
    visibility: hidden; */
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.navbar-nav.active {
    opacity: 1;
    visibility: visible;
}

.navbar-nav>li>a {
    padding: 52px 15px 52px;
    color: #666666 !important;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.navbar-nav>li.drop-arrow>a:after {
    position: absolute;
    content: '\f0d7';
    font-family: 'FontAwesome';
    font-size: 10px;
    color: #666666;
    line-height: 20px;
    top: 50%;
    margin-top: -9px;
    right: 5px;
}

.navbar-nav>li.drop-arrow>a {
    padding-right: 20px;
}

.navbar-nav>li.shopping-cart>a {
    padding-left: 0;
    font-size: 16px;
}

.navbar-nav>li>a:hover {
    opacity: 0.7;
}

a.open-menu {
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    padding: 50px 0px 44px 40px;
}

a.open-menu span {
    display: block;
    width: 31px;
    height: 2px;
    background: #666666;
    margin: 0 0 8px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

a.open-menu span.last-child {
    margin-bottom: 0;
}

a.open-menu.opened span.opened {
    width: 36px;
    margin-left: -5px;
}

div.megadrop {
    width: 280px;
    position: absolute;
    top: 100%;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    background: #343434 url('../upload/banners/drop.jpg') 0 0;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    padding: 42px 50px;
}

div.megadrop h2 {
    color: #eeeeee;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #636363;
}

div.megadrop ul {
    margin: 0;
    padding: 0;
}

div.megadrop ul li {
    list-style: none;
    display: block;
    margin-top: 15px;
}

div.megadrop ul li a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    color: #888888;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
    position: relative;
}

div.megadrop ul li a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: #cccccc;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

div.megadrop ul li a:hover {
    color: #eeeeee;
}

div.megadrop ul li a:hover:after {
    width: 100%;
}

div.megadrop.two-col {
    width: 485px;
}

div.megadrop.three-col {
    width: 700px;
}

div.megadrop.four-col {
    width: 810px;
}

div.megadrop.five-col {
    width: 1225px;
}

li.drop-arrow:hover .megadrop {
    visibility: visible;
    opacity: 1;
}

header.transparent-style .navbar-default {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

header.transparent-style .navbar-nav>li>a {
    color: #eeeeee !important;
}

header.transparent-style .navbar-nav>li.drop-arrow>a:after {
    color: #eeeeee;
}

header.transparent-style a.open-menu span {
    background: #fff;
}

header.transparent-style.active .navbar-default {
    background: #222222;
    border-bottom: none;
}

header.without-border .navbar-default {
    border-bottom: none;
}

/*-------------------------------------------------*/
/* =  vertical header
  /*-------------------------------------------------*/
.vertical-header header {
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: #ffffff;
    z-index: 99;
    padding-top: 200px;
}

.vertical-header header .logo {
    padding: 0 30px;
    margin-bottom: 100px;
    text-align: center;
}

.vertical-header header .logo a {
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.vertical-header header .logo a img {
    max-width: 100%;
}

.vertical-header header nav.menu {
    margin: 0 0 100px;
    position: relative;
}

.vertical-header header nav.menu>ul {
    margin: 0;
    padding: 0;
    margin-left: 130px;
}

.vertical-header header nav.menu>ul>li {
    list-style: none;
    display: block;
}

.vertical-header header nav.menu>ul>li>a {
    display: inline-block;
    text-decoration: none;
    text-decoration: none !important;
    display: block;
    padding: 10px 0;
    color: #666666;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.vertical-header header nav.menu>ul>li>a i {
    display: inline-block;
    margin-left: 7px;
    font-size: 10px;
}

.vertical-header header nav.menu>ul>li a:hover {
    opacity: 0.7;
}

.vertical-header div.megadrop {
    top: 0;
    right: initial;
    left: 100%;
}

.vertical-header div.megadrop.two-col {
    width: 485px;
}

.vertical-header div.megadrop.three-col {
    width: 700px;
}

.vertical-header div.megadrop.four-col {
    width: 810px;
}

.vertical-header div.megadrop.five-col {
    width: 1140px;
}

.vertical-header a.elemadded {
    display: none;
    color: #252525;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.vertical-header form.search-head-form {
    margin: 0;
    padding: 0 50px;
}

.vertical-header form.search-head-form input[type="search"] {
    width: 100%;
    display: block;
    outline: none;
    border: none;
    border-bottom: 1px solid #cccccc;
    color: #888888;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding: 16px 20px;
    margin: 0;
}

.vertical-header form.search-head-form button {
    outline: none;
    border: none;
    background: transparent;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    float: right;
    padding: 0;
    font-size: 15px;
    color: #ccc;
    margin-right: 18px;
    margin-top: -32px;
}

.vertical-header form.search-head-form button:hover {
    color: #888888;
}

/*-------------------------------------------------*/
/* =  right fixed sidebar
  /*-------------------------------------------------*/
#right-sidebar {
    width: 400px;
    position: fixed;
    top: 0;
    right: -400px;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 999999;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

#right-sidebar .inner-sidebar {
    padding: 50px 30px 0;
    overflow-y: scroll;
    max-height: 100%;
}

#right-sidebar a.close-sidebar {
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    width: 22px;
    height: 22px;
    background: url('../images/close-side.png') 0 0 no-repeat;
    margin-bottom: 40px;
}

#right-sidebar a.close-sidebar:hover {
    opacity: 0.7;
}

#right-sidebar .sidebar-widget {
    margin-bottom: 70px;
    text-align: center;
}

#right-sidebar .sidebar-widget h2 {
    color: #222222;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

#right-sidebar .sidebar-widget p {
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

#right-sidebar .sidebar-widget form {
    margin: 0;
    overflow: hidden;
}

#right-sidebar .sidebar-widget form input[type="text"],
#right-sidebar .sidebar-widget form input[type="search"] {
    width: 100%;
    display: block;
    outline: none;
    border: none;
    border-bottom: 1px solid #cccccc;
    color: #888888;
    font-size: 12px;
font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding: 16px 20px;
    background: transparent;
    margin: 0;
}

#right-sidebar .sidebar-widget form button {
    outline: none;
    border: none;
    background: transparent;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    float: right;
    padding: 0;
    font-size: 15px;
    color: #ccc;
    margin-right: 18px;
    margin-top: -32px;
}

#right-sidebar .sidebar-widget form button:hover {
    color: #888888;
}

#right-sidebar .about-widget {
    text-align: center;
}

#right-sidebar .about-widget img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 45px;
}

#right-sidebar .instagram-widget ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

#right-sidebar .instagram-widget ul li {
    list-style: none;
    display: inline-block;
    margin: 5px 1px 0;
}

#right-sidebar .instagram-widget ul li a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    max-width: 95px;
}

#right-sidebar .instagram-widget ul li a img {
    width: 100%;
}

#right-sidebar.active {
    right: 0;
}