/* Breadcrumb Navigation */
.breadcrumb-container {
    background-color: #f8f8f8;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

.breadcrumb-wrapper a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.breadcrumb-wrapper a:hover {
    color: #10519f;
    text-decoration: underline;
}

.breadcrumb-wrapper .separator {
    margin: 0 8px;
    color: #999;
    font-weight: 300;
}

.breadcrumb-wrapper .current {
    color: #333;
    font-weight: 400;
}

/* Mobile Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 10px 0;
    }
    
    .breadcrumb-wrapper {
        padding: 0 30px;
        font-size: 12px;
    }
    
    .breadcrumb-wrapper .separator {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-wrapper {
        padding: 0 20px;
        font-size: 11px;
    }
    
    .breadcrumb-wrapper .separator {
        margin: 0 5px;
    }
    
    .breadcrumb-wrapper .current {
        display: block;
        margin-top: 2px;
    }
}

/* Product Hero Section */
.product-hero-section {
    position: relative;
    width: 100%;
    min-height: 55vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0 60px;
}

/* Video Background */
.product-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.product-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.product-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a67ff 0%, #f97000 100%);
    opacity: 0.8;
    z-index: 2;
}

/* Mountain Shape Divider */
.product-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 300' preserveAspectRatio='none'%3E%3Cpath d='M 1014 264 v 122 h -808 l -172 -86 s 310.42 -22.84 402 -79 c 106 -65 154 -61 268 -12 c 107 46 195.11 5.94 275 137 z' fill='%23ffffff'/%3E%3Cpath d='M -302 55 s 235.27 208.25 352 159 c 128 -54 233 -98 303 -73 c 92.68 33.1 181.28 115.19 235 108 c 104.9 -14 176.52 -173.06 267 -118 c 85.61 52.09 145 123 145 123 v 74 l -1306 10 z' fill='%23ffffff' opacity='0.7'/%3E%3Cpath d='M -286 255 s 214 -103 338 -129 s 203 29 384 101 c 145.57 57.91 178.7 50.79 272 0 c 79 -43 301 -224 385 -63 c 53 101.63 -62 129 -62 129 l -107 84 l -1212 12 z' fill='%23ffffff' opacity='0.5'/%3E%3Cpath d='M -24 69 s 299.68 301.66 413 245 c 8 -4 233 2 284 42 c 17.47 13.7 172 -132 217 -174 c 54.8 -51.15 128 -90 188 -39 c 76.12 64.7 118 99 118 99 l -12 132 l -1212 12 z' fill='%23ffffff' opacity='0.3'/%3E%3Cpath d='M -12 201 s 70 83 194 57 s 160.29 -36.77 274 6 c 109 41 184.82 24.36 265 -15 c 55 -27 116.5 -57.69 214 4 c 49 31 95 26 95 26 l -6 151 l -1036 10 z' fill='%23ffffff' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none;
}

/* Content */
.product-hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Product Demo Video */
.product-demo-video {
    position: relative;
    animation: zoomIn 0.6s ease-out 0.3s both;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-demo-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Product Info */
.product-hero-info {
    color: white;
    text-align: left;
}

.product-info-inner {
    max-width: 475px;
}

.product-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.product-title span {
    display: block;
    animation: slideInRight 0.6s ease-out both;
}

.product-title span:nth-child(1) {
    animation-delay: 0.1s;
}

.product-title span:nth-child(2) {
    animation-delay: 0.2s;
}

.product-title span:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* Buttons */
.product-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    animation: rubberBand 1s ease-out 0.5s both;
}

