/* ========================================
   Additional Pages Styles
   ======================================== */

/* Global overflow fix for pages */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ========================================
   PAGE-LEVEL ANIMATION ENHANCEMENTS
   Inherits motion tokens from animations.css
   ======================================== */

/* Page Hero - Entrance Animation */
.page-hero h1,
.page-hero p {
    opacity: 0;
    transform: translateY(30px);
    animation: pageHeroEnter 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.page-hero h1 {
    animation-delay: 0.2s;
}

.page-hero p {
    animation-delay: 0.4s;
}

@keyframes pageHeroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(98, 129, 65, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f44336;
}

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

/* Enhanced Date & Time Picker Styles */
.datetime-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.datetime-input-wrapper input[type="date"],
.datetime-input-wrapper input[type="time"] {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    color: var(--text-dark);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.datetime-input-wrapper input[type="date"]:hover,
.datetime-input-wrapper input[type="time"]:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f5eb 100%);
    box-shadow: 0 4px 15px rgba(98, 129, 65, 0.1);
}

.datetime-input-wrapper input[type="date"]:focus,
.datetime-input-wrapper input[type="time"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(98, 129, 65, 0.15), 0 4px 20px rgba(98, 129, 65, 0.1);
    background: #ffffff;
}

.datetime-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.datetime-input-wrapper:hover .datetime-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.datetime-input-wrapper input:focus+.datetime-icon {
    opacity: 1;
    color: var(--primary-color);
    animation: iconPulse 0.3s ease;
}

@keyframes iconPulse {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        transform: translateY(-50%) scale(1.1);
    }
}

/* Custom calendar picker styling for WebKit browsers */
.datetime-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator,
.datetime-input-wrapper input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* Form label icons styling */
.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Select dropdown enhancement */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23628141' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

/* Custom Time Picker Styles */
.custom-time-picker {
    position: relative;
    width: 100%;
}

.time-display {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.time-display:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f5eb 100%);
    box-shadow: 0 4px 15px rgba(98, 129, 65, 0.1);
}

.time-display .time-placeholder {
    color: #999;
}

.time-display .time-value {
    color: var(--text-dark);
    font-weight: 500;
}

.time-display i {
    color: var(--primary-color);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.time-display:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Time Popup */
.time-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.time-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.time-popup-header {
    background: var(--primary-color);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.time-popup-header i {
    font-size: 1.2rem;
}

/* Time Range Section Styles */
.time-range-section {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.time-range-section:last-of-type {
    border-bottom: none;
}

.time-range-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-range-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Time Steps Indicator */
.time-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.time-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.time-step.active {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.time-step.active .step-number {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(98, 129, 65, 0.3);
}

.time-step.completed .step-number {
    background: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
}

.time-step.active .step-label,
.time-step.completed .step-label {
    color: var(--primary-color);
}

.time-step-line {
    width: 60px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.time-step-line.active {
    background: var(--primary-color);
}

/* Back Button */
.time-back-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
    margin-right: auto;
}

.time-back-btn:hover {
    background: #eee;
    color: #333;
}

/* Next Button */
.time-next-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(98, 129, 65, 0.3);
}

.time-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(98, 129, 65, 0.4);
}

.time-selectors {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    background: #f8f9fa;
}

.time-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.time-column label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.time-scroll {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-height: 160px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
}

.time-scroll::-webkit-scrollbar {
    width: 4px;
}

.time-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

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

.time-option {
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    min-width: 60px;
}

.time-option:hover {
    background: #f0f5eb;
    color: var(--primary-color);
}

.time-option.selected {
    background: var(--primary-color);
    color: white;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 30px;
}

.period-column {
    margin-left: 10px;
}

.period-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.period-btn {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
    color: #666;
}

.period-btn:hover {
    background: #e8f0e0;
    color: var(--primary-color);
}

.period-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(98, 129, 65, 0.3);
}

.time-popup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.time-cancel-btn,
.time-confirm-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-cancel-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
}

.time-cancel-btn:hover {
    background: #eee;
    color: #333;
}

.time-confirm-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(98, 129, 65, 0.3);
}

.time-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(98, 129, 65, 0.4);
}

/* Custom Date Picker Styles */
.custom-date-picker {
    position: relative;
    width: 100%;
}

.date-display {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

.date-display:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(98, 129, 65, 0.1);
}

.date-display .date-placeholder {
    color: #999;
}

.date-display .date-value {
    color: var(--text-dark);
    font-weight: 500;
}

.date-display i {
    color: var(--primary-color);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.date-display:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Date Popup */
.date-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 320px;
}

.date-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.date-popup-header {
    background: var(--primary-color);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.date-popup-header i {
    font-size: 1.2rem;
}

/* Calendar Navigation */
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.cal-nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cal-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.cal-month-year {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Calendar Grid */
.calendar-grid {
    padding: 15px;
    background: white;
}

.cal-day-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% / 7);
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

.cal-days {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.cal-day {
    width: calc((100% - 24px) / 7);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cal-day:hover:not(.disabled):not(.selected) {
    background: #f0f5eb;
    color: var(--primary-color);
}

.cal-day.selected {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(98, 129, 65, 0.3);
}

.cal-day.today:not(.selected) {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.cal-day.other-month {
    color: #bbb;
}

/* Date Popup Footer */
.date-popup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #eee;
}

.date-cancel-btn,
.date-confirm-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-cancel-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
}

.date-cancel-btn:hover {
    background: #eee;
    color: #333;
}

.date-confirm-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(98, 129, 65, 0.3);
}

.date-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(98, 129, 65, 0.4);
}

.btn-full {
    width: 100%;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.info-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-card p,
.info-card a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.info-card a:hover {
    color: var(--primary-color);
}

.info-card .coming-soon {
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white-bg);
    border-radius: 50%;
    display: flex;
    border: 1px solid var(--text-dark);
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}


.faq-question span {
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* About Page */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #EBD5AB 0%, #f5f5f0 100%);
    padding: 120px 5% 60px;
}

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

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-content p {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Product Pages */
.product-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    padding: 120px 5% 60px;
    color: var(--white);
}

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

.product-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.product-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-hero-image img {
    max-height: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Product Features */
.product-features {
    padding: 100px 0;
    background: var(--white);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Lookbook Page */
.lookbook-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.lookbook-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lookbook-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.lookbook-item:hover img {
    transform: scale(1.1);
}

.lookbook-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.lookbook-item:hover .lookbook-overlay {
    transform: translateY(0);
}

.lookbook-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.lookbook-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Blog Page */
.blog-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 15px;
}

.read-more:hover {
    gap: 10px;
}

/* Event Photos Page */
.event-search {
    padding: 100px 0 50px;
    background: var(--gradient-primary);
    text-align: center;
}

.event-search h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.search-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.search-form button {
    padding: 15px 30px;
    background: var(--dark-bg);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--darker-bg);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive Styles for Pages */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .product-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image,
    .product-hero-image {
        order: -1;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .search-form {
        flex-direction: column;
    }

    /* Fix inline grid styles on my-event-photos page */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* About page hero fix */
    .about-hero {
        padding: 120px 20px 60px;
    }

    .about-grid {
        gap: 30px;
    }

    .about-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .about-hero {
        padding: 100px 15px 50px;
    }
}