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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #1C3D5A;
    --accent-color: #FF8C42;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #27AE60;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 20%, #F0F8FF 40%, #E6F3FF 60%, #DDEFFF 80%, #D4EBFF 100%);
    background-attachment: fixed;
}

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

/* Top Bar */
.top-bar {
    background: #0f1419;
    color: white;
    padding: 12px 0;
    font-size: 13px;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 2000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Two-column layout for Trades dropdown */
.trades-dropdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    min-width: 500px;
    gap: 0;
}

.trades-dropdown li {
    width: 100%;
}

.trades-dropdown li:nth-child(1) { grid-row: 1; grid-column: 1; }
.trades-dropdown li:nth-child(2) { grid-row: 2; grid-column: 1; }
.trades-dropdown li:nth-child(3) { grid-row: 3; grid-column: 1; }
.trades-dropdown li:nth-child(4) { grid-row: 4; grid-column: 1; }
.trades-dropdown li:nth-child(5) { grid-row: 5; grid-column: 1; }
.trades-dropdown li:nth-child(6) { grid-row: 1; grid-column: 2; }
.trades-dropdown li:nth-child(7) { grid-row: 2; grid-column: 2; }
.trades-dropdown li:nth-child(8) { grid-row: 3; grid-column: 2; }
.trades-dropdown li:nth-child(9) { grid-row: 4; grid-column: 2; }
.trades-dropdown li:nth-child(10) { grid-row: 5; grid-column: 2; }

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF5A25 0%, #FF6B35 50%, #FF8C42 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: #152D42;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
    padding: 15px 40px;
    font-size: 18px;
}

