:root {
    --primary: #d35400;
    --primary-light: #e67e22;
    --primary-dark: #a84300;
    --secondary: #2c3e50;
    --secondary-light: #34495e;
    --accent: #2980b9;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #666;
    --gray-light: #e8e8e8;
    --gray-lighter: #f5f5f5;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-light: 0 3px 10px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background-color: var(--light);
    color: #444;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.1rem; }

.playfair { font-family: 'Playfair Display', serif; }

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

/* Header */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(211, 84, 0, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Navigation */
nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    bottom: -2px;
    left: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient( rgba(44, 62, 80, 0.45), rgba(44, 62, 80, 0.55) ), url('/assets/hero1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    margin-top: -80px;
}

.hero-content {
    max-width: 700px;
    padding-top: 120px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .highlight {
    color: var(--primary-light);
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

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

/* Section Common Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Kitchen Designs */
.kitchen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.kitchen-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

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

.kitchen-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.kitchen-card:hover .kitchen-img img {
    transform: scale(1.05);
}

.kitchen-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.kitchen-info {
    padding: 25px;
}

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

.kitchen-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.kitchen-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background-color: var(--gray-lighter);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--gray);
}

.kitchen-actions {
    display: flex;
    gap: 10px;
}

.whatsapp-btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    flex: 1;
    font-size: 13px;
}

.whatsapp-btn-small:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn-small i {
    margin-right: 8px;
    font-size: 16px;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    flex: 1;
    font-size: 13px;
}

.view-btn:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Product Categories */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-tab {
    background-color: white;
    border: 1px solid var(--gray-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab img {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
}

.category-tab:hover,
.category-tab.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

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

.products-grid.active {
    display: grid;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

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

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

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.product-company {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.brand-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.brand-img {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    font-size: 14px;
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    display: none;
}

.video-grid.active {
    display: grid;
}

.video-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(211, 84, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.video-item:hover .video-play {
    background-color: var(--primary);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.video-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Professionals Page */
.professionals-page {
    padding: 120px 0 80px;
    background-color: var(--light);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
}

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

.professional-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--gray-light);
}

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

.professional-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.professional-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--gray-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 24px;
    overflow: hidden;
}

.professional-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.professional-rating {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 5px;
}

.professional-specialty {
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.professional-details {
    margin-bottom: 25px;
    flex-grow: 1;
}

.professional-detail {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.professional-detail i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    font-size: 14px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: auto;
    font-size: 14px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 16px;
}

/* Video Gallery Page */
.video-gallery-page {
    padding: 120px 0 80px;
    background-color: var(--light);
    min-height: 100vh;
}

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

.video-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

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

.video-card .video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-card .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-card .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background-color: rgba(211, 84, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.video-card:hover .video-play {
    background-color: var(--primary);
}

.video-card .video-info {
    padding: 25px;
}

.video-card .video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.video-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.video-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* About Content */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary);
}

.contact-details {
    margin-top: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

/* PDF Catalogue */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.pdf-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    padding: 25px;
    text-align: center;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.pdf-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.pdf-card p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pdf-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 13px;
    gap: 8px;
}

.pdf-download-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Quick Enquiry WhatsApp */
.quick-enquiry {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.dev-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.dev-link:hover,
.dev-link:focus {
    text-decoration: none;
    color: inherit;
}

/* Page Content */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.orange-text {
    color: var(--primary);
}

.text-white {
    color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-container {
        padding: 0 15px;
        height: 70px;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        padding: 20px;
        border-top: 1px solid var(--gray-light);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        font-size: 15px;
    }
    
    nav ul li a.active:after {
        display: none;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .hero {
        padding: 80px 0;
        margin-top: -70px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .kitchen-grid,
    .products-grid,
    .brands-grid,
    .video-grid,
    .video-gallery-grid,
    .pdf-grid,
    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .professionals-page,
    .video-gallery-page {
        padding: 100px 0 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    
    .btn-outline {
        margin-left: 10px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .kitchen-info h3,
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .professional-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .professional-avatar {
        margin-right: 0;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-tab {
        justify-content: center;
    }
}