/* Base Styles */
:root {
    --primary: #2D8C99;
    --primary-dark: #24707a;
    --secondary: #F5A623;
    --secondary-dark: #e0951f;
    --dark: #333333;
    --light: #F4F4F4;
    --white: #FFFFFF;
    --gray: #E0E0E0;
    --success: #4CAF50;
    --danger: #E53935;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

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

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

.btn-small {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 30px;
    width: auto; /* Maintains aspect ratio */
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    transition: color 0.3s;
}

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

.header-actions {
    display: flex;
    align-items: center;
}

.location-selector {
    margin-right: 20px;
    position: relative;
}

.location-selector i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.location-selector select {
    padding: 8px 15px 8px 30px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    appearance: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--light);
    padding: 150px 0 80px;
    margin-top: 70px;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Value Propositions */
.value-props {
    background-color: var(--white);
    padding: 60px 0;
}

.value-props .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.value-prop {
    text-align: center;
    max-width: 300px;
}

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

.value-prop h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Tutorials Section */
.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tutorial-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.thumbnail {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    color: var(--white);
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.tutorial-card:hover .play-overlay {
    opacity: 1;
}

.tutorial-info {
    padding: 20px;
}

.tutorial-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.meta i {
    margin-right: 5px;
}

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

/* How It Works */
.how-it-works .steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Tool Rental */
.tool-search {
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    margin-bottom: 20px;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-bar button {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

.filters {
    display: flex;
    gap: 15px;
}

.filters select {
    padding: 8px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background-color: var(--white);
}

.map-view-toggle {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    overflow: hidden;
}

.map-view-toggle button {
    flex: 1;
    padding: 8px 15px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
}

.map-view-toggle button.active {
    background-color: var(--primary);
    color: var(--white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tool-image {
    position: relative;
    height: 180px;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--success);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.tool-info {
    padding: 20px;
}

.tool-info h3 {
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location i {
    margin-right: 5px;
}

/* Pro Services */
.service-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.category-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pro-testimonials {
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
}

.pro-testimonials h3 {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rating {
    color: var(--secondary);
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.author {
    font-weight: 500;
}

/* CTA Section */
.cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.cta .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

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

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

.language-selector select {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 4px;
}




/* Rental Page Specific Styles */
.rental-page {
    padding: 100px 0 60px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

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

.breadcrumbs i {
    margin: 0 8px;
    font-size: 0.7rem;
    color: #999;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
}

/* Rental Controls */
.rental-controls {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    margin-bottom: 20px;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-bar button {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    background-color: var(--white);
    min-width: 150px;
}

.filter-toggle {
    margin-left: auto;
}

.expanded-filters {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.expanded-filters.show {
    display: block;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.price-range {
    padding: 10px 0;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: 5px;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.availability-options, .hub-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.availability-options label, .hub-options label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.availability-options input, .hub-options input {
    margin-right: 8px;
}

/* View Toggle */
.view-toggle {
    display: flex;
    margin-bottom: 20px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.view-toggle .btn {
    border-radius: 0;
    border: none;
    background-color: var(--white);
    color: var(--dark);
}

.view-toggle .btn.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Tool Rental Grid */
.tool-rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.tool-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tool-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.availability-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.in-stock {
    background-color: var(--success);
    color: white;
}

.out-of-stock {
    background-color: var(--danger);
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.wishlist-btn:hover {
    color: var(--danger);
}

.wishlist-btn.active {
    color: var(--danger);
}

.tool-info {
    padding: 20px;
}

.tool-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tool-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.category {
    background-color: var(--light);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--primary);
    font-size: 0.8rem;
}

.rating {
    color: var(--secondary);
}

.tool-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.pricing {
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary);
}

.price .original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.deposit {
    font-size: 0.9rem;
    color: #666;
}

.hub-availability {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.hub-availability i {
    color: var(--primary);
}

.tool-actions {
    display: flex;
    gap: 10px;
}

.tool-actions .btn {
    flex: 1;
    padding: 8px 10px;
    font-size: 0.9rem;
}

/* Map View */
.map-view-container {
    display: none;
    height: 500px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container {
    height: 100%;
    background-color: #f0f0f0;
    position: relative;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-sidebar {
    padding: 20px;
    background-color: var(--white);
    overflow-y: auto;
}

.hub-list {
    margin-top: 15px;
}

.hub-item {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hub-item:hover {
    background-color: var(--light);
}

.hub-item.active {
    background-color: rgba(45, 140, 153, 0.1);
    border-left: 3px solid var(--primary);
}

.hub-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hub-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.hub-distance {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.hub-tools {
    font-size: 0.8rem;
    color: #666;
}

/* List View */
.tool-rental-list {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.tool-list-item {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.tool-list-image {
    width: 200px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

.tool-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-list-content {
    flex: 1;
    padding: 20px;
    display: flex;
}

.tool-list-info {
    flex: 1;
}

.tool-list-actions {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-numbers .btn {
    min-width: 40px;
}

/* Rental Modal */
/* DIY Kits Rental Page Styles */
.kits-page {
    padding: 100px 0 60px;
    background-color: #f9f9f9;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

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

.breadcrumbs i {
    margin: 0 8px;
    font-size: 0.7rem;
    color: #999;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background-color: var(--light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 1rem;
}

/* Seasonal Spotlight */
.seasonal-spotlight {
    margin: 50px 0;
    padding: 25px;
    background-color: #e6f4f6;
    border-radius: 8px;
}

.seasonal-spotlight h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seasonal-spotlight h2 small {
    font-size: 0.8rem;
    color: #666;
    margin-left: auto;
}

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

/* Kit Cards */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.kit-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.kit-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.seasonal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.saves-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(255,255,255,0.9);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.kit-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kit-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.kit-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.kit-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.kit-description {
    margin-bottom: 15px;
    color: #555;
    flex: 1;
}

.included-tools {
    margin: 15px 0;
}

.included-tools h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.included-tools ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.85rem;
    color: #666;
}

.included-tools li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.included-tools li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.kit-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.kit-price {
    text-align: right;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
}

.deposit {
    font-size: 0.8rem;
    color: #666;
}

/* How It Works Section */
.how-it-works {
    margin: 60px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
}

/* Safety Notice */
.safety-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff8e6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.safety-icon {
    font-size: 2rem;
    color: var(--secondary);
}

.safety-content h3 {
    color: var(--dark);
    margin-bottom: 5px;
}

.safety-content p {
    color: #666;
    font-size: 0.9rem;
}

.safety-content a {
    color: var(--primary);
    text-decoration: none;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-filter label {
    font-size: 0.9rem;
    color: #666;
}

.sort-filter select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .kits-page {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .kits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .kit-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .kit-price {
        text-align: left;
    }
    
    .kit-card .btn {
        width: 100%;
    }
    
    .safety-notice {
        flex-direction: column;
        text-align: center;
    }
}







/* LearnCSS */

/* Learn Page Styles */
.learn-page {
    padding: 100px 0 60px;
    color: #333;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumbs i {
    margin: 0 0.5rem;
    font-size: 0.8rem;
    color: #999;
}

/* Page Header */
.page-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #555;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #f5f7fa;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
}

.badge i {
    color: #0066cc;
}

/* Featured Tutorial */
.featured-tutorial {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.featured-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.featured-info {
    flex: 1;
}

.featured-info h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.featured-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #222;
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #444;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.featured-meta i {
    margin-right: 0.3rem;
    color: #0066cc;
}

.featured-actions {
    display: flex;
    gap: 1rem;
}

.featured-video {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-video img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0,0,0,0.5);
}

/* Tutorial Categories */
.tutorial-categories {
    margin-bottom: 3rem;
}

.tutorial-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0066cc;
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.count {
    display: inline-block;
    background: #f5f7fa;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #444;
}

/* Popular Tutorials */
.popular-tutorials {
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: 1.8rem;
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-filter label {
    font-size: 0.9rem;
    color: #666;
}

.sort-filter select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tutorial-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tutorial-thumbnail {
    position: relative;
}

.tutorial-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.tutorial-info {
    padding: 1.2rem;
}

.tutorial-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: #666;
}

.difficulty {
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.difficulty.beginner {
    background: #e6f7ee;
    color: #00a65a;
}

.difficulty.intermediate {
    background: #fff8e6;
    color: #ff9500;
}

.difficulty.advanced {
    background: #ffe6e6;
    color: #ff3333;
}

.description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.btn-link {
    color: #0066cc;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-link:hover {
    color: #004499;
    text-decoration: underline;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Premium Courses */
.premium-courses {
    margin-bottom: 3rem;
}

.premium-courses .section-header {
    text-align: center;
    flex-direction: column;
}

.premium-courses .section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.course-image {
    position: relative;
}

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

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff9500;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-info {
    padding: 1.5rem;
}

.course-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.instructor-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.course-meta i {
    margin-right: 0.3rem;
    color: #0066cc;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
}

.original {
    text-decoration: line-through;
    font-size: 1rem;
    color: #999;
    margin-left: 0.5rem;
}

/* Learning Paths */
.learning-paths {
    margin-bottom: 3rem;
}

.learning-paths h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.learning-paths .subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.path-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.path-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0066cc;
    font-size: 1.5rem;
}

.path-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.path-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.path-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #555;
}

/* CTA Section */
.learn-cta {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    color: white;
}

.cta-content {
    padding: 2rem;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.cta-image {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .featured-content {
        flex-direction: column;
    }
    
    .featured-info {
        text-align: center;
    }
    
    .featured-meta {
        justify-content: center;
    }
    
    .featured-actions {
        justify-content: center;
    }
    
    .categories-grid,
    .tutorials-grid,
    .paths-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .learn-cta {
        display: flex;
    }
    
    .cta-content {
        flex: 1;
        padding: 3rem;
    }
    
    .cta-image {
        display: block;
        flex: 1;
    }
    
    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}




/* Hire CSS */

/* Hire Page Styles */
.hire-page {
    padding: 100px 0 60px;
    color: #333;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumbs i {
    margin: 0 0.5rem;
    font-size: 0.8rem;
    color: #999;
}

/* Page Header */
.page-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #555;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #f5f7fa;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
}

.badge i {
    color: #0066cc;
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-card {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 10px;
    padding: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(0,102,204,0.2);
}

.search-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-input input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.form-group label i {
    margin-right: 0.5rem;
    color: rgba(255,255,255,0.7);
}

.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    background-color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Service Categories */
.service-categories {
    margin-bottom: 3rem;
}

.service-categories h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-categories .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0066cc;
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.count {
    display: inline-block;
    background: #f5f7fa;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #444;
}

/* Featured Pros */
.featured-pros {
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: 1.8rem;
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-filter label {
    font-size: 0.9rem;
    color: #666;
}

.sort-filter select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.pro-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    position: relative;
}

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

.pro-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff9500;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pro-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.pro-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.pro-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f7ff;
}

.verification-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0066cc;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid white;
}

.pro-info {
    flex: 1;
}

.pro-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.specialty {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffb400;
}

.review-count {
    font-size: 0.8rem;
    color: #666;
}

.pro-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #555;
}

.detail-item i {
    color: #0066cc;
}

.pro-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.pro-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: #f5f7fa;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #444;
}

.pro-actions {
    display: flex;
    gap: 1rem;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* How It Works */
.how-it-works {
    margin-bottom: 3rem;
}

.how-it-works h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.how-it-works .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    margin-bottom: 3rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.testimonials .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rating {
    color: #ffb400;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.5;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: #666;
}

/* CTA Section */
.hire-cta {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .pros-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .search-card {
        padding: 1.5rem 1rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .header-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .pro-actions {
        flex-direction: column;
    }
    
    .pro-actions .btn {
        width: 100%;
    }
}






/* About Page Styles */
.about-page {
    padding: 100px 0 60px;
}

/* Hero Section */
.about-hero {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.label {
    font-size: 0.9rem;
    color: #666;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Our Story */
.our-story {
    margin-bottom: 60px;
}

.our-story h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

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

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

/* Mission & Values */
.mission-values {
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #f9f9f9;
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

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

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* How We're Different */
.different {
    margin-bottom: 60px;
}

.different h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.comparison {
    display: flex;
    gap: 40px;
    position: relative;
}

.traditional, .mrfix-approach {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
}

.traditional {
    background-color: #fff5f5;
    border: 1px solid #ffe0e0;
}

.mrfix-approach {
    background-color: #f0f9ff;
    border: 1px solid #e0f2fe;
}

.comparison h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.comparison ul {
    list-style: none;
}

.comparison li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comparison i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.traditional i {
    color: #e53e3e;
}

.mrfix-approach i {
    color: var(--success);
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Leadership Team */
.leadership {
    margin-bottom: 60px;
}

.leadership h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.leadership .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

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

.team-member {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--light);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s;
}

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

/* Press & Recognition */
.press {
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #f9f9f9;
}

.press h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.press-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.press-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.press-logos img:hover {
    opacity: 1;
}

.press-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.quote {
  position: relative;            /* anchor for the pseudo-element */
  padding-left: 2.75rem;         /* space so the big quote doesn’t overlap text */
}

.quote::before {
  content: "\201C";              /* opening curly quote “ */
  position: absolute;
  top: -0.25rem;
  left: 0.25rem;
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0,0,0,0.08);       /* subtle; adjust as needed */
  pointer-events: none;          /* keep it non-interactive */
}


.quote p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.source {
    font-weight: 500;
    color: var(--primary);
}

/* Careers CTA */
.careers-cta {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.careers-cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.careers-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    margin-bottom: 60px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

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

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item span {
    color: #666;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .comparison {
        flex-direction: column;
    }
    
    .vs-badge {
        position: static;
        transform: none;
        margin: 20px auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .press-logos {
        flex-direction: column;
        align-items: center;
    }
}