body {
    background: var(--white);
    color: #222;
    font-family: 'Inter', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #111;
    font-weight: 800;
    margin-top: 0;
}

.highlight-green {
    color: var(--lime-green);
    font-weight: bold;
}
.highlight-red {
    color: var(--red);
    font-weight: bold;
}
.highlight-gold {
    color: var(--golden-earth);
    font-weight: bold;
}

a {
    color: var(--lime-green);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--golden-earth);
}

/* Button Styles */
.button-primary, .btn-primary {
    background: var(--lime-green);
    color: var(--white);
    border: none;
    padding: 0.75em 2em;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s;
    cursor: pointer;
}
.button-primary:hover, .btn-primary:hover {
    background: var(--golden-earth);
    color: #fff;
}
.button-outline, .btn-outline {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
    padding: 0.75em 2em;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.button-outline:hover, .btn-outline:hover {
    background: var(--red);
    color: var(--white);
}

/* Card/Panel Styles */
.card, .panel, .dashboard-card {
    background: var(--celadon);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2em;
    color: var(--golden-earth);
    margin-bottom: 1.5em;
}

/* Dashboard/Stats Styles */
.stat-green {
    background: var(--lime-green);
    color: var(--white);
    border-radius: 8px;
    padding: 1em 2em;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
}
.stat-gold {
    background: var(--golden-earth);
    color: var(--white);
    border-radius: 8px;
    padding: 1em 2em;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
}
.stat-red {
    background: var(--red);
    color: var(--white);
    border-radius: 8px;
    padding: 1em 2em;
    font-size: 1.2em;
    font-weight: bold;
    display: inline-block;
}

/* Utility */
.bg-lime {
    background: var(--lime-green) !important;
    color: var(--white) !important;
}
.bg-celadon {
    background: var(--celadon) !important;
}
.bg-gold {
    background: var(--golden-earth) !important;
    color: var(--white) !important;
}
.bg-red {
    background: var(--red) !important;
    color: var(--white) !important;
}
.text-lime {
    color: var(--lime-green) !important;
}
.text-gold {
    color: var(--golden-earth) !important;
}
.text-red {
    color: var(--red) !important;
}
/* Color Palette Variables */
:root {
    --white: #fff;
    --celadon: #bdedbb;
    --golden-earth: #99731d;
    --lime-green: #48ca3f;
    --red: #ff0000;
}

/* ==========================================
   VEGA VENTURE SDN. BHD. - Corporate Website
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #48ca3f; /* Lime Green */
    --secondary-color: #99731d; /* Golden Earth */
    --accent-color: #99731d; /* Golden Earth */
    --accent-hover: #48ca3f; /* Lime Green */
    --text-dark: #212121; /* Charcoal */
    --text-light: #555; /* Slate */
    --bg-light: #bdedbb; /* Celadon */
    --bg-white: #fff; /* White */
    --border-color: #99731d; /* Golden Earth */
    --success-color: #48ca3f; /* Lime Green */
    --gradient-primary: linear-gradient(135deg, #48ca3f 0%, #99731d 100%);
    --shadow-sm: 0 1px 3px rgba(72,202,63,0.10);
    --shadow-md: 0 4px 6px rgba(153,115,29,0.10);
    --shadow-lg: 0 10px 25px rgba(33,33,33,0.12);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--lime-green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--golden-earth);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--red);
    color: #fff;
}

/* Header & Navigation */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top .phone-number,
.header-top .address {
    color: var(--bg-white) !important;
    font-weight: 500;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top a {
    color: var(--bg-white);
}

.header-top a:hover {
    color: var(--celadon);
}

nav {
    padding: 15px 0;
}

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-links .btn-primary {
    padding: 8px 20px;
}

.nav-links .btn-primary.active {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-content {
    max-width: 600px;
    color: #111;
}

.hero-graphic {
    position: relative;
    height: 450px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.geo-shapes {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;
}

.shape {
    position: absolute;
}

.shape-square {
    width: 100px;
    height: 100px;
    background: var(--celadon);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--lime-green);
}

.shape-circle {
    width: 180px;
    height: 180px;
    background: var(--lime-green);
    border-radius: 50%;
    top: 30%;
    right: 0;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid var(--red);
    bottom: 10%;
    left: 20%;
}

.shape-diamond {
    width: 80px;
    height: 80px;
    background: var(--celadon);
    transform: rotate(45deg);
    top: 10%;
    left: 50%;
}

.shape-semicircle {
    width: 200px;
    height: 100px;
    background: var(--golden-earth);
    border-radius: 200px 200px 0 0;
    bottom: 5%;
    right: 10%;
}

.hero h1 {
    color: #111;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--lime-green);
}

.hero p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    text-transform: capitalize;
    letter-spacing: 0;
}

/* Page Header */
.page-header {
    background: var(--bg-white);
    padding: 160px 0 60px;
    text-align: center;
    color: #111;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    color: #111;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 3rem;
}

.page-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--lime-green);
}