@keyframes rubberBand {
    from {
        opacity: 0;
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.05, 0.95, 1);
    }
    40% {
        transform: scale3d(0.95, 1.05, 1);
    }
    50% {
        transform: scale3d(1.02, 0.98, 1);
    }
    65% {
        transform: scale3d(0.98, 1.02, 1);
    }
    75% {
        transform: scale3d(1.01, 0.99, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

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

.primary-btn:hover {
    background-color: #0d4080;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 81, 159, 0.3);
}

.secondary-btn {
    background-color: #FF8C42;
    color: white;
}

.secondary-btn:hover {
    background-color: #ff7a28;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .product-hero-section {
        min-height: 50vh;
        padding: 40px 0 60px;
    }
    
    .product-hero-grid {
        gap: 30px;
    }
    
    .product-title {
        font-size: 34px;
    }
    
    .product-hero-section::after {
        height: 80px;
    }
    
    .product-hero-content {
        padding: 0 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-hero-section {
        min-height: auto;
        padding: 50px 0 40px;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-hero-info {
        text-align: center;
    }
    
    .product-info-inner {
        max-width: 100%;
    }
    
    .product-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
    
    .product-hero-buttons {
        justify-content: center;
    }
    
    .product-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
    }
    
    .product-hero-section::after {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .product-hero-content {
        padding: 0 20px;
    }
    
    .product-title {
        font-size: 26px;
    }
    
    .product-subtitle {
        font-size: 14px;
    }
    
    .product-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-btn {
        width: 100%;
        max-width: none;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .product-hero-section::after {
        height: 60px;
    }
}

/* Production Line Section */
.production-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.production-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.production-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.production-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 25px;
    line-height: 1.3;
}

.production-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px;
}

.catalogue-link {
    margin-top: 30px;
}

.btn-catalogue {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #10519f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-catalogue .line {
    width: 40px;
    height: 2px;
    background-color: #10519f;
    transition: width 0.3s ease;
}

.btn-catalogue:hover .line {
    width: 60px;
}

.btn-catalogue:hover {
    color: #0d4080;
}

.production-images {
    position: relative;
}

.production-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .production-section {
        padding: 60px 0;
    }
    
    .production-content {
        gap: 40px;
    }
    
    .production-text h2 {
        font-size: 32px;
    }
    
    .production-text p {
        font-size: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .production-section {
        padding: 50px 0;
    }
    
    .production-container {
        padding: 0 30px;
    }
    
    .production-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .production-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .production-text p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn-catalogue {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .production-section {
        padding: 40px 0;
    }
    
    .production-container {
        padding: 0 20px;
    }
    
    .production-text h2 {
        font-size: 24px;
    }
    
    .production-text p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Features Section */
.features-section {
    background-color: #ffffff;
    padding: 40px 0 80px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image {
    animation: fadeInFromRight 1s ease-out;
}

.features-image img {
    width: 110%;
    height: auto;
    display: block;
    border-radius: 10px;
}

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.features-text {
    padding: 40px;
    animation: fadeInFromBottom 1s ease-out 0.3s both;
}

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

.features-subtitle {
    font-size: 14px;
    color: #bfbfbf;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.features-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.3;
}

.video-link {
    margin-bottom: 25px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0050a5;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 15px;
}

.arrow-icon {
    width: 16px;
    height: 20px;
    transition: transform 0.3s ease;
}

.link-arrow:hover .arrow-icon {
    transform: translateX(5px);
}

.features-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.features-description ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-description ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
}

.features-description ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10519f;
    font-weight: bold;
    font-size: 20px;
}

.highlight-text {
    font-weight: 600;
    color: #212529;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #dd3333;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-quote:after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-quote:hover {
    background-color: #c42d2d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(221, 51, 51, 0.3);
}

.btn-quote:hover:after {
    transform: translateX(5px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .features-section {
        padding: 30px 0 60px 0;
    }
    
    .features-content {
        gap: 40px;
    }
    
    .features-text {
        padding: 20px;
    }
    
    .features-text h2 {
        font-size: 28px;
    }
    
    .features-description p,
    .features-description ul li {
        font-size: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 30px 0 50px 0;
    }
    
    .features-container {
        padding: 0 30px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-image img {
        width: 100%;
    }
    
    .features-text {
        padding: 0;
    }
    
    .features-text h2 {
        font-size: 26px;
    }
    
    .link-arrow {
        font-size: 16px;
    }
    
    .btn-quote {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 20px 0 40px 0;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-text h2 {
        font-size: 24px;
    }
    
    .features-description p,
    .features-description ul li {
        font-size: 14px;
    }
    
    .features-subtitle {
        font-size: 13px;
    }
}

/* 360 View & Form Section */
.view-360-section {
    background-color: #ffffff;
    padding: 60px 0 20px 0;
    position: relative;
}

.view-360-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.view-360-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.view-360-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 15px;
}

.view-360-left h4 {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.view-360-image {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    background-color: #ffffff;
    padding: 30px;
}

.view-360-image:active {
    cursor: grabbing;
}

.view-360-image img {
    width: 100%;
    height: auto;
    display: block;
}

.view-360-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
}

.view-360-image:hover .view-360-overlay {
    opacity: 0.8;
}

.view-360-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: rotate360 3s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.view-360-overlay p {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.view-360-instruction {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.btn-expert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF8C42;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 300px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.btn-expert:hover {
    background-color: #ff7a28;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.btn-expert .arrow-icon {
    width: 16px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-expert:hover .arrow-icon {
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #1e5fa8;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    font-size: 12px;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #ff4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #FF8C42;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

.btn-submit:hover {
    background-color: #ff7a28;
    transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .view-360-section {
        padding: 50px 0 15px 0;
    }
    
    .view-360-content {
        gap: 40px;
    }
    
    .view-360-left h2 {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .view-360-section {
        padding: 40px 0 15px 0;
    }
    
    .view-360-container {
        padding: 0 30px;
    }
    
    .view-360-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .view-360-left h2 {
        font-size: 28px;
    }
    
    .view-360-left h4 {
        font-size: 16px;
    }
    
    .btn-expert {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .view-360-section {
        padding: 30px 0 10px 0;
    }
    
    .view-360-container {
        padding: 0 20px;
    }
    
    .view-360-left h2 {
        font-size: 24px;
    }
    
    .view-360-icon {
        font-size: 40px;
    }
    
    .view-360-overlay p {
        font-size: 14px;
    }
}

