/* PACKSHOT360 - STYLES CSS */

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf9f7;
    color: #1a1a1a;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #faf9f7;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: #1a1a1a;
    transform: rotate(45deg);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a1a1a;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #faf9f7;
    list-style: none;
    padding: 15px 0;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    color: #1a1a1a;
    background: rgba(26, 26, 26, 0.05);
    border-left-color: #1a1a1a;
}

/* Mobile Services Menu */
.mobile-services-title {
    display: block;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    cursor: default;
}

.mobile-submenu {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

.mobile-submenu li {
    margin: 15px 0;
}

.mobile-submenu a {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-button {
    padding: 12px 24px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #1a1a1a;
    color: #faf9f7;
}

.phone-button {
    padding: 12px 20px;
    border: 2px solid #1a1a1a;
    background: #1a1a1a;
    color: #faf9f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: transparent;
    color: #1a1a1a;
}

/* MAIN HEADER */
.header {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
    gap: 0;
}

/* Left Content */
.content-left {
    padding: 80px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
}

.sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: -10px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 400px;
    margin: 20px 0;
}

.secondary-button {
    padding: 16px 24px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #1a1a1a;
    color: #faf9f7;
}

/* Right Grid */
.content-right {
    padding: 40px;
    display: flex;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    height: 600px;
}

.product-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #faf9f7;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #1a1a1a;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 30px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.mobile-contact-btn {
    margin-top: 40px;
    padding: 15px 30px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.fixed-phone-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #faf9f7;
    text-align: center;
    padding: 20px;
    z-index: 999;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    will-change: transform;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #faf9f7;
    border-radius: 12px;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-info {
    display: none;
}

/* Mobile animations */
@media (max-width: 768px) {
    .product-item {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }

    .product-item:nth-child(1) { animation-delay: 0.1s; }
    .product-item:nth-child(2) { animation-delay: 0.2s; }
    .product-item:nth-child(3) { animation-delay: 0.3s; }
    .product-item:nth-child(4) { animation-delay: 0.4s; }
    .product-item:nth-child(5) { animation-delay: 0.5s; }
    .product-item:nth-child(6) { animation-delay: 0.6s; }
    .product-item:nth-child(7) { animation-delay: 0.7s; }
    .product-item:nth-child(8) { animation-delay: 0.8s; }
    .product-item:nth-child(9) { animation-delay: 0.9s; }
    .product-item:nth-child(10) { animation-delay: 1.0s; }
    .product-item:nth-child(11) { animation-delay: 1.1s; }
    .product-item:nth-child(12) { animation-delay: 1.2s; }
    .product-item:nth-child(13) { animation-delay: 1.3s; }
    .product-item:nth-child(14) { animation-delay: 1.4s; }
    .product-item:nth-child(15) { animation-delay: 1.5s; }
    .product-item:nth-child(16) { animation-delay: 1.6s; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes slideLeft {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-5px); }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(5px); }
}