.breadcrumb span {
    color: #999;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
}

.section-tag {
    display: inline-block;
    background: var(--celadon);
    color: var(--golden-earth);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

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

.about-image {
    position: relative;
}

.about-image-placeholder {
    background: var(--celadon);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    color: var(--golden-earth);
    border: 2px solid var(--lime-green);
}

.company-logo-large {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Vision Mission Goal */
.vmg-section {
    background: var(--bg-white);
}

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

.vmg-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #ddd;
    border-top: 4px solid var(--accent-color);
}

.vmg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.vmg-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.vmg-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vmg-card h3 {
    margin-bottom: 15px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
}

/* Projects Section */
.projects-section {
    background: var(--bg-light);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

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

.project-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 3px solid var(--golden-earth);
}

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

.project-header {
    background: var(--lime-green);
    padding: 25px;
    color: var(--bg-white);
}

.project-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-header h4 {
    color: var(--bg-white);
    font-size: 1rem;
    line-height: 1.5;
}

.project-body {
    padding: 20px 25px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
}

.project-meta span {
    color: var(--text-light);
}

.project-meta strong {
    color: var(--text-dark);
}

.project-value {
    color: var(--accent-hover) !important;
    font-weight: 600 !important;
}

/* Statistics Section */
.stats-section {
    background: var(--lime-green);
    color: var(--bg-white);
}

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

.stat-box {
    padding: 30px 20px;
}

.stat-box .stat-number {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--lime-green), var(--golden-earth));
    border-radius: 50%;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.team-avatar img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide initials when an image is present; shows automatically if the image is missing/removed */
.team-avatar img + .team-initials {
    opacity: 0;
}

.team-initials {
    position: relative;
    z-index: 1;
}

.team-info {
    padding: 0 25px 30px;
}

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

.team-role {
    color: var(--accent-hover);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-cert {
    display: inline-block;
    background: rgba(246, 173, 85, 0.15);
    color: var(--accent-hover);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Certifications Section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cert-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--golden-earth);
    border-right: 3px solid var(--golden-earth);
    border-bottom: 3px solid var(--golden-earth);
    border-left: 3px solid var(--golden-earth);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.cert-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cert-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.cert-detail span:first-child {
    color: var(--text-light);
}

.cert-detail span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.cert-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

.status-active {
    background: rgba(72, 187, 120, 0.15);
    color: var(--success-color);
}

/* Equipment Section */
.equipment-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.equipment-table table {
    width: 100%;
    border-collapse: collapse;
}

.equipment-table th,
.equipment-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.equipment-table th {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.equipment-table tr:last-child td {
    border-bottom: none;
}

.equipment-table tr:hover td {
    background: var(--bg-light);
}

/* Clients Section */
.clients-section {
    background: var(--bg-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: var(--bg-white);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.client-logo:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.client-logo span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--golden-earth);
    border-radius: 16px;
    padding: 40px;
    color: var(--bg-white);
}

.contact-info-card h3 {
    color: var(--bg-white);
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

.contact-link {
    color: var(--bg-white) !important;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--celadon) !important;
}

.contact-form {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: #1a3318;
    color: var(--bg-white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo-text {
    color: var(--bg-white);
    margin-bottom: 15px;
}

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact-item span:first-child {
    color: var(--accent-color);
}

.footer-phone {
    color: var(--bg-white) !important;
    font-weight: 500;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding-top: 160px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-graphic {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .vmg-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .projects-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}