.btn-large:hover {
    background: linear-gradient(135deg, #FF5A25 0%, #FF6B35 50%, #FF8C42 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 20%, #F0F8FF 40%, #E6F3FF 60%, #DDEFFF 80%, #D4EBFF 100%);
    color: #2C3E50;
    min-height: 100vh;
    overflow: visible;
    z-index: 1;
    margin-bottom: 0;
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: 0;
    pointer-events: none;
}

.hero-top-section {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    width: 100%;
    padding: 0 20px;
}

.hero-left-content {
    text-align: left;
    padding: 40px 30px;
    padding-right: 20px;
    background: rgba(240, 248, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-right-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: rgba(240, 248, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -1px;
    color: #2C3E50;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.1s backwards;
    color: #2C3E50;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    color: #2C3E50;
}

.hero-feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.3s backwards;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #FF5A25 0%, #FF6B35 50%, #FF8C42 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
}

.btn-hero-primary strong {
    font-weight: 800;
}

/* Hero Trust Badges */
.hero-trust-badges {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.hero-trust-badges .features-bar-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-trust-badges .feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Hero Clients Section */
.hero-clients-section {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-clients-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-clients-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
}

.hero-clients-section .section-header h2 span {
    color: var(--primary-color);
}

.hero-clients-section .clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.hero-clients-section .client-logo {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.hero-clients-section .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hero-clients-section .logo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.hero-clients-section .logo-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.hero-clients-section .logo-icon .logo-shape,
.hero-clients-section .logo-icon .logo-gear,
.hero-clients-section .logo-icon .logo-floral {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.hero-clients-section .logo-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    width: 100%;
}

.hero-clients-section .logo-text strong {
    display: block;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
}

.hero-clients-section .logo-text small {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

.software-showcase {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.software-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 500px;
}

.software-header {
    background: #f5f5f5;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.software-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.software-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.control-dot:nth-child(1) { background: #ff5f57; }
.control-dot:nth-child(2) { background: #ffbd2e; }
.control-dot:nth-child(3) { background: #28ca42; }

.software-content {
    position: relative;
    height: 400px;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.software-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, #000 1px, transparent 1px),
        linear-gradient(#000 1px, transparent 1px),
        linear-gradient(45deg, #e8f4f8 25%, transparent 25%), 
        linear-gradient(-45deg, #e8f4f8 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #e8f4f8 75%), 
        linear-gradient(-45deg, transparent 75%, #e8f4f8 75%);
    background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 0 0, 0 10px, 10px -10px, -10px 0px;
}

.measurement-area {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 150px;
    background: rgba(0, 115, 230, 0.2);
    border: 2px solid rgba(0, 115, 230, 0.5);
    border-radius: 8px;
}

.software-toolbar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toolbar-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

.toolbar-section i {
    color: #666;
    font-size: 16px;
}

.toolbar-section span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.software-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-panel h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.template-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.template-item {
    height: 30px;
    background: #f0f0f0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero-top-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-clients-section .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero-trust-badges .features-bar-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-top-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .hero-left-content,
    .hero-right-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-clients-section .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-clients-section .section-header h2 {
        font-size: 24px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-trust-badges .badge-icon {
        width: 100px;
        height: 100px;
    }
    
    .hero-trust-badges .badge-icon i {
        font-size: 30px;
    }
    
    .software-window {
        max-width: 100%;
    }
    
    .software-content {
        height: 300px;
    }
}

/* Features Bar Section */
.features-bar-section {
    background: white;
    padding: 40px 0;
    position: relative;
    z-index: 100;
    margin-top: 0;
}

.features-bar-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.badge-icon i {
    font-size: 32px;
}

.badge-icon.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.badge-icon.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3);
}

.badge-icon.purple {
    background: linear-gradient(135deg, #8A2BE2, #6A1B9A);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

.badge-ribbon {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC143C;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.feature-badge p {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

/* Client Logos Section */
.clients-section {
    background: white;
    padding: 60px 0;
    position: relative;
    z-index: 100;
}

.clients-section .section-header {
    margin-bottom: 40px;
}

.clients-section .section-header h2 {
    font-size: 32px;
    color: var(--text-color);
    text-align: center;
}

.clients-section .section-header h2 span {
    color: var(--primary-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.logo-icon {
    margin-bottom: 15px;
}

.logo-icon i {
    font-size: 40px;
    color: #666;
}

.logo-shape {
    width: 40px;
    height: 40px;
    background: #666;
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
}

.logo-shape::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 2px;
}

.logo-gear {
    width: 40px;
    height: 40px;
    background: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto;
}

.logo-floral {
    width: 40px;
    height: 40px;
    background: #666;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.logo-floral::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
}

.logo-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.logo-text strong {
    font-weight: 700;
    color: #333;
}

.logo-text small {
    font-size: 10px;
    color: #999;
}

/* Inline Stats (in About Section) */
.stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.stat-inline-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.stat-inline-item .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-inline-item p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

/* Section Styles */
section {
    padding: 90px 0;
    position: relative;
    z-index: 100;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 140, 66, 0.1) 100%);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: white;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text .lead {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.image-placeholder {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* Services Section */
.services-section {
    background: var(--light-color);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.15);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 34px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-description {
    margin-bottom: 22px;
}

.service-text-short {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0;
    display: block;
}

.service-text-full {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0;
    display: none;
}

.service-card.expanded .service-text-short {
    display: none;
}

.service-card.expanded .service-text-full {
    display: block !important;
    animation: fadeIn 0.3s ease-in;
}

.service-card.expanded .service-link {
    color: var(--primary-color);
}

.service-card.expanded .service-link i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Trades Section */
.trades-section {
    background: white;
    padding: 100px 0;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trade-card {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trade-card:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
    transform: translateY(-5px);
}

.trade-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.trade-card:hover i {
    color: white;
}

.trade-card h4 {
    font-size: 16px;
    font-weight: 600;
}

/* Takeoff Services Section - Reference Site Style */
.takeoff-services-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

.takeoff-services-sidebar {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.takeoff-service-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.takeoff-service-nav-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.06) 100%);
}

.takeoff-service-nav-item.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(255, 140, 66, 0.12) 100%);
}

.takeoff-service-nav-item.active .nav-item-icon {
    background: var(--primary-color);
    color: white;
}

.takeoff-service-nav-item.active .nav-item-text {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-item-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--light-color);
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-item-icon i {
    font-size: 20px;
}

.nav-item-text {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.takeoff-services-content {
    background: #f0f7ff;
    border-radius: 15px;
    padding: 50px 45px;
    min-height: 500px;
    position: relative;
}

.takeoff-service-detail {
    display: none;
    animation: fadeIn 0.4s ease;
}

.takeoff-service-detail.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.takeoff-service-detail h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.3;
}

.takeoff-service-detail h3 strong {
    color: var(--primary-color);
    font-weight: 800;
}

.takeoff-service-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-image-placeholder {
    background: white;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 300px;
}

.service-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image-placeholder i {
    font-size: 100px;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Responsive Design for Takeoff Services */
@media (max-width: 1024px) {
    .takeoff-services-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
    
    .takeoff-services-content {
        padding: 40px 35px;
    }
    
    .takeoff-service-detail h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .trades-section {
        padding: 80px 0;
    }
    
    .takeoff-services-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .takeoff-services-sidebar {
        position: relative;
        top: 0;
        max-height: 400px;
        overflow-y: auto;
    }
    
    .takeoff-services-content {
        padding: 35px 30px;
        min-height: auto;
    }
    
    .takeoff-service-detail h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .takeoff-service-detail p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .service-image-placeholder {
        padding: 40px;
        margin-top: 20px;
    }
    
    .service-image-placeholder i {
        font-size: 70px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.benefit-card {
    background: var(--light-color);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: none;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    background: white;
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(255, 140, 66, 0.12) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon i {
    font-size: 34px;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
}

/* Process Section */
.process-section {
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 30px;
    color: var(--primary-color);
}

/* Projects Section */
.projects-section {
    background: white;
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.25);
}

.project-image {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    padding: 0;
    text-align: center;
    color: white;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-image i {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.project-info p {
    font-size: 14px;
    color: var(--text-light);
}

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

/* Testimonials Section */
.testimonials-section {
    background: var(--light-color);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 12px;
    transition: all 0.35s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 22px;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background: var(--light-color);
    padding: 100px 0;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.quote-info p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.quote-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-color);
}

.quote-benefit i {
    color: var(--success-color);
    font-size: 20px;
}

.quote-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.quote-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.file-upload {
    position: relative;
}

.file-label {
    display: block;
    padding: 40px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-label:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.06) 100%);
}

.file-label i {
    font-size: 40px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.file-label span {
    color: var(--text-light);
    font-size: 15px;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 15px;
}

/* Blog Section */
.blog-section {
    background: var(--light-color);
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.15);
}

.blog-image {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    padding: 0;
    text-align: center;
    color: white;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-image i {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column h3 span {
    color: var(--primary-color);
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

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

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

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

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #FF5A25 0%, #FF6B35 50%, #FF8C42 100%);
    transform: translateY(-5px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trades-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content,
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

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

    .nav-wrapper .btn-primary {
        display: none;
    }

    .hero {
        height: 100vh;
        overflow-y: auto;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
        padding: 20px;
        height: auto;
        min-height: 100vh;
    }

    .hero-left {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        align-items: center;
    }

    .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-right {
        height: auto;
    }
    
    .software-showcase {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .software-content {
        height: 250px;
    }
    
    .features-bar-grid {
        flex-direction: column;
        gap: 30px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-inline {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .blog-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .section-header h2 {
        font-size: 42px;
    }
    
    .section-tag {
        font-size: 14px;
        padding: 6px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* About Page Styles */
.about-detail-section {
    padding: 80px 0;
    background: white;
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.about-detail-text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-detail-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.mv-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}

.mv-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mv-card p {
    font-size: 15px;
    color: var(--text-light);
}

.stats-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.stats-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(255, 140, 66, 0.12) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.stat-row h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.stat-row p {
    font-size: 14px;
    color: var(--text-light);
}

.cta-card {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.cta-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.values-section {
    background: var(--light-color);
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: white;
    padding: 80px 0;
}

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

.team-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.team-image i {
    font-size: 50px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.team-card .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Page Styles */
.services-detail-section {
    padding: 80px 0;
    background: white;
}

.service-detail-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
}

.service-detail-card.alternate {
    background: white;
    box-shadow: var(--shadow);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: start;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 48px;
    color: white;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-detail-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-color);
}

.service-features i {
    color: var(--success-color);
    font-size: 18px;
}

.trades-detail-section {
    background: var(--light-color);
    padding: 80px 0;
}

.trades-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trade-detail-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.trade-detail-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    color: white;
}

.trade-detail-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.trade-detail-card:hover i {
    color: white;
}

.trade-detail-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.trade-detail-card:hover h3,
.trade-detail-card:hover p {
    color: white;
}

.trade-detail-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-section {
    background: white;
    padding: 80px 0;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pricing-feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pricing-feature i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 20px;
}

.pricing-feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pricing-feature p {
    font-size: 15px;
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info-section .lead {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-card {
    display: flex;
    align-items: start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(255, 140, 66, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-info-card p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-info-card .small {
    font-size: 14px;
    color: var(--text-light);
}

.contact-social h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.social-icons a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.contact-form-section {
    position: relative;
}

.contact-form-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.contact-form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-form-card > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-benefits {
    background: var(--light-color);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.form-benefits h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-color);
}

.form-benefits i {
    color: var(--success-color);
    font-size: 16px;
}

.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: start;
    gap: 12px;
}

.faq-item i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 32px;
}

@media (max-width: 1024px) {
    .about-detail-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid,
    .trades-detail-grid,
    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-content {
        grid-template-columns: 80px 1fr;
        gap: 25px;
    }

    .service-detail-icon {
        width: 80px;
        height: 80px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 36px;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .values-grid,
    .team-grid,
    .trades-detail-grid,
    .pricing-features,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

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

    .mission-vision {
        grid-template-columns: 1fr;
    }
}

