/*
 Theme Name:   Snoofy
 Template:     sinatra
 Author:       NJ Technos
 Version:      1.0
 Description:  Snoofy is a modern WordPress theme crafted for dog chew product websites and pet brands.
*/

/* ============================================================ */
/* FONTS                                                         */
/* ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/mabook');

/* ============================================================ */
/* CONTACT FORM                                                  */
/* ============================================================ */
.snoofy-contact-wrapper {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 50px 60px;
    background-color: #f9f7f0 !important;
    border-radius: 8px;
}
.snoofy-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.snoofy-form-group { display: flex; flex-direction: column; }
.snoofy-form-group.full-width { margin-bottom: 20px; }
.snoofy-form-group label { font-size: 13px; font-weight: 500; margin-bottom: 8px; color: #2c2c2c; }
.snoofy-contact-wrapper input[type="text"],
.snoofy-contact-wrapper input[type="email"],
.snoofy-contact-wrapper input[type="tel"] {
    padding: 12px 15px;
    border: 1.5px solid #d4d0c8;
    background-color: #fefdfb;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}
.snoofy-contact-wrapper input:focus { border-color: #f39c4f; }
.snoofy-contact-wrapper textarea {
    padding: 15px;
    border: 2px dashed #d4d0c8;
    background-color: #fefdfb;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    resize: vertical;
    min-height: 150px;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.snoofy-contact-wrapper textarea:focus { border-color: #f39c4f; }
.snoofy-form-submit { margin-top: 20px; }
.snoofy-form-btn {
    width: 100% !important;
    padding: 16px !important;
    background-color: #E76F51 !important;
    color: white !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.snoofy-form-btn:hover { background-color: #FFA726 !important; transform: translateY(-2px) !important; }
.snoofy-form-btn:active { transform: translateY(2px) !important; box-shadow: 0px 2px 0px #33323A !important; }
@media (max-width: 768px) {
    .snoofy-form-grid { grid-template-columns: 1fr; }
    .snoofy-contact-wrapper { padding: 40px 30px; }
}
@media (max-width: 480px) { .snoofy-contact-wrapper { padding: 30px 20px; } }

/* ============================================================ */
/* CSS VARIABLES & BASE RESET                                    */
/* ============================================================ */
:root {
    --brand-orange: #d36544;
    --brand-dark: #222225;
    --brand-darker: #151515;
    --brand-black: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #333333;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #f9f9f9;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================ */
/* LAYOUT — 1440px BOX                                          */
/* ============================================================ */
.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.container-full {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.section-padding { padding: 80px 0; }

.btn-primary {
    background-color: var(--brand-orange);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.btn-primary:hover { background-color: #b55335; }

/* ============================================================ */
/* FIXED VIDEO BACKGROUND                                        */
/* ============================================================ */
body, html, #page, #wrapper, .site {
    background-color: transparent !important;
    overflow-x: hidden;
}

.hero-video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.hero-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ============================================================ */
/* HERO SECTION                                                  */
/* ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 80px;
    color: #ffffff;
    text-align: left;
    z-index: 10;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out 0.5s forwards;
}

.hero-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 5px 0 20px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out 0.7s forwards;
}

.hero .explore-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1.5px solid #ffffff;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease, gap 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
}
.hero .explore-link:hover { color: #E76F51; border-color: #E76F51; gap: 12px; }

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Badge */
.badge-wrapper {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    animation: popInBadge 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
}
@keyframes popInBadge {
    0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}
.badge-wrapper .spinning-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}
.badge-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
}
.scroll-text {
    font-size: 9px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.scroll-line { width: 1.5px; height: 18px; background-color: #000; }
@keyframes rotateText { 100% { transform: rotate(360deg); } }

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero .container { padding-left: 40px; padding-right: 40px; }
    .hero h1 { font-size: 60px; }
    .hero-subtext { font-size: 20px; }
    .badge-wrapper { width: 90px; height: 90px; bottom: -45px; }
}
@media (max-width: 768px) {
    .hero { padding-bottom: 90px; min-height: 80vh; }
    .hero .container { padding-left: 20px; padding-right: 20px; }
    .hero h1 { font-size: 42px; }
    .hero-subtext { font-size: 16px; }
    .hero .explore-link { font-size: 14px; }
    .badge-wrapper { width: 80px; height: 80px; bottom: -40px; }
    .scroll-text { font-size: 8px; }
    .scroll-line { height: 14px; }
}
@media (max-width: 480px) {
    .hero .container { padding-left: 16px; padding-right: 16px; }
    .hero h1 { font-size: 36px; }
    .hero-subtext { font-size: 14px; }
}

/* ============================================================ */
/* INTRO SECTION                                                 */
/* ============================================================ */
.intro-section {
    width: 100%;
    background-color: rgba(30, 32, 36, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.intro-section .container-full {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2.6fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.intro-content h4 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.intro-content h2 {
    color: white;
    font-size: 60px;
    margin-bottom: 25px;
    line-height: 1.05;
}
.intro-content p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 95%;
}
.intro-content .explore-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1.5px solid #fff;
    padding-bottom: 2px;
    display: inline-block;
    transition: 0.3s ease;
}
.intro-content .explore-link:hover { color: #E76F51; border-color: #E76F51; }

/* Swiper */
.swiper { width: 100%; padding-bottom: 20px; }
.swiper-slide { width: 320px; height: auto; display: flex; }
.video-card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 3px solid white;
    width: 100%;
}
.video-thumbnail { position: relative; height: 350px; width: 100%; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; object-position: top; pointer-events: none; }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding-left: 4px;
}
.video-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.video-card-content p { font-size: 14px; color: #444; margin-bottom: 25px; line-height: 1.5; font-weight: 400; }
.video-card-footer { display: flex; justify-content: space-between; align-items: center; }
.video-card-footer span { font-size: 12px; color: #666; letter-spacing: 0.5px; }
.insta-btn { width: 26px; height: 26px; background-color: #000; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* Intro Responsive */
@media (max-width: 1024px) {
    .intro-section .container-full { padding-left: 40px; padding-right: 40px; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-content { text-align: center; max-width: 800px; margin: 0 auto; }
    .intro-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .intro-content h2 { font-size: 50px; }
}
@media (max-width: 768px) {
    .intro-section { padding: 80px 0 60px; }
    .intro-section .container-full { padding-left: 20px; padding-right: 20px; }
    .intro-content h2 { font-size: 40px; }
    .video-thumbnail { height: 300px; }
}
@media (max-width: 480px) {
    .intro-section { padding: 60px 0 40px; }
    .intro-section .container-full { padding-left: 16px; padding-right: 16px; }
    .intro-content h2 { font-size: 32px; }
    .intro-content h4 { font-size: 13px; }
    .swiper-slide { width: 280px; }
    .video-thumbnail { height: 260px; }
}

/* ============================================================ */
/* PRODUCTS SECTION                                              */
/* ============================================================ */
.snoofy-products-section {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.snoofy-products-section .container-full {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    width: 100%;
}
.section-header h2 { font-size: 40px; font-weight: 700; letter-spacing: 2px; color: #ffffff; margin: 0; text-transform: uppercase; }
.section-header a { color: #E76F51; font-size: 15px; font-weight: 600; text-transform: uppercase; text-decoration: none; transition: opacity 0.3s; position: relative; }
.section-header a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: #E76F51; transition: width 0.3s ease; }
.section-header a:hover::after { width: 100%; }
.section-header a:hover { opacity: 0.9; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.product-card {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover { transform: translateY(-8px); }

.product-image {
    background-color: #fff;
    height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.6s ease;
}
.product-card.active:hover .product-image img { transform: scale(1.08); }

.product-info { padding: 30px 10px; text-align: left; display: flex; flex-direction: column; flex-grow: 1; }
.product-info h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px 0; letter-spacing: 1.5px; color: #ffffff; text-transform: uppercase; text-align: left; transition: color 0.3s ease; word-wrap: break-word; }
.product-card:hover .product-info h3 { color: #E76F51; }
.product-info .price { font-size: 20px; font-weight: 600; color: #ffffff; margin-bottom: 25px; display: block; text-align: left; }

.product-action { display: block; width: 100%; margin-top: auto; }
.product-action select {
    width: 100%;
    margin-bottom: 10px;
    padding: 14px 15px;
    background-color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
    cursor: pointer;
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}
.product-action select:focus { box-shadow: 0 0 0 2px #E76F51; }

.btn-add-cart {
    width: 100%;
    display: block;
    background-color: #cf6d55;
    color: #fff;
    border: none;
    padding: 14px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
    text-align: center;
}
.btn-add-cart::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: -1;
    transition: left 0.6s ease;
}
.btn-add-cart:hover { background-color: #b55b46; }
.btn-add-cart:hover::after { left: 200%; }
.btn-add-cart:active { transform: scale(0.96); }

/* Products Responsive */
@media (max-width: 1024px) {
    .snoofy-products-section .container-full { padding-left: 40px; padding-right: 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-image { height: 380px; }
    .section-header h2 { font-size: 28px; }
}
@media (max-width: 768px) {
    .snoofy-products-section { padding: 60px 0; }
    .snoofy-products-section .container-full { padding-left: 20px; padding-right: 20px; }
    .products-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-image { height: 320px; padding: 20px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .section-header h2 { font-size: 24px; }
    .product-info h3 { font-size: 20px; }
    .product-info .price { font-size: 18px; }
}
@media (max-width: 480px) {
    .snoofy-products-section .container-full { padding-left: 16px; padding-right: 16px; }
    .product-image { height: 280px; padding: 16px; }
}

/* ============================================================ */
/* SCROLL REVEAL ANIMATIONS                                      */
/* ============================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(100px) scale(0.92);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 1s ease;
    transition-delay: var(--card-delay, 0s);
}
.reveal-up.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

.product-card .product-info > * { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.product-card.active .product-info h3 { opacity: 1; transform: translateY(0); transition-delay: calc(var(--card-delay, 0s) + 0.3s); }
.product-card.active .product-info .price { opacity: 1; transform: translateY(0); transition-delay: calc(var(--card-delay, 0s) + 0.45s); }
.product-card.active .product-action { opacity: 1; transform: translateY(0); transition-delay: calc(var(--card-delay, 0s) + 0.6s); }
.product-card .product-image img { transform: scale(1.4); opacity: 0; transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease; transition-delay: calc(var(--card-delay, 0s) + 0.2s); }
.product-card.active .product-image img { transform: scale(1); opacity: 1; }

/* ============================================================ */
/* ADVANTAGES SECTION                                            */
/* ============================================================ */
.snoofy-advantages-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 800px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.advantages-img-col {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
.advantages-img-col video { width: 100%; height: 100%; object-fit: cover; display: block; }

.advantages-content-col {
    width: 50%;
    flex-shrink: 0;
    background-color: rgba(231, 111, 81, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 60px 60px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.advantages-content-col h2 {
    color: white;
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 50px;
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0;
    visibility: hidden;
}

.advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 30px; width: 100%; }

.adv-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; transition: transform 0.3s ease; cursor: default; opacity: 0; visibility: hidden; }
.adv-item:hover { transform: translateY(-6px); }

.adv-icon-wrap {
    width: 65px; height: 65px;
    background-color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.adv-icon-wrap img { width: 40px; height: auto; object-fit: contain; }
.adv-item:hover .adv-icon-wrap { transform: scale(1.15) rotate(5deg); box-shadow: 0 15px 25px rgba(0,0,0,0.2); }

.adv-item h4 { color: white; font-family: 'Poppins'; font-size: 19px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.adv-item p { font-size: 14px; color: #fff; opacity: 0.95; font-weight: 300; line-height: 1.5; margin: 0; max-width: 250px; }

/* Advantages Responsive */
@media (max-width: 1024px) {
    .snoofy-advantages-section { flex-direction: column; }
    .advantages-img-col, .advantages-content-col { width: 100%; flex-shrink: unset; }
    .advantages-img-col { height: 450px; min-height: 450px; }
    .advantages-content-col { padding: 60px 40px; }
    .advantages-content-col h2 { font-size: 52px; }
    .advantages-grid { gap: 40px 25px; }
}
@media (max-width: 768px) {
    .advantages-img-col { height: 380px; min-height: 380px; }
    .advantages-content-col { padding: 60px 20px; }
    .advantages-content-col h2 { font-size: 36px; text-align: center; margin-bottom: 40px; }
    .advantages-grid { grid-template-columns: 1fr; gap: 35px; }
    .adv-item { align-items: center; text-align: center; }
    .adv-item p { max-width: 100%; }
}
@media (max-width: 480px) {
    .advantages-content-col h2 { font-size: 28px; }
    .advantages-img-col { height: 300px; min-height: 300px; }
}

/* ============================================================ */
/* MARQUEE SECTION                                               */
/* ============================================================ */
.snoofy-marquee-wrapper {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    box-sizing: border-box;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}
.marquee-moving-container { display: flex; align-items: center; animation: snoofyScroll 30s linear infinite; }
.marquee-item { display: flex; align-items: center; font-family: 'Bebas Neue'; font-weight: 900; font-size: 55px; letter-spacing: 4px; text-transform: uppercase; text-shadow: 0px 8px 15px rgba(255,255,255,0.15); }
.marquee-big-bullet { display: inline-block; width: 18px; height: 18px; background-color: #fff; border-radius: 50%; margin: 0 45px; box-shadow: 0px 0px 12px rgba(255,255,255,0.4); }
@keyframes snoofyScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.snoofy-marquee-wrapper:hover .marquee-moving-container { animation-play-state: paused; }

@media (max-width: 1024px) { .marquee-item { font-size: 45px; } .marquee-big-bullet { width: 16px; height: 16px; margin: 0 35px; } }
@media (max-width: 768px) { .snoofy-marquee-wrapper { padding: 25px 0; } .marquee-item { font-size: 28px; letter-spacing: 2px; } .marquee-big-bullet { width: 12px; height: 12px; margin: 0 25px; } }
@media (max-width: 480px) { .marquee-item { font-size: 22px; } }

/* ============================================================ */
/* PROCESS SECTION                                               */
/* ============================================================ */
.process-section {
    width: 100%;
    background-color: rgba(49, 53, 60, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.process-section .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.process-section h2, .process-section .subheading, .process-card-container, .explore-now-link {
    opacity: 0;
    visibility: hidden;
}

.process-section h2 { color: white; font-size: 72px; font-weight: 400; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.process-section .subheading { color: #fff; font-size: 16px; max-width: 800px; margin: 0 auto 80px; line-height: 1.5; font-weight: 300; opacity: 0.9; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; width: 100%; }

.process-card-container { perspective: 1000px; height: 350px; }
.process-card {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 12px;
}
.process-card-container:hover .process-card { transform: rotateY(180deg); }

.process-front, .process-back {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 60px 25px 40px;
    box-sizing: border-box;
    display: flex; flex-direction: column; text-align: left;
}
.process-front { background-color: #fff; color: #31353C; z-index: 2; }
.process-back { background-color: #E76F51; color: #fff; transform: rotateY(180deg); }

.process-num { position: absolute; top: 30px; left: 30px; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
.process-front .process-num { background-color: #E65A41; color: #fff; }
.process-back .process-num { background-color: #fff; color: #E76F51; }
.process-card h4 { font-size: 22px; font-weight: 800; margin: 120px 0 12px 0; text-transform: uppercase; line-height: 1.2; }
.process-card p { font-size: 14px; line-height: 1.5; margin: 0; font-weight: 400; }
.process-front p { color: #555; }
.process-back p { color: #fff; }

.explore-now-link { color: #fff; text-decoration: none; font-size: 16px; font-weight: 500; padding-bottom: 2px; border-bottom: 1.5px solid white; display: inline-block; margin-top: 20px; transition: all 0.3s; }
.explore-now-link:hover { color: #E76F51; border-color: #E76F51; }

/* Process Responsive */
@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) {
    .process-section { padding: 80px 0; }
    .process-section .container { padding-left: 40px; padding-right: 40px; }
    .process-section h2 { font-size: 52px; }
    .process-grid { gap: 30px; }
}
@media (max-width: 768px) {
    .process-section { padding: 60px 0; }
    .process-section .container { padding-left: 20px; padding-right: 20px; }
    .process-section h2 { font-size: 32px; margin-bottom: 15px; }
    .process-section .subheading { font-size: 14px; margin-bottom: 50px; padding: 0; }
    .process-grid { grid-template-columns: 1fr; gap: 25px; }
    .process-card-container { height: 320px; }
    .process-front, .process-back { padding: 40px 20px 30px; }
    .process-card h4 { margin-top: 70px; font-size: 20px; }
}
@media (max-width: 480px) {
    .process-section .container { padding-left: 16px; padding-right: 16px; }
    .process-section h2 { font-size: 26px; }
    .process-card-container { height: 290px; }
}

/* ============================================================ */
/* HAPPY SECTION                                                 */
/* ============================================================ */
.happy-section {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    background-color: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.gs-happy-title, .gs-happy-text, .gs-happy-btn, .gs-happy-video { opacity: 0; visibility: hidden; }

.happy-content {
    width: 50%;
    flex-shrink: 0;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    color: #fff;
}
.happy-content h2 { font-size: 52px; font-weight: 400; color: #FCB040; margin: 0 0 25px 0; line-height: 1.1; text-transform: uppercase; }
.happy-content p { font-size: 17px; line-height: 1.6; color: #fff; opacity: 0.9; margin-bottom: 40px; font-weight: 300; }
.happy-content a { color: #fff; font-size: 16px; font-weight: 500; text-decoration: none; border-bottom: 1.5px solid #fff; padding-bottom: 2px; display: inline-block; transition: color 0.3s, border-color 0.3s; }
.happy-content a:hover { color: #E76F51; border-color: #E76F51; }

.happy-img-col { width: 50%; flex-shrink: 0; position: relative; overflow: hidden; min-height: 500px; }
.happy-img-col video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Happy Responsive */
@media (max-width: 1024px) {
    .happy-section { flex-direction: column; min-height: auto; }
    .happy-content, .happy-img-col { width: 100%; flex-shrink: unset; }
    .happy-img-col { height: 450px; min-height: 450px; order: -1; }
    .happy-content { padding: 60px 40px; }
    .happy-content h2 { font-size: 42px; }
}
@media (max-width: 768px) {
    .happy-content { padding: 60px 20px; text-align: center; align-items: center; }
    .happy-content h2 { font-size: 34px; }
    .happy-content p { font-size: 15px; margin-left: auto; margin-right: auto; }
    .happy-img-col { height: 380px; min-height: 380px; }
}
@media (max-width: 480px) {
    .happy-content { padding: 50px 16px; }
    .happy-content h2 { font-size: 26px; }
    .happy-img-col { height: 300px; min-height: 300px; }
}

/* ============================================================ */
/* INSTAGRAM SECTION                                             */
/* ============================================================ */
.snoofy-insta-section {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.snoofy-insta-section h3 { color: white; font-size: 36px; font-weight: 400; margin-bottom: 40px; letter-spacing: 1px; text-transform: uppercase; display: inline-block; padding-top: 60px; }
.snoofy-insta-section h3 span { color: #E65A41; }

.snoofy-insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); width: 100%; gap: 0; }
.snoofy-insta-item { position: relative; aspect-ratio: 4 / 5.5; overflow: hidden; cursor: pointer; background-color: #111; }
.snoofy-insta-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: all 0.5s ease; }
.snoofy-insta-item:hover img { filter: brightness(1); transform: scale(1.05); }

.snoofy-insta-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 55px; height: 55px; background: rgba(255,255,255,0.85); border-radius: 50%; display: flex; justify-content: center; align-items: center; z-index: 2; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s ease, background 0.3s ease; }
.snoofy-insta-item:hover .snoofy-insta-play { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.snoofy-insta-play svg { width: 18px; height: 18px; fill: #31353C; margin-left: 3px; }
.snoofy-insta-tag { position: absolute; bottom: 20px; left: 20px; color: #fff; font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; z-index: 3; opacity: 0.85; }

@media (max-width: 1024px) { .snoofy-insta-grid { grid-template-columns: repeat(3, 1fr); } .snoofy-insta-section h3 { font-size: 28px; } }
@media (max-width: 768px) { .snoofy-insta-section h3 { font-size: 20px; padding: 40px 20px 0; margin-bottom: 30px; } .snoofy-insta-grid { grid-template-columns: repeat(2, 1fr); } .snoofy-insta-play { width: 45px; height: 45px; } .snoofy-insta-play svg { width: 14px; height: 14px; } .snoofy-insta-tag { font-size: 9px; bottom: 15px; left: 15px; } }
@media (max-width: 480px) { .snoofy-insta-section h3 { font-size: 18px; } }

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.snoofy-footer {
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 100px 0 40px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    z-index: 1;
}

.snoofy-footer .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.footer-main-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr; gap: 60px; margin-bottom: 80px; align-items: flex-start; width: 100%; }
.footer-logo-col img { max-width: 180px; height: auto; }
.footer-col h4 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 25px 0; color: #fff; }
.footer-about-text { font-size: 15px; line-height: 1.6; color: #d1d1d1; max-width: 450px; text-transform: uppercase; font-weight: 400; letter-spacing: 0.5px;padding-top:20px; }
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list li a { color: #d1d1d1; text-decoration: none; font-size: 13px; text-transform: capitalize; font-weight: 500; letter-spacing: 1px; transition: color 0.3s; }
.footer-links-list li a:hover { color: #FCB040; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.copyright-text { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.footer-social-wrap { display: flex; gap: 15px; }
.social-btn { width: 36px; height: 36px; background-color: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: all 0.3s ease; }
.social-btn:hover { background-color: #FCB040; color: #000; transform: translateY(-3px); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* Footer Responsive */
@media (max-width: 1024px) {
    .snoofy-footer .container { padding-left: 40px; padding-right: 40px; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-logo-col { grid-column: span 2; margin-bottom: -20px; }
}
@media (max-width: 768px) {
    .snoofy-footer { padding: 60px 0 30px; }
    .snoofy-footer .container { padding-left: 20px; padding-right: 20px; }
    .footer-main-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; margin-bottom: 50px; }
    .footer-logo-col { grid-column: auto; }
    .footer-logo-col img { margin: 0 auto; }
    .footer-col h4 { justify-content: center; font-size: 16px; }
    .footer-about-text { margin: 0 auto; font-size: 13px; }
    .footer-links-list li a { font-size: 12px; }
    .footer-bottom-bar { flex-direction: column; gap: 20px; padding-top: 25px; }
    .copyright-text { font-size: 11px; text-align: center; }
    .footer-social-wrap { justify-content: center; }
}
@media (max-width: 480px) {
    .snoofy-footer .container { padding-left: 16px; padding-right: 16px; }
}

/* ============================================================ */
/* POP-IN ANIMATION                                              */
/* ============================================================ */
.pop-in { opacity: 0; transform: scale(0.95) translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.pop-in.active { opacity: 1; transform: scale(1) translateY(0); }

/* ============================================================ */
/* TARGETED FIX — ADVANTAGES + HAPPY + INSTA                    */
/* Paste at very END of style.css                               */
/* ============================================================ */

/* ---- ADVANTAGES: Force visible + proper 50/50 split ---- */
.snoofy-advantages-section {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    min-height: 700px;
    overflow: hidden !important;
}

.advantages-img-col {
    width: 50% !important;
    flex: 0 0 50% !important;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.advantages-img-col video {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.advantages-content-col {
    width: 50% !important;
    flex: 0 0 50% !important;
    min-height: 700px;
    background-color: rgba(231, 111, 81, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px !important;
    box-sizing: border-box;
}

.advantages-content-col h2 {
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 60px;
    color: #fff;
    margin-bottom: 40px;
}

.adv-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ---- HAPPY: Force visible + proper 50/50 split ---- */
.happy-section {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    min-height: 600px;
    overflow: hidden !important;
}

.happy-content {
    width: 50% !important;
    flex: 0 0 50% !important;
    padding: 80px 60px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.gs-happy-title,
.gs-happy-text,
.gs-happy-btn,
.gs-happy-video {
    opacity: 1 !important;
    visibility: visible !important;
}

.happy-img-col {
    width: 50% !important;
    flex: 0 0 50% !important;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.happy-img-col video {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* ---- INSTA: Full width 5-col grid ---- */
.snoofy-insta-section {
    width: 100% !important;
    overflow: hidden !important;
}

.snoofy-insta-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    width: 100% !important;
    gap: 0 !important;
}

.snoofy-insta-item {
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden;
    position: relative;
}

.snoofy-insta-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* ---- TABLET ---- */
@media (max-width: 1024px) {
    .snoofy-advantages-section {
        flex-direction: column !important;
    }
    .advantages-img-col,
    .advantages-content-col {
        width: 100% !important;
        flex: none !important;
        min-height: 400px;
    }
    .advantages-content-col {
        padding: 60px 40px !important;
    }
    .advantages-content-col h2 { font-size: 46px; }

    .happy-section {
        flex-direction: column !important;
    }
    .happy-content,
    .happy-img-col {
        width: 100% !important;
        flex: none !important;
    }
    .happy-img-col {
        min-height: 400px;
        order: -1;
    }
    .happy-content {
        padding: 60px 40px !important;
    }

    .snoofy-insta-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .advantages-img-col { min-height: 300px; }
    .advantages-content-col {
        padding: 50px 20px !important;
        min-height: unset;
    }
    .advantages-content-col h2 { font-size: 34px; text-align: center; }
    .advantages-grid { grid-template-columns: 1fr !important; gap: 30px; }
    .adv-item { align-items: center; text-align: center; }

    .happy-content {
        padding: 50px 20px !important;
        text-align: center;
        align-items: center;
    }
    .happy-content h2 { font-size: 30px; }
    .happy-img-col { min-height: 300px; }

    .snoofy-insta-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ---- SMALL MOBILE ---- */
@media (max-width: 480px) {
    .advantages-content-col h2 { font-size: 26px; }
    .happy-content h2 { font-size: 24px; }
    .snoofy-insta-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}