/* Lion Led Lightning - Style.css */
/* Modern, responsive CSS with animations and effects */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffb800;
    --primary-dark: #e6a600;
    --secondary-color: #383c3d;
    --light-color: #f4f4f4;
    --dark-color: #222;
    --text-color: #333;
    --gray-color: #7f8c8d;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.line {
    height: 3px;
    width: 70px;
    background: var(--primary-color);
    margin: 0 auto;
    margin-top: 10px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.logo i {
    color: var(--primary-color);
    margin-right: 5px;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin-left: 25px;
}

.main-menu a {
    position: relative;
    font-weight: 500;
    color: var(--secondary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover, .main-menu a.active {
    color: var(--primary-color);
}

.main-menu a:hover::after, .main-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Page Header */
.page-header {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/yatay3.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
    animation: fadeUp 1s ease;
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
    animation: fadeUp 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.breadcrumbs span {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://lionledlighting.com/img/yatay1.jpg'); no-repeat center center/cover
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.hero::before {
    display: none; /* Removing the placeholder text */
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    position: relative;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-image {
    flex: 1;
    min-width: 300px;
    background: url('https://lionledlighting.com/img/about/about-img.jpg') no-repeat center/cover;
    height: 400px;
    border-radius: 10px;
    place-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision */
.mission-vision {
    background-color: #f9f9f9;
}

.mission-vision-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mission-box, .vision-box {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.mission-box:hover .icon-box, .vision-box:hover .icon-box {
    background-color: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.value-card:hover .icon {
    background-color: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

/* Technologies Section */
.technologies {
    background-color: #f9f9f9;
}

.tech-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 70px;
    height: 100%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.tech-item:hover .tech-icon {
    background-color: var(--secondary-color);
    color: #fff;
}

.tech-content {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

.tech-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tech-features {
    margin-top: 15px;
}

.tech-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.tech-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.tech-image {
    width: 300px;
    padding: 15px;
    display: flex;
    align-items: center;
}

.tech-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .tech-item {
        flex-direction: column;
    }
    
    .tech-icon {
        width: 100%;
        height: 70px;
    }
    
    .tech-image {
        width: 100%;
        order: -1;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
}

.stats-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team {
    background-color: #f9f9f9;
}

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

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-img {
    overflow: hidden;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.member-desc {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Why Choose Us Section */
.choose-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.choose-text {
    flex: 1;
    min-width: 300px;
}

.choose-image {
    flex: 1;
    min-width: 300px;
}

.choose-item {
    display: flex;
    margin-bottom: 30px;
}

.choose-icon {
    min-width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.choose-item:hover .choose-icon {
    background-color: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.choose-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Partners Section */
.partners {
    padding: 60px 0;
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.partner-logo {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
}

.cta .btn:hover {
    animation: pulse 1s infinite;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .icon {
    background-color: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

/* Products Section */
.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--gray-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img img {
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Projects Section */
.projects {
    background-color: #f9f9f9;
}

.project-slider {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.project-slide {
    display: none;
    position: relative;
}

.project-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
}

.project-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 184, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo, .footer-links, .footer-newsletter {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: #fff;
    font-size: 1.8rem;
}

.footer-logo span, .footer-logo i {
    color: var(--primary-color);
}

.footer-links h3, .footer-newsletter h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.footer-newsletter .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 1;
    }
    
    .main-menu.active {
        transform: translateY(0);
    }
    
    .main-menu li {
        margin: 15px 0;
    }
    
    .hero-content h1, .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header {
        height: 200px;
        margin-top: 70px;
    }
    
    .about-content, .contact-content, .choose-content, .mission-vision-content {
        flex-direction: column;
    }
    
    .about-image, .choose-image {
        order: -1;
    }
    
    .project-slide img {
        height: 350px;
    }
    
    .stat-item {
        min-width: 150px;
        margin: 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        height: 90vh;
    }
    
    .page-header {
        height: 180px;
    }
    
    .hero-content h1, .page-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .project-slide img {
        height: 250px;
    }
    
    .stat-item {
        min-width: 120px;
        margin: 8px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Animations and Effects */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero .btn:hover, .cta .btn:hover {
    animation: pulse 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.project-slide {
    animation: fadeIn 0.5s ease-in;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Contact Main Section */
.contact-main {
    background-color: #fff;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-row .form-group {
    flex: 1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 184, 0, 0.3);
}

.contact-form button {
    margin-top: 20px;
}

/* Contact Info Cards */
.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.contact-card-header i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-card-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.contact-card-content {
    padding: 20px;
}

.contact-card-content p {
    margin-bottom: 10px;
}

.contact-card-action {
    margin-top: 15px;
}

.link-with-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.link-with-icon span {
    margin-right: 10px;
}

.link-with-icon:hover {
    color: var(--secondary-color);
}

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

.link-with-icon i {
    transition: var(--transition);
}

/* Map Section */
.map-section {
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Tabs Section */
.contact-tabs {
    background-color: #fff;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--secondary-color);
}

.tab-btn.active:after,
.tab-btn:hover:after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.department-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.department-info {
    flex: 1;
    min-width: 300px;
}

.department-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.department-contact-info {
    margin-top: 25px;
}

.department-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.department-contact-info i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.department-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.accordion-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.accordion-header i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-header,
.accordion-header:hover {
    background-color: rgba(255, 184, 0, 0.05);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 25px;
}

/* Newsletter Section */
.contact-newsletter {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x600') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.newsletter-text {
    flex: 2;
    min-width: 300px;
}

.newsletter-text h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-form form {
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 0 30px;
    border-radius: 0;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .department-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .contact-form-container,
    .department-info {
        padding: 25px;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-header h3 {
        font-size: 0.9rem;
    }
}

/* Animation for accordion */
@keyframes slideDown {
    from {
        max-height: 0;
    }
    to {
        max-height: 300px;
    }
}

/* Products Page Styles */
.products-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/yatay3.jpg') center/cover;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.products-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.products-header h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeUp 1s ease;
    text-align: center;
}

.products-header .breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeUp 1.2s ease;
}

.products-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.products-header .breadcrumbs a:hover {
    color: var(--primary-color);
}

.products-header .breadcrumbs span {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .products-header {
        height: 200px;
        margin-top: 70px;
        clip-path: none;
        background: var(--secondary-color);
    }

    .products-header h1 {
        font-size: 2rem;
    }

    .products-header .container {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .products-header {
        height: 180px;
    }

    .products-header h1 {
        font-size: 1.8rem;
    }
}

.products-intro {
    padding: 80px 0 60px;
}

.animated {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.catalog-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.catalog-container {
    max-width: 1100px;
    margin: 0 auto;
}

.catalog-preview {
    display: flex;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
    position: relative;
}

.catalog-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.catalog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.catalog-image:hover .catalog-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.catalog-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.catalog-info {
    flex: 1;
}

.catalog-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.catalog-header h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin: 0;
}

.catalog-tag {
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.catalog-features {
    margin-bottom: 40px;
}

.catalog-features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.catalog-actions {
    display: flex;
    gap: 20px;
}

.catalog-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
}

.catalog-actions .btn i {
    font-size: 1.4rem;
}

.catalog-actions .btn span {
    text-align: left;
}

.catalog-actions .btn strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.catalog-actions .btn small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

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

.category-card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s;
    transform-style: preserve-3d;
    height: 100%;
}

.category-card:hover .card-inner {
    transform: rotateY(180deg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition);
}

.category-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.category-card p {
    color: var(--gray-color);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.category-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 40px 30px;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    text-align: center;
}

.category-hover ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.category-hover ul li:last-child {
    margin-bottom: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2634 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-shape {
    display: none; /* Removing the shape since we're using clip-path */
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-light {
    background: #fff;
    color: var(--secondary-color);
}

.btn-light:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.cta-buttons .btn i {
    font-size: 1.5rem;
}

.cta-buttons .btn span {
    text-align: left;
}

.cta-buttons .btn strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.cta-buttons .btn small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .catalog-preview {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .catalog-image {
        max-width: 100%;
        height: auto;
    }

    .catalog-info {
        padding: 0;
    }

    .catalog-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .catalog-header h3 {
        font-size: 1.8rem;
        margin: 0;
    }

    .catalog-features {
        margin: 30px 0;
    }

    .catalog-actions {
        flex-direction: column;
        gap: 15px;
    }

    .catalog-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-intro {
        padding: 50px 0;
    }

    .intro-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .catalog-section {
        padding: 50px 0;
    }

    .catalog-preview {
        padding: 20px;
        margin: 0 15px;
    }

    .catalog-features li {
        gap: 15px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }

    .categories-grid {
        padding: 0 15px;
    }

    .category-card {
        min-height: auto;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-card h3 {
        font-size: 1.2rem;
    }

    .category-card p {
        font-size: 0.9rem;
    }

    .contact-cta {
        padding: 60px 0;
    }

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

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-intro {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .catalog-preview {
        padding: 15px;
        margin: 0 10px;
        border-radius: 10px;
    }

    .catalog-badge {
        padding: 5px 10px;
        font-size: 0.8rem;
        right: 10px;
        top: 10px;
    }

    .catalog-header h3 {
        font-size: 1.5rem;
    }

    .catalog-tag {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .catalog-features {
        margin: 20px 0;
    }

    .catalog-features li {
        margin-bottom: 15px;
    }

    .catalog-actions .btn {
        padding: 12px 20px;
    }

    .catalog-actions .btn strong {
        font-size: 0.9rem;
    }

    .catalog-actions .btn small {
        font-size: 0.75rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .card-inner {
        padding: 25px 20px;
    }

    .category-hover ul li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contact-cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .cta-buttons .btn {
        padding: 12px 20px;
    }

    .cta-buttons .btn strong {
        font-size: 0.9rem;
    }

    .cta-buttons .btn small {
        font-size: 0.75rem;
    }
} 