/* Global Styles */
:root {
    --primary-bg: #12223B;
    --accent-color: #FFB703;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --section-dark: #0F1B2E;
    --transition: all 0.3s ease;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.construction-loader {
    position: relative;
    width: 200px;
    height: 150px;
    margin: 0 auto 30px;
}

.crane-loader {
    position: relative;
    width: 100%;
    height: 100%;
}

.crane-arm {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    transform-origin: left center;
    animation: craneSwing 3s ease-in-out infinite;
}

.crane-hook {
    position: absolute;
    top: 24px;
    right: 0;
    width: 2px;
    height: 30px;
    background: var(--accent-color);
    animation: hookMove 3s ease-in-out infinite;
}

.crane-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 6px;
    height: 80px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.building-blocks-loader {
    position: absolute;
    bottom: 0;
    left: 20px;
    display: flex;
    gap: 5px;
}

.block-loader {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    opacity: 0.7;
}

.block-loader.block-1 {
    animation: blockBuild 3s ease-in-out infinite;
}

.block-loader.block-2 {
    animation: blockBuild 3s ease-in-out infinite 0.5s;
}

.block-loader.block-3 {
    animation: blockBuild 3s ease-in-out infinite 1s;
}

.loading-text {
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    animation: textPulse 2s ease-in-out infinite;
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #ff9500);
    border-radius: 2px;
    animation: progressLoad 3s ease-in-out infinite;
}

@keyframes craneSwing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes hookMove {
    0%, 100% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
}

@keyframes blockBuild {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-10px); opacity: 1; }
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Hide preloader when page is loaded */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.accent-text {
    color: var(--accent-color);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--section-dark) 100%);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,183,3,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--section-dark);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff9500);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 183, 3, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Preview Cards */
.service-preview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.service-preview-card .service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-preview-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-preview-card p {
    color: var(--text-secondary);
}

/* Project Preview Cards */
.project-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.project-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-preview-card .project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-preview-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-preview-card:hover .project-image img {
    transform: scale(1.1);
}

.project-preview-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 34, 59, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    flex-direction: column;
    text-align: center;
}

.project-preview-card:hover .project-overlay {
    opacity: 1;
}

.project-preview-card .project-overlay h5 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-preview-card .project-overlay p {
    color: var(--accent-color);
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: rgba(18, 34, 59, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    background: var(--primary-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.brand-text {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.construction-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.crane {
    position: absolute;
    width: 200px;
    height: 300px;
    opacity: 0.1;
}

.crane-1 {
    top: 10%;
    right: 10%;
    background: linear-gradient(45deg, var(--accent-color), #ff9500);
    clip-path: polygon(45% 0%, 55% 0%, 55% 70%, 75% 70%, 75% 80%, 25% 80%, 25% 70%, 45% 70%);
}

.crane-2 {
    bottom: 20%;
    right: 25%;
    background: linear-gradient(45deg, var(--accent-color), #ff9500);
    clip-path: polygon(45% 0%, 55% 0%, 55% 70%, 75% 70%, 75% 80%, 25% 80%, 25% 70%, 45% 70%);
}

.building-blocks {
    position: absolute;
    bottom: 15%;
    left: 5%;
}

.block {
    width: 80px;
    height: 60px;
    background: var(--accent-color);
    opacity: 0.15;
    margin: 5px;
    display: inline-block;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

.hero-buttons {
    margin-bottom: 60px;
}

.btn-cta {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), #ff9500);
    border: none;
    color: var(--primary-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.4);
    color: var(--primary-bg);
}

.btn-outline-light {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-primary);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* About Section */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.value-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #ff9500);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--primary-bg);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-bg);
}

.mission-card h3, .vision-card h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card p, .vision-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.stat-card .stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Services Section */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 183, 3, 0.2);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-cta {
    margin-top: 25px;
    text-align: center;
}

/* Process Steps */
.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin: 20px 0;
}

.process-step h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Specialization Cards */
.specialization-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.specialization-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.spec-content h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.spec-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Projects Section */
.project-filters {
    text-align: center;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 25px;
    margin: 0 10px 10px 0;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 34, 59, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    text-align: center;
    padding: 20px;
}

.project-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Team Section */
.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 183, 3, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 34, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    transform: scale(1.1);
    background: var(--text-primary);
}

.team-info {
    padding: 30px 20px;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.team-credentials {
    margin-top: 15px;
}

.credential {
    display: inline-block;
    background: rgba(255, 183, 3, 0.2);
    color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin: 3px;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

/* Value Cards */
.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.value-card .value-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.value-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Career Benefits */
.career-benefits {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 183, 3, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Testimonials Section */
.testimonial-item {
    padding: 60px 40px;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-info h5 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info span {
    color: var(--accent-color);
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -100px;
}

.carousel-control-next {
    right: -100px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.client-info h5 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    margin-top: 5px;
}

.rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Video Testimonials */
.video-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.9;
    transition: var(--transition);
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.video-placeholder:hover i {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 183, 3, 0.1);
    margin-bottom: 60px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 183, 3, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.contact-info {
    text-align: center;
    padding: 30px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-bg);
}

.contact-info h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-hours, .contact-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--text-primary);
}

/* Service Area Cards */
.service-area-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 183, 3, 0.1);
    height: 100%;
}

.service-area-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 183, 3, 0.1);
    border-color: var(--accent-color);
}

.area-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-area-card h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.service-area-card ul {
    list-style: none;
    padding: 0;
}

.service-area-card li {
    color: var(--text-secondary);
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-area-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Accordion Styles */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 183, 3, 0.1);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 183, 3, 0.1);
    color: var(--text-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFB703'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    padding: 20px 25px;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

/* Footer */
.footer {
    background: var(--section-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 183, 3, 0.2);
}

.footer-brand h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 183, 3, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 183, 3, 0.2);
}

.footer .social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 183, 3, 0.2);
    margin: 40px 0 20px;
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), #ff9500);
    color: var(--primary-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

/* Modal */
.modal-content {
    background: var(--primary-bg);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
}

.modal-title {
    color: var(--text-primary);
}

.btn-close {
    filter: invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
        justify-content: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9500;
}