/* 
   NN IT SOLUTION - Main Stylesheet
   Orange and white color theme based on provided design
*/

/* Base Styles & Variables */
:root {
    --primary-color: #FF7A00; /* Orange for buttons and accents */
    --primary-hover: #E05A00;
    --secondary-color: #1E3A4F; /* Dark blue/teal for footer and secondary elements */
    --text-color: #333333;
    --light-text: #666666;
    --background: #FFFFFF; /* White background */
    --light-bg: #F8F9FA;
    --border-color: #E0E0E0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --section-spacing: 100px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

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

section {
    padding: var(--section-spacing) 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--light-bg);
    color: var(--text-color);
}

.btn-text {
    padding: 0;
    background: transparent;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background);
    box-shadow: var(--shadow);
    padding: 15px 0;
    z-index: 1000;
    height: 250px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 220px;
    width: auto;
    vertical-align: middle;
    margin: 5px 0;
}

.nav-links ul {
    display: flex;
    gap: 30px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1;
    margin-top: 10px;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.dropdown-content a:hover {
    background-color: #fff5eb;
    color: var(--primary-hover);
    transform: translateX(5px);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover a i {
    transform: rotate(180deg);
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content .rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content .rating i {
    margin-right: 3px;
    font-size: 0.9rem;
}

.hero-content .rating span {
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 3.2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.time-estimate {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.time-estimate i {
    margin-right: 8px;
    color: white;
}

.hero-image {
    text-align: right;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stats-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stats-badge .number {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stats-badge .label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text);
}

.partners {
    padding: 40px 0;
    background-color: var(--light-bg);
}

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

.partners p {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-text);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    font-weight: 600;
    color: var(--light-text);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* About Us Section */
.about-us {
    background-color: var(--light-bg);
    position: relative;
    padding: var(--section-spacing) 0;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.section-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 30px;
    color: var(--light-text);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background-color: var(--background);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 0;
}

.stat-divider {
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

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

.benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.benefit-card .icon {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #FFA07A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services {
    background-color: var(--background);
    position: relative;
    padding: var(--section-spacing) 0;
}

.services-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.comparison-column {
    background-color: var(--light-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.comparison-column.featured {
    background-color: var(--background);
    border: 2px solid rgba(255, 122, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.comparison-column h3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-column.featured h3 {
    color: var(--primary-color);
}

.comparison-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
}

.comparison-item:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.comparison-column.featured .comparison-item:hover {
    background-color: rgba(255, 122, 0, 0.05);
}

.check-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.comparison-item:hover .check-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.comparison-column:not(.featured) .check-icon {
    background-color: #FFFFFF;
    color: #888888;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-column.featured .check-icon {
    background-color: var(--primary-color);
    color: white;
}

.comparison-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.comparison-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--light-text);
}

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

.service-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-card .icon {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #FFA07A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Section */
.pricing {
    background-color: #FFFFFF;
    position: relative;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #FFA07A;
    z-index: 1;
}

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

.pricing-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFA07A;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 122, 0, 0.03);
}

.pricing-header h3 {
    margin-bottom: 10px;
}

.pricing-header p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.pricing-price {
    padding: 30px;
    text-align: center;
    background-color: #FFFFFF;
}

.pricing-price h2 {
    font-size: 3rem;
    margin-bottom: 0;
    display: inline-block;
}

.pricing-price span {
    color: #666666;
    font-size: 1rem;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.pricing-features ul li:before {
    content: "✓";
    color: #FFA07A;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* Process Section */
.process {
    background-color: var(--background);
    padding: var(--section-spacing) 0;
    text-align: center;
}

.process h2 {
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.process-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    margin-bottom: 30px;
}

.process-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.process-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-card:hover .process-img {
    transform: scale(1.05);
}

.comparison-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.comparison-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
}

.nav-logo {
    height: 50px;
    width: auto;
    vertical-align: middle;
    margin: 5px 0;
    object-fit: contain;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.process-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.learn-more:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.process-card:hover .learn-more:after {
    width: 100%;
}

.get-in-touch {
    margin-bottom: 60px;
}

.btn-get-in-touch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-get-in-touch i {
    font-size: 0.8rem;
}

.btn-get-in-touch:hover {
    background-color: var(--primary-color);
}

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

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-content {
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
}

.timeline-left, .timeline-right {
    flex: 1;
    max-width: 40%;
}

.timeline-left {
    text-align: right;
    padding-right: 40px;
}

.timeline-right {
    text-align: left;
    padding-left: 80px;
}

.timeline-content.reverse .timeline-left {
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-content.reverse .timeline-right {
    text-align: right;
    padding-right: 40px;
    padding-left: 0;
}

.timeline-dot {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 2;
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    z-index: -1;
}

.timeline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 220px;
    object-fit: cover;
}

.timeline-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

.timeline-step p {
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.6;
}

.discover-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF7A00;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.discover-more i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.discover-more:hover i {
    transform: translateX(5px);
}

.step-content h3 {
    margin-bottom: 15px;
}

/* Goals Section */
.goals {
    background-color: var(--light-bg);
    padding: var(--section-spacing) 0;
    text-align: center;
}

.goals h2 {
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.goals-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.goals-cards {
    flex: 1;
}

.goals-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.goal-card {
    flex: 1;
    background-color: var(--background);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
}

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

.goal-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.goal-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.goal-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.goals-image {
    flex: 1;
}

.goals-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Results Section */
.results {
    background-color: var(--background);
    padding: var(--section-spacing) 0;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.results-text h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.result-stats {
    display: grid;
    gap: 30px;
}

.result-stat h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.result-stat p {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 0;
}

.process-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.process-step {
    background-color: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.step-content {
    padding: 25px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

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

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Team Section */
.team {
    background-color: var(--background);
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
    position: relative;
    padding: var(--section-spacing) 0;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: var(--background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Contact Section */
.contact {
    background-color: #f8f7f5 !important;
    position: relative;
    padding: var(--section-spacing) 0;
    color: var(--text-color);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,122,0,0.05) 0%, rgba(255,255,255,0) 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid white;
}

.contact-image img:hover {
    transform: scale(1.02);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.equal-height {
    display: flex;
    height: 100%;
}

.equal-height .contact-image {
    flex: 1;
    min-height: 100%;
}

/* CAPTCHA Styles */
.captcha-container {
    margin-top: 8px;
}

.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 3px;
}

.captcha-image {
    position: relative;
    display: inline-block;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.captcha-image img {
    display: block;
    max-width: 100%;
}

.refresh-captcha {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.refresh-captcha:hover {
    background-color: var(--secondary-color);
    transform: rotate(180deg);
}

.captcha-input {
    margin-top: 2px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: var(--light-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 122, 0, 0.1);
    height: 100%;
}

.contact-form form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* CAPTCHA Styles */
.captcha-container {
    margin-top: 10px;
}

.captcha-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-top: 5px;
}

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

.captcha-image img {
    background-color: white;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px dashed #ccc;
}

.refresh-captcha {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.refresh-captcha:hover {
    background-color: var(--primary-hover);
    transform: rotate(180deg);
}

.captcha-input input {
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item .icon {
    font-size: 1.2rem;
    color: white;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

/* Careers Section */
.careers {
    background-color: var(--light-bg);
    padding: var(--section-spacing) 0;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.careers-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.careers-form .btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.careers-form .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.careers-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.careers-benefits {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.careers-benefits h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.newsletter input:focus {
    outline: none;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        text-align: center;
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        margin-top: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 70px 0;
    }
    
    .container {
        max-width: 100%;
    }

    .navbar {
        height: 70px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        transition: 0.3s ease-in-out;
        box-shadow: var(--shadow);
        z-index: 999;
        padding: 20px 0;
        overflow-y: auto;
    }

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

    .nav-links ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: rgba(255, 122, 0, 0.05);
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 12px 20px;
        font-size: 1rem;
        color: var(--primary-color);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown:hover .dropdown-content {
        display: none; /* Override desktop hover behavior */
    }
    
    .dropdown.active:hover .dropdown-content {
        display: block;
    }
    
    .dropdown a i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active a i {
        transform: rotate(180deg);
    }

    .mobile-menu {
        display: block;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 20px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}
