@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a4a;
    --primary-light: #3d7a64;
    --secondary: #c9a962;
    --accent: #e8d5b5;
    --dark: #1a1a1a;
    --text: #4a4a4a;
    --light: #f8f6f3;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--secondary);
    color: var(--dark);
}

.btn-accent:hover {
    background: #b8983f;
    transform: translateY(-2px);
}

header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

header.scrolled .logo {
    color: var(--dark);
}

header.scrolled .nav-link {
    color: var(--text);
}

header.scrolled .nav-link:hover {
    color: var(--primary);
}

header.scrolled .hamburger span {
    background: var(--dark);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.6rem;
    color: var(--secondary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #2d5a4a;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: #2d5a4a;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    color: var(--dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    font-size: 15px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.92), rgba(26, 26, 26, 0.85));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../approved_photos/bg.webp') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header span {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text);
    font-size: 15px;
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 15px 25px;
    border-radius: var(--radius);
    text-align: center;
}

.about-badge h4 {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.about-badge p {
    font-size: 12px;
    margin: 0;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content>p {
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.about-feature p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
}

.process-section {
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    position: relative;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.process-card:last-child::after {
    display: none;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.process-card h4 {
    margin-bottom: 10px;
}

.process-card p {
    font-size: 13px;
    color: var(--text);
    margin: 0;
}

.gallery-section {
    background: var(--dark);
    color: var(--white);
}

.gallery-section .section-header h2 {
    color: var(--white);
}

.gallery-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 13px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: var(--secondary);
    font-size: 12px;
}

.page-hero {
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.92), rgba(26, 26, 26, 0.85));
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb span {
    opacity: 0.7;
}

.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 20px;
}

.content-text ul {
    list-style: none;
    margin: 20px 0;
}

.content-text ul li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.content-text ul li i {
    color: var(--primary);
    margin-top: 3px;
}

.content-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card span {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
}

.team-card p {
    font-size: 13px;
    margin-top: 15px;
}

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info>p {
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-text h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 14px;
    margin: 0;
    color: var(--text);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 12px;
    cursor: pointer;
}

.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    height: 100vh;
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-content i,
.thankyou-content i {
    font-size: 1rem;
    color: var(--secondary);
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 15px;
}

.error-content p,
.thankyou-content p {
    margin-bottom: 25px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 35px 0 15px;
    font-size: 1.4rem;
}

.policy-content h3 {
    margin: 25px 0 12px;
    font-size: 1.1rem;
}

.policy-content p {
    font-size: 14px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.footer-column h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-legal a:hover {
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-popup h4 i {
    color: var(--secondary);
}

.cookie-popup p {
    font-size: 13px;
    margin-bottom: 20px;
}

.cookie-popup p a {
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    margin: 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    margin: 0;
}

.faq-section {
    background: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 18px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 14px;
    margin: 0;
}

.staging-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staging-type {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.staging-type-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 25px;
    color: var(--white);
    text-align: center;
}

.staging-type-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.staging-type-header h3 {
    color: var(--white);
    margin: 0;
}

.staging-type-content {
    padding: 25px;
}

.staging-type-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.staging-type-content ul {
    list-style: none;
}

.staging-type-content li {
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.staging-type-content li i {
    color: var(--secondary);
    font-size: 12px;
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 25px;
    }

    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .gallery-grid,
    .staging-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card::after {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .gallery-grid,
    .process-grid,
    .values-grid,
    .benefits-list,
    .staging-types {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .contact-item {
        text-align: left;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-hero h1 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cookie-btns {
        flex-direction: column;
    }

    .cookie-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 390px) {
    body {
        font-size: 14px;
    }

    .logo {
        font-size: 1.2rem;
    }

    section {
        padding: 40px 0;
    }

    .service-card,
    .product-card,
    .testimonial-card {
        padding: 20px;
    }
}