/*
 * GreenScape Australia - Premium Gardening Equipment
 * Main Stylesheet
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Modern Premium Theme */
    --primary-color: #2d5f3f;
    --primary-dark: #1a3a28;
    --primary-light: #3d7a52;
    --secondary-color: #e8a547;
    --secondary-dark: #d18f2e;
    --secondary-light: #f4c57d;
    --accent-teal: #4a9b8e;
    --accent-coral: #ff6b6b;
    --dark-color: #1a1a1a;
    --dark-gray: #3a3a3a;
    --medium-gray: #6b6b6b;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --black: #000000;

    /* Typography - Distinctive & Premium */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
}

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

p {
    margin-bottom: var(--spacing-sm);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(232, 165, 71, 0.35);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 165, 71, 0.45);
    color: var(--dark-color);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 77, 46, 0.3);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

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

.logo-text {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.phone-link:hover::after {
    width: 100%;
}

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

.phone-link:hover i {
    transform: rotate(15deg) scale(1.1);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(26, 77, 46, 0.6) 50%, rgba(10, 10, 10, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.95);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    max-width: 600px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 1);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 107, 42, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f2 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 95, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(45, 95, 63, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 95, 63, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--dark-gray);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Section Styles */
.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
    margin-top: var(--spacing-md);
    font-weight: 500;
}

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Featured Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid rgba(45, 95, 63, 0.1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(45, 95, 63, 0.25);
    border-color: var(--primary-color);
}

.product-image {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    transition: var(--transition-normal);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
}

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

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232, 165, 71, 0.5);
    z-index: 10;
    white-space: nowrap;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 700;
}

.product-description {
    color: #4a4a4a;
    margin-bottom: var(--spacing-md);
    min-height: 60px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(45, 95, 63, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 95, 63, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 700;
}

.service-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-teal) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 95, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 155, 142, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(15, 20, 25, 0.5) 50%,
        transparent 100%
    );
}

.footer-wave svg {
    display: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col-brand {
    padding-right: var(--spacing-lg);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo .logo-image {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 95, 63, 0.4);
    border-color: var(--primary-color);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-teal));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-teal);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    color: var(--primary-light);
    transform: scale(1.2);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

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

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

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* ============================================
   Page-Specific Styles
   ============================================ */

/* Page Header */
.page-header {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    background: linear-gradient(135deg, #1a3a28 0%, var(--primary-dark) 30%, var(--primary-color) 70%, var(--accent-teal) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.page-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Product Page Styles */
.filter-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--light-gray);
}

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

