/* Product Page Specific Styles */

/* Logo with link */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light-color);
}

/* Product Hero Section */
.product-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 184, 28, 0.15) 0%, rgba(18, 18, 18, 0) 70%),
        linear-gradient(45deg, rgba(255, 184, 28, 0.05) 0%, rgba(18, 18, 18, 0) 70%);
    pointer-events: none;
}

.product-hero .container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
}

.product-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
    animation: float 6s ease-in-out infinite;
}

/* Product Details Section */
.product-details {
    padding: 100px 0;
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-feature {
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 184, 28, 0.1);
}

.product-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.product-icon i {
    font-size: 24px;
    color: var(--dark-color);
}

.product-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.product-feature p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

/* Add a visual indicator for clickability */
.product-feature::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 184, 28, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb81c'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
}

.product-feature:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

/* Add "Get a Quote" text that appears on hover */
.product-feature::before {
    content: 'Get a Quote';
    position: absolute;
    bottom: 15px;
    left: 30px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-feature:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Add a subtle overlay effect on hover */
.product-feature .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 184, 28, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-feature:hover .hover-overlay {
    opacity: 1;
}

/* Add new button styling */
.product-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-btn:hover {
    background-color: #e6a718;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Call to Action Section */
.product-cta {
    padding: 80px 0;
    background-color: rgba(18, 18, 18, 0.9);
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 184, 28, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
}

.product-cta h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.product-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .product-hero-image {
        margin-top: 40px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta h2 {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Product Page Modal Enhancements */
.service-modal {
    z-index: 9999; /* Ensure modals appear above all other elements */
}

.modal-content {
    max-height: 85vh; /* Slightly shorter to ensure it fits on smaller screens */
    overflow-y: auto; /* Enable scrolling for longer forms */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(30, 30, 30, 0.5);
}

.modal-content::-webkit-scrollbar {
    display: block;
    width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background-color: rgba(30, 30, 30, 0.5);
}

/* Ensure form buttons are visible and properly styled */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-nav button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn, .submit-brief-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
}

.prev-btn {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.next-btn:hover, .submit-brief-btn:hover {
    background-color: #e6a718;
    transform: translateY(-2px);
}

.prev-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Pricing Details Section */
.pricing-details {
    padding: 80px 0;
    background-color: rgba(18, 18, 18, 0.8);
    position: relative;
}

.pricing-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 184, 28, 0.08) 0%, rgba(10, 10, 10, 0) 70%);
    pointer-events: none;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-item {
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 184, 28, 0.1);
}

.pricing-header {
    padding: 25px 20px;
    background-color: rgba(20, 20, 20, 0.7);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.pricing-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.pricing-features {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-features ul li {
    margin-bottom: 12px;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
}

.pricing-features ul li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 4px;
}

.pricing-action-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    align-self: center;
    margin-top: auto;
}

.pricing-action-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 184, 28, 0.2);
}

/* Responsive Styles for Pricing */
@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .pricing-item {
        max-width: 100%;
    }
}

/* Add styles for the cta-buttons class */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Style for sub-options in the comprehensive quote form */
.sub-options {
    margin-left: 25px;
    margin-top: 5px;
    padding-left: 10px;
    border-left: 2px solid var(--accent-color);
}

/* Make sure the form sections have proper spacing */
.form-section h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Style for the logo in the modal header */
.modal-header img {
    max-width: 100px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for the comprehensive form */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sub-options {
        margin-left: 15px;
    }
} 