/* Color backgrounds for mobile only */
@media (max-width: 768px) {
    .bg-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
    .bg-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
    .bg-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
    .bg-green { background: linear-gradient(135deg, #10b981, #059669); }
    .bg-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
    .bg-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
    .bg-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
    .bg-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
}

/* Desktop: transparent backgrounds with subtle animations */
@media (min-width: 769px) {
    .product-item {
        background: transparent;
    }
    
    .product-item:nth-child(odd) {
        animation: float 4s ease-in-out infinite;
    }

    .product-item:nth-child(even) {
        animation: pulse 5s ease-in-out infinite;
    }

    .product-item:nth-child(3n) {
        animation: slideLeft 6s ease-in-out infinite;
    }

    .product-item:nth-child(5n) {
        animation: slideRight 7s ease-in-out infinite;
    }
}

/* BODY SECTIONS STYLING */
.main-content {
    background-color: #faf9f7;
}

.section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section.reverse {
    grid-template-columns: 1fr 1fr;
}

.section.reverse .section-content {
    order: 2;
}

.section.reverse .section-image {
    order: 1;
}

.section-content {
    padding: 0 40px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.section-advantages {
    margin-bottom: 30px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(-10px);
}

.section-advantages.expanded {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.section-advantages h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-advantages ul {
    list-style: none;
    padding: 0;
}

.section-advantages li {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.section-advantages li::before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.section-button {
    padding: 12px 24px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-button:hover {
    background-color: #1a1a1a;
    color: #faf9f7;
    transform: translateY(-2px);
}

.read-more-btn {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #666;
}

.read-more-btn:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

.section-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

.section-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Specific section styling */
.lifestyle-image {
    aspect-ratio: 4/5;
    height: 500px;
}

.rotation-image {
    aspect-ratio: 16/9;
    height: 350px;
}

.catalogue-image {
    aspect-ratio: 4/5;
    height: 500px;
}

.creative-image {
    aspect-ratio: 16/9;
    height: 350px;
}

/* Scroll animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ SECTION STYLING */
.faq-section {
    background: #faf9f7;
    padding: 80px 0;
}

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

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 18px;
    color: #4a4a4a;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
}

.faq-question:hover {
    color: #1a1a1a;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 25px 0;
}

.faq-answer p {
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* CONTACT FORM SECTION */
.contact-section {
    background: #1a1a1a;
    padding: 80px 0;
    color: #faf9f7;
}

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

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #faf9f7;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #faf9f7;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    justify-self: center;
    padding: 15px 40px;
    background: transparent;
    color: #faf9f7;
    border: 2px solid #faf9f7;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-submit:hover {
    background: #faf9f7;
    color: #1a1a1a;
}

/* FOOTER SECTION */
.footer {
    background: #111;
    padding: 60px 0 30px 0;
    color: #ccc;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #faf9f7;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #faf9f7;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 20px;
    height: 20px;
    background-color: #faf9f7;
    transform: rotate(45deg);
    border-radius: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .fixed-phone-mobile {
        display: flex;
    }

    .section {
        max-width: 90%;
        gap: 40px;
        padding: 60px 0;
    }

    .section-content {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .header {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .content-left {
        padding: 60px 40px 40px 40px;
    }
    
    .product-grid {
        height: 400px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .sub-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .product-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(16, 1fr);
        height: auto;
        gap: 15px;
    }

    .product-item {
        height: 200px;
    }

    .product-item:nth-child(odd) {
        animation: slideInUp 0.6s ease forwards, float 3s ease-in-out infinite;
    }

    .product-item:nth-child(even) {
        animation: slideInUp 0.6s ease forwards, pulse 4s ease-in-out infinite;
    }

    .product-item:nth-child(3n) {
        animation: slideInUp 0.6s ease forwards, slideLeft 5s ease-in-out infinite;
    }

    .product-item:nth-child(5n) {
        animation: slideInUp 0.6s ease forwards, slideRight 6s ease-in-out infinite;
    }
    
    .content-left,
    .content-right {
        padding: 40px 20px;
    }

    .content-right {
        padding-bottom: 80px;
    }

    .main-title {
        font-size: 32px;
    }
    
    .sub-title {
        font-size: 24px;
    }

    body {
        padding-bottom: 80px;
    }

    .main-content {
        padding-bottom: 80px;
    }

    .section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 40px 0;
        max-width: 100%;
    }

    .section-content {
        padding: 0 20px;
        text-align: center;
        order: 2;
    }

    .section-image {
        order: 1;
        margin: 0 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .section-advantages {
        margin-bottom: 25px;
    }

    .section-advantages li {
        text-align: left;
        margin-bottom: 6px;
    }

    .lifestyle-image,
    .catalogue-image {
        height: 350px;
    }

    .rotation-image,
    .creative-image {
        height: 250px;
    }

    .faq-section {
        padding: 60px 0 140px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        max-height: 400px;
        padding: 0 0 20px 0;
    }

    .contact-section {
        padding: 60px 0 140px 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}