.filter-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.product-item {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-item-image {
    flex: 0 0 250px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.product-item-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.product-item-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    min-height: 4rem;
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
    height: auto;
}

.product-item-description {
    color: #4a4a4a;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.product-item-specs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.product-item-price {
    margin-bottom: var(--spacing-md);
}

.product-item-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-item-price .price-note {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.about-text {
    margin-bottom: var(--spacing-md);
    color: var(--medium-gray);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.image-placeholder span {
    margin-top: var(--spacing-sm);
    font-size: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: #4a4a4a;
    font-size: 0.95rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    height: 450px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.member-info {
    padding: var(--spacing-lg);
}

.member-name {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.member-bio {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.member-contact {
    display: flex;
    gap: var(--spacing-sm);
}

.member-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.member-contact a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-teal));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--spacing-xl);
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--spacing-xl);
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -40px;
}

.timeline-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.timeline-description {
    color: var(--medium-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    padding: var(--spacing-lg);
}

.testimonial-text {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.author-company {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.contact-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.contact-detail {
    color: #4a4a4a;
    margin-bottom: var(--spacing-xs);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-md);
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.contact-form-container {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.form-subtitle {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-gray);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.map-container {
    margin-bottom: var(--spacing-lg);
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.map-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}


.emergency-card {
    background: linear-gradient(135deg, var(--accent-coral), #ff5252);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.emergency-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.emergency-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.emergency-text {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-normal);
}

.emergency-phone:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.emergency-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.faq-preview {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '▼';
    font-size: 0.75rem;
    transition: var(--transition-normal);
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 var(--spacing-md);
}

.faq-answer p {
    padding: var(--spacing-md) 0;
    color: var(--medium-gray);
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-md);
}

.faq-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
}

.sales-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.sales-person {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.sales-person:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.sales-person-image {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg);
    background-size: cover;
    background-position: center;
}

.sales-person-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.sales-person-image > * {
    position: relative;
    z-index: 2;
}

.sales-person-info {
    padding: var(--spacing-lg);
}

.sales-person-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sales-person-title {
    color: var(--secondary-light);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.sales-person-specialty {
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.sales-person-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sales-person-contact a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.sales-person-contact a:hover {
    color: var(--primary-dark);
    padding-left: var(--spacing-xs);
}

/* Services Page Styles */
.services-master-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.service-master-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-master-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-master-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    transition: var(--transition-normal);
}

.service-master-card:hover .service-master-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-master-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.service-master-description {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-lg);
}

.service-master-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.service-master-features li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-master-features i {
    color: var(--primary-color);
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-detail-header {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.service-detail-icon {
    font-size: 2rem;
}

.service-detail-title {
    font-size: 1.25rem;
    margin: 0;
}

.service-detail-content {
    padding: var(--spacing-lg);
}

.service-detail-list {
    list-style: none;
    margin-top: var(--spacing-md);
}

.service-detail-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.service-detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-detail-cta {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.service-detail-card:hover .service-detail-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.service-detail-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.plan-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.plan-card:hover:not(.featured) {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--dark-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(232, 165, 71, 0.4);
}

.plan-header {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    text-align: center;
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.9;
}

.plan-content {
    padding: var(--spacing-lg);
}

.plan-features {
    list-style: none;
}

.plan-features li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.plan-features i.fa-check {
    color: var(--primary-color);
}

.plan-features i.fa-times {
    color: var(--medium-gray);
}

.plan-cta {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-teal));
    z-index: -1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: #4a4a4a;
}

/* Projects Page Styles */
.projects-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    color: var(--white);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--dark-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 8px rgba(232, 165, 71, 0.4);
}

.project-location {
    font-size: 1rem;
    opacity: 0.9;
}

.project-content {
    padding: var(--spacing-lg);
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.project-description {
    color: #4a4a4a;
    margin-bottom: var(--spacing-md);
    min-height: 60px;
}

.project-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.project-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-size: 0.875rem;
}

.project-stat i {
    font-size: 1.25rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-normal);
}

.project-link:hover {
    color: var(--primary-dark);
    gap: var(--spacing-md);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial-quote i.fa-quote-left {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-quote i.fa-quote-right {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--medium-gray);
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.author-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.author-company {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dots .dot.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    transform: scale(1.2);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.equipment-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.equipment-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.equipment-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.equipment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: var(--white);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.equipment-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.equipment-type {
    font-size: 0.875rem;
    opacity: 0.9;
}

.equipment-info {
    padding: var(--spacing-lg);
}

.equipment-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.equipment-stats {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Pagination - Removed as per user request */
/*
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.page-link:hover,
.page-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.page-dots {
    color: var(--medium-gray);
    padding: 0 var(--spacing-sm);
}
*/

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Form Messages */
.form-message {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: slideIn 0.3s ease;
}

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

.form-message.success {
    background-color: rgba(42, 107, 42, 0.1);
    border: 1px solid var(--primary-color);
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
}

.message-icon {
    font-size: 1.5rem;
}

.form-message.success .message-icon {
    color: var(--primary-color);
}

.form-message.error .message-icon {
    color: #dc3545;
}

.message-content p {
    margin: 0;
}

/* Field Errors */
.field-error {
    color: var(--accent-coral);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--accent-coral);
}
/* Features Section - Products Page */
.features-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.feature-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(45, 95, 63, 0.1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 95, 63, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 700;
}

.feature-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}
