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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #059669;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #059669;
    transition: 0.3s;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
}

.btn-secondary:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f0fdf4;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #064e3b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #047857;
}

/* About Section */
.about {
    padding: 5rem 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 2rem;
}

.about-points {
    margin: 2rem 0;
}

.point {
    margin-bottom: 1.5rem;
}

.point h4 {
    color: #059669;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.point p {
    color: #64748b;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f0fdf4;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 1rem;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    space-y: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-item h4 {
    color: #059669;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #64748b;
}

.contact-cta {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-cta h3 {
    color: #064e3b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Company Overview */
.company-overview {
    padding: 5rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 2rem;
}

.overview-text .lead {
    font-size: 1.3rem;
    color: #059669;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.overview-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background: #f0fdf4;
}

.mission-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    color: #059669;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Company History */
.company-history {
    padding: 5rem 0;
}

.company-history h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #059669;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 45%;
}

.timeline-content h4 {
    color: #059669;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
}

/* Leadership */
.leadership {
    padding: 5rem 0;
    background: #f0fdf4;
}

.leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h4 {
    color: #059669;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #64748b;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
}

.service-card.featured {
    border-top: 4px solid #059669;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-price {
    text-align: center;
    margin-top: 2rem;
}

.price {
    font-size: 2rem;
    color: #059669;
    font-weight: 700;
}

.price-note {
    color: #64748b;
    font-size: 0.9rem;
}

/* Detailed Services */
.detailed-services {
    padding: 5rem 0;
    background: #f0fdf4;
}

.detailed-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.service-detail {
    margin-bottom: 4rem;
}

.detail-content h3 {
    color: #064e3b;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.detail-item h4 {
    color: #059669;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.detail-item p {
    color: #64748b;
    margin-bottom: 1rem;
}

.detail-item ul {
    list-style: none;
}

.detail-item ul li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-item ul li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price-tag {
    background: #059669;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Investment Products */
.investment-products {
    padding: 5rem 0;
}

.investment-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-card h4 {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.product-stats {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

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

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.stat-value {
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #047857;
}

/* Service Process */
.service-process {
    padding: 5rem 0;
    background: #f0fdf4;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h4 {
    color: #064e3b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
}

/* Market Overview */
.market-overview {
    padding: 5rem 0;
}

.market-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.market-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.market-card h4 {
    color: #064e3b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.market-data {
    margin: 1rem 0;
}

.index-name {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.index-value {
    color: #064e3b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.index-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.index-change.positive {
    color: #059669;
}

.index-change.negative {
    color: #dc2626;
}

.market-card p {
    color: #64748b;
    margin-top: 1rem;
}

/* Investment Reports */
.investment-reports {
    padding: 5rem 0;
    background: #f0fdf4;
}

.investment-reports h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.report-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.report-date {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.report-card h4 {
    color: #064e3b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.report-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.report-tags {
    margin-bottom: 1.5rem;
}

.tag {
    background: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.report-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.report-link:hover {
    color: #047857;
}

/* Market Insights */
.market-insights {
    padding: 5rem 0;
}

.market-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insight-card h4 {
    color: #064e3b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.insight-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.insight-card ul li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.stock-list {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.stock-name {
    color: #064e3b;
    font-weight: 600;
}

.stock-rating {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stock-rating.buy {
    background: #dcfce7;
    color: #059669;
}

.stock-rating.hold {
    background: #fef3c7;
    color: #d97706;
}

.insight-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.insight-link:hover {
    color: #047857;
}

/* Economic Calendar */
.economic-calendar {
    padding: 5rem 0;
    background: #f0fdf4;
}

.economic-calendar h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.calendar-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calendar-table table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-table th {
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
}

.calendar-table td {
    color: #64748b;
}

.importance {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.importance.high {
    background: #fecaca;
    color: #dc2626;
}

.importance.medium {
    background: #fef3c7;
    color: #d97706;
}

.importance.low {
    background: #dcfce7;
    color: #059669;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 4rem 0;
    background: #059669;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 250px;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.signup-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Contact Methods */
.contact-methods {
    padding: 5rem 0;
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.contact-method {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    color: #064e3b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-info {
    margin-bottom: 2rem;
}

.main-number {
    color: #059669;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sub-info {
    color: #64748b;
    font-size: 0.9rem;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.method-btn {
    background: #059669;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.method-btn:hover {
    background: #047857;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f0fdf4;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    background: white;
    color: #64748b;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.faq-category.active,
.faq-category:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #064e3b;
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    float: right;
    color: #059669;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #64748b;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 1rem;
}

.contact-form-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    color: #64748b;
    font-weight: normal;
    margin: 0;
}

.form-submit {
    width: 100%;
    text-align: center;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: #f0fdf4;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 3rem;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-details {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-details h3 {
    color: #064e3b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.location-details address {
    font-style: normal;
    margin-bottom: 2rem;
}

.location-details address p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.transportation,
.parking {
    margin-bottom: 2rem;
}

.transportation h4,
.parking h4 {
    color: #059669;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.transportation ul {
    list-style: none;
    padding: 0;
}

.transportation ul li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.parking p {
    color: #64748b;
    line-height: 1.6;
}

.map-placeholder {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-box {
    height: 400px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
}

.map-content h4 {
    color: #064e3b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.map-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #047857;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #059669;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background: white;
    color: #059669;
}

.cta-section .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: #064e3b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #10b981;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-year {
        position: static;
        transform: none;
        align-self: flex-start;
        margin-left: 20px;
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Utilities */
html {
    scroll-behavior: smooth;
}

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

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #059669;
    outline-offset: 2px;
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Travel Images Styling */
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.destination-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.consultation-preview {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.preview-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.preview-text h2 {
    font-size: 2rem;
    color: #374151;
    margin-bottom: 1rem;
}

.preview-text p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.consultation-features li {
    color: #374151;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.consultation-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: #16a34a;
    border-radius: 50%;
}

/* Featured Destinations */
.featured-destinations {
    padding: 4rem 0;
    background-color: white;
}

.featured-destinations h2 {
    font-size: 2.5rem;
    color: #374151;
    text-align: center;
    margin-bottom: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.dest-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dest-card-content {
    padding: 2rem;
}

.dest-card-content h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1rem;
}

.dest-card-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dest-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dest-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.dest-price {
    color: #16a34a;
    font-weight: 600;
    font-size: 1.1rem;
}

.dest-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dest-link:hover {
    color: #059669;
}

@media (max-width: 768px) {
    .preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .destination-image {
        height: 120px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .dest-card-image {
        height: 200px;
    }
} 