/* TGM Group Custom Stylesheet */

:root {
    --primary-dark: #0A2A5A;
    --accent-gold: #F4C542;
    --accent-green: #3BAA4A;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray-border: #e9ecef;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Header & Navigation */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

#header.scrolled {
    background: var(--primary-dark);
}

#header.scrolled .navbar-brand,
#header.scrolled .nav-link {
    color: var(--white) !important;
}

#header.scrolled .navbar-brand:hover,
#header.scrolled .nav-link:hover {
    color: var(--accent-gold) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--accent-green) !important;
}

.nav-link {
    color: var(--primary-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4a8a 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
}

.hero-image img {
    transition: transform 0.3s ease;
}

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

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

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

.btn-primary:hover {
    background: #082045;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 42, 90, 0.3);
}

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

.btn-success:hover {
    background: #329540;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 170, 74, 0.3);
}

.btn-warning {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-warning:hover {
    background: #e0b038;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 197, 66, 0.3);
}

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Cards */
.card {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray-border);
}

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

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

.card-header {
    border-radius: 15px 15px 0 0 !important;
    border: none;
}

/* Icon Boxes */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.card:hover .icon-box {
    background: var(--primary-dark);
}

.card:hover .icon-box i {
    color: var(--white);
}

/* Pricing Tables */
.price-tag {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.currency {
    font-size: 1.5rem;
    color: var(--medium-gray);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.separator {
    margin: 0 0.5rem;
    color: var(--medium-gray);
}

.period {
    font-size: 1rem;
    color: var(--medium-gray);
    display: block;
    margin-top: 0.5rem;
}

/* Timeline */
.journey-timeline {
    position: relative;
    padding: 2rem 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray-border);
    transform: translateX(-50%);
}

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

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

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-dark);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-timeline {
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-left: 4rem;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 3rem;
    bottom: -2rem;
    width: 2px;
    background: var(--light-gray-border);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.step-content h5 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* Approach Steps */
.approach-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-left: 5rem;
    position: relative;
}

.approach-step::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 3rem;
    bottom: -3rem;
    width: 2px;
    background: var(--light-gray-border);
}

.approach-step:last-child::before {
    display: none;
}

.approach-step .step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */
#footer {
    background: var(--primary-dark);
    color: var(--white);
}

#footer h4,
#footer h5 {
    color: var(--white);
}

#footer a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--accent-gold);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .journey-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 4rem;
    }
    
    .timeline-dot {
        left: 2rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .process-step,
    .approach-step {
        padding-left: 4rem;
    }
    
    .process-step::before,
    .approach-step::before {
        left: 1.5rem;
    }
    
    .step-number,
    .step-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
    
    .approach-step .step-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
    
    .price-tag .amount {
        font-size: 2rem;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .icon-box i {
        font-size: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-dark) !important;
}

.text-success {
    color: var(--accent-green) !important;
}

.text-warning {
    color: var(--accent-gold) !important;
}

.bg-primary {
    background: var(--primary-dark) !important;
}

.bg-success {
    background: var(--accent-green) !important;
}

.bg-warning {
    background: var(--accent-gold) !important;
}

.bg-light {
    background: var(--light-gray) !important;
}

.bg-dark {
    background: var(--primary-dark) !important;
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 1px solid var(--light-gray-border);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(10, 42, 90, 0.25);
}

.form-select {
    border-radius: 10px;
    border: 1px solid var(--light-gray-border);
    padding: 0.75rem 1rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Placeholder */
.team-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Value Icon */
.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.card:hover .value-icon {
    background: var(--primary-dark);
    color: var(--white);
}

/* Accordion */
.accordion-button {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    border: none;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-dark);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-dark);
}

.accordion-item {
    border: 1px solid var(--light-gray-border);
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Alert */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
}

.alert-success {
    background: rgba(59, 170, 74, 0.1);
    color: var(--accent-green);
    border-left: 4px solid var(--accent-green);
}
