* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a472a;
    --secondary-color: #d4a574;
    --accent-color: #2d5a3d;
    --light-bg: #f5f3f0;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 75px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* ===== HERO SECTION WITH SLIDER ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: slideIn 0.8s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-button.whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.cta-button.whatsapp:hover {
    background-color: #20a853;
}

.cta-button.consultation {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-button.consultation:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-nav:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.checkmark {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* ===== HIGHLIGHTS SECTION ===== */
.hero-highlights-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-highlights-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(212, 165, 116, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.hero-highlights-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(45, 90, 61, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.8rem;
    background: var(--white);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--secondary-color);
}

.highlight-item:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.2);
    border-left-color: var(--primary-color);
}

.checkmark {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.highlight-item:hover .checkmark {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89a68 100%);
    color: var(--white);
    transform: scale(1.2);
}

.highlight-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}



/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.highlight h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.highlight p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 20px;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 10px;
}

.service-card-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89a68 100%);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
}

.service-card-button:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.team::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: rgba(45, 90, 61, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.team h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

.team-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.team-intro-content {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.team-intro-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
}

.intro-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 10px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.intro-icon.secondary {
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.1) 0%, rgba(45, 90, 61, 0.05) 100%);
    color: var(--primary-color);
}

.team-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.team-intro-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
    border-color: var(--secondary-color);
}

.approach-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.approach-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89a68 100%);
    border-radius: 10px;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
}

.approach-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
}

.approach-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.approach-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.2);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.projects-category {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.projects-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.2);
}

.category-header {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-bottom: 3px solid var(--secondary-color);
    text-align: center;
}

.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89a68 100%);
    border-radius: 15px;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.projects-category:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.category-icon.secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.projects-category h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
}

.category-desc {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

.projects-showcase {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.15);
}

.project-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 12px;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.project-item:hover .project-image {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c89a68 100%);
    color: var(--white);
    transform: scale(1.1);
}

.project-content {
    flex: 1;
}

.project-content h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.project-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.projects-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.projects-cta h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.projects-cta p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact .section-intro {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--white);
}

.contact-messaging h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-messaging > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.messaging-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 2px solid var(--secondary-color);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.messaging-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.whatsapp {
    background-color: #25d366;
    color: var(--white);
    border-color: #25d366;
}

.whatsapp:hover {
    background-color: transparent;
    color: #25d366;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.consent-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.consent-group label {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    display: inline !important;
}

/* ===== FOOTER ===== */
.footer {
    background-color: rgba(26, 71, 42, 0.95);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-highlights,
    .team-grid,
    .services-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .team h2 {
        font-size: 2rem;
    }

    .team-tagline {
        font-size: 1rem;
    }

    .team-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .team-intro-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .approach-card {
        padding: 2rem;
    }

    .approach-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .hero {
        padding: 50px 20px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .slide-label {
        font-size: 0.85rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-controls {
        bottom: 30px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects h2 {
        font-size: 2rem;
    }

    .projects-subtitle {
        font-size: 1rem;
    }

    .category-header {
        padding: 2rem 1.5rem;
    }

    .projects-showcase {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        padding: 1.5rem;
    }

    .project-item {
        padding: 1rem;
    }

    .project-image {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .hero-highlights-section {
        padding: 40px 20px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .checkmark {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }

    .messaging-btn,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .services h2,
    .about h2,
    .team h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .team-tagline {
        font-size: 0.9rem;
    }

    .team-intro {
        gap: 1rem;
    }

    .team-intro-content {
        padding: 1.5rem;
    }

    .intro-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .team-intro-content p {
        font-size: 0.9rem;
    }

    .approach-card {
        padding: 1.5rem 1rem;
    }

    .approach-card h3 {
        font-size: 1.2rem;
    }

    .approach-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .approach-number {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .slide-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .projects h2 {
        font-size: 1.6rem;
    }

    .projects-subtitle {
        font-size: 0.9rem;
    }

    .projects-grid {
        gap: 1.5rem;
    }

    .category-header {
        padding: 1.5rem 1rem;
    }

    .projects-category h3 {
        font-size: 1.3rem;
    }

    .projects-showcase {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }

    .project-item {
        padding: 0.8rem;
    }

    .project-image {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .project-content h4 {
        font-size: 0.9rem;
    }

    .project-content p {
        font-size: 0.8rem;
    }

    .projects-cta {
        padding: 2rem 1rem;
    }

    .projects-cta h3 {
        font-size: 1.3rem;
    }

    .projects-cta p {
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-highlights-section {
        padding: 30px 15px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        padding: 1.2rem;
        font-size: 0.85rem;
        gap: 12px;
    }

    .checkmark {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }

    .highlight-item span:last-child {
        line-height: 1.5;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 60px 20px 80px;
    background-color: var(--light-bg);
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 20px 60px;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-content {
        padding: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 30px 15px 40px;
    }

    .legal-page h1 {
        font-size: 1.4rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .legal-content ul {
        margin-left: 1rem;
    }
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-details {
    padding: 60px 20px 80px;
    background-color: var(--white);
}

.service-details h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.service-details h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-details h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-vertical {
    margin-bottom: 3rem;
}

.service-subsection {
    max-width: 1000px;
    margin: 0 auto;
}

.service-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.key-areas {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-category h4 {
    color: var(--text-dark);
    margin-top: 0;
    font-size: 1.05rem;
}

.service-category ul {
    list-style: none;
    padding-left: 0;
}

.service-category li {
    color: var(--text-light);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-category li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-left: 5px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.highlight-box p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

.section-heading {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.interiors-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.interior-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.interior-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
}

.interior-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.interior-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
}

@media (max-width: 768px) {
    .service-details {
        padding: 40px 20px 60px;
    }

    .service-details h2 {
        font-size: 1.8rem;
    }

    .service-details h3 {
        font-size: 1.3rem;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .interiors-services {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 30px 15px 40px;
    }

    .service-details h2 {
        font-size: 1.5rem;
    }

    .service-details h3 {
        font-size: 1.2rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .interiors-services {
        grid-template-columns: repeat(2, 1fr);
    }
}
