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

html {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .contact-info i {
    color: #e53e3e;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: end;
    /*gap: 15px;*/
}

.logo img {
    height: 60px;
    width: auto;
    /* border-radius: 8px; */
}

.logo h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
}
.logo p {
    font-size: 11.2px;
    /*padding-left: 8px;*/
    line-height: 2px;
    
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e53e3e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e53e3e;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.slide-bg {
    transition: transform 0.5s ease;
}

.slide.active .slide-bg {
    animation: kenBurns 8s ease-in-out;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-badge {
    display: inline-block;
    background: rgba(229, 62, 62, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #333;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(229, 62, 62, 0.8);
    border-color: #e53e3e;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #e53e3e;
    transform: scale(1.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 300;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

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

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #e53e3e;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    position: relative;
    width: 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229,62,62,0.8), rgba(197,48,48,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.overlay-content p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229,62,62,0.8), rgba(197,48,48,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    color: white;
    font-size: 2.5rem;
}

.service-overlay img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 25px 30px 15px;
}

.service-card p {
    color: #666;
    margin: 0 30px 25px;
    line-height: 1.6;
}

.service-link {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 0 30px 30px;
}

.service-link:hover {
    gap: 12px;
}

/* Page Hero */
.page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a1a1a, #2d3748);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: end;
    max-width: 60%;
    /* gap: 10px; */
    flex-direction: column;
}

.footer-logo h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}
.footer-logo p{
        color: white;
         font-size: 11.2px;
    /*padding-left: 8px;*/
    line-height: 2px;
    
}
.footer-logo i {
    color: #e53e3e;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-contact {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item i {
    color: #e53e3e;
    width: 16px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #e53e3e;
    padding-left: 5px;
}

.footer-links i {
    font-size: 10px;
    color: #e53e3e;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content a {
    color: #e53e3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-content a:hover {
    color: #c53030;
    text-decoration: underline;
}

/* Products Page Styles */
.products {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #e53e3e;
    height: fit-content;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.product-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #1a1a1a;
}

.product-category {
    background: #e53e3e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.properties {
    margin-top: 20px;
}

.properties h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.properties ul {
    list-style: none;
}

.properties li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.properties li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
}

/* Specifications Page Styles */
.specifications {
    padding: 100px 0;
}

.spec-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 4px solid #e53e3e;
}

.spec-card h3 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table th,
.spec-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.spec-table th {
    background: #f8f9fa;
    color: #1a1a1a;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.spec-table tr:hover {
    background: #f8f9fa;
}

.additional-products {
    margin: 50px 0;
}

.additional-products h3 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.app-spec {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #e53e3e;
}

.app-spec h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.characteristics {
    margin-top: 15px;
}

.characteristics h5 {
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.characteristics ul {
    list-style: none;
}

.characteristics li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.characteristics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
}

.packaging-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.packaging-info h3 {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.packaging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.package-option {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon::before {
    content: '📦';
    font-size: 2rem;
}

.package-icon.jumbo::before {
    content: '📋';
}

.package-option h4 {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #e53e3e;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.top-bar .contact-info a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.contact-card h3 {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

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

.map-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.map-section h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.map-container .map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #94a3b8;
}

.location-marker {
    position: relative;
    text-align: center;
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: #e53e3e;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 20px;
    position: relative;
}

.marker-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.map-info {
    color: #666;
}

.map-info h4 {
    color: #1a1a1a;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 5px;
}

/* About Page Styles */
.expertise {
    padding: 100px 0;
}

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

.expertise-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 300;
}

.expertise-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #e53e3e;
}

.highlight-box h4 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.2rem;
}

.expertise-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-effect {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.glass-effect img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.glass-effect:hover img {
    transform: scale(1.05);
}

.glass-effect:hover .glass-overlay {
    left: 100%;
}



.location-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e53e3e;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
    margin: 0 8px;
}

.location-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.location-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 300;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #e53e3e;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateX(5px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.detail-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.detail-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: #e53e3e;
}

.location-map {
    position: sticky;
    top: 100px;
}

.location-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.address {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #e53e3e;
}

.address h4 {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.contact-item strong {
    color: #1a1a1a;
}

.location-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.interactive-map {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 62, 62, 0.95);
    color: white;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-link:hover {
    background: rgba(197, 48, 48, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.map-link i {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* Mobile Navigation */
.nav-menu.mobile-active {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mobile-contact-info {
    display: none;
    background: #1a1a1a;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
}

.mobile-contact-info span {
    display: block;
    margin: 5px 0;
}

.mobile-contact-info i {
    color: #e53e3e;
    margin-right: 5px;
}

.mobile-contact-info a {
    color: white;
    text-decoration: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Gallery Styles */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    margin: 0 0 5px 0;
    font-family: 'Oswald', sans-serif;
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    top: 20%;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    user-select: none;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .gallery-grid {
        column-count: 2;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .mobile-contact-info {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu.mobile-active {
        top: 110px;
        height: calc(100vh - 110px);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .footer-grid,
    .contact-grid,
    .location-50-50 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        column-count: 1;
    }
    
    .packaging-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

