/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #3d4f2e;
    --dark-green: #2a3520;
    --light-green: #5a7043;
    --accent-gold: #c9a961;
    --beige: #f5f1e8;
    --light-beige: #faf8f3;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --overlay-dark: rgba(61, 79, 46, 0.85);
    --overlay-light: rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(61, 79, 46, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-light-large {
    background: var(--white);
    color: var(--primary-green);
    padding: 18px 40px;
    font-size: 18px;
}

.btn-light-large:hover {
    background: var(--beige);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

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

.logo img {
    height: 65px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.btn-nav {
    background: var(--accent-gold);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary-green);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/olival-sebe.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(42, 53, 32, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 45px;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 28px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ==========================================
   SECTION COMMON STYLES
   ========================================== */
section {
    padding: 100px 0;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title.text-center {
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    margin-bottom: 30px;
}

.title-underline.center {
    margin: 0 auto 30px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.8;
}

.section-description.text-center {
    margin: 0 auto 60px;
    text-align: center;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--light-beige);
    scroll-margin-top: 80px;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-dark);
}

.about .section-title {
    color: var(--text-dark);
}

.about .section-description {
    color: var(--text-dark);
}

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

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(61, 79, 46, 0.2) 100%);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--light-beige);
    padding: 45px 35px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
    position: relative;
    overflow: visible;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    z-index: 10;
    animation: pulse 2s infinite;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card.featured .service-icon {
    background: var(--accent-gold);
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    margin-top: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.service-features i {
    color: var(--primary-green);
    font-size: 16px;
}

.service-card.featured .service-features i {
    color: var(--accent-gold);
}

.service-card.featured .service-features li {
    color: var(--white);
}

/* ==========================================
   INVESTMENT SECTION
   ========================================== */
.investment {
    position: relative;
    background: var(--primary-green);
    color: var(--white);
    overflow: hidden;
}

.investment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/olival-lago.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.investment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.investment-content {
    position: relative;
    z-index: 2;
}

.investment .section-title {
    color: var(--white);
}

.investment .title-underline {
    background: linear-gradient(90deg, var(--white), var(--accent-gold));
}

.investment-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.investment-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin: 60px 0 50px;
}

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

.benefit-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-icon {
    background: var(--accent-gold);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

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

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    background: var(--beige);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.why-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 38px;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(61, 79, 46, 0.2);
}

.why-card h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.contact-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-button {
    flex: 1;
    max-width: 400px;
    padding: 18px 30px;
    background: var(--beige);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tab-button:hover {
    background: var(--light-beige);
    border-color: var(--primary-green);
}

.tab-button.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.tab-button[data-tab="gestao"].active {
    background: var(--beige);
    color: var(--primary-green);
    border-color: var(--accent-gold);
}

.tab-button i {
    font-size: 20px;
}

.contact-forms {
    background: var(--light-beige);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e0ddd4;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(61, 79, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--beige);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-green);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-item p strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

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

.footer-links a {
    font-size: 15px;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0.85;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 16px;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ==========================================
   MODAL
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.3s ease;
}

.modal-icon {
    font-size: 70px;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ==========================================
   TEAM BUTTON & MODAL
   ========================================== */
.btn-team {
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-team:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-team i {
    font-size: 16px;
}

.modal-team {
    max-width: 900px;
    width: 90%;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--light-beige);
    color: var(--primary-green);
}

.modal-title {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

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

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-beige);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

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

.team-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-experience {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-experience strong {
    color: var(--text-dark);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(201, 169, 97, 0.7);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .investment-benefits,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: var(--transition-smooth);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
        font-size: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        gap: 30px;
    }
    
    .investment-benefits,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        max-width: 100%;
    }
    
    .contact-forms {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .modal-team {
        max-width: 95%;
        padding: 30px 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}