/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --navy: #001F3F;
    --gold: #D4AF37;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6C757D;
    --dark-gray: #495057;
}

/* Navigation */
.navbar {
    background: var(--navy);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Sections */
.hero {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('https://source.unsplash.com/1600x900/?technology,ghana');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-container,
.about-hero,
.services-hero,
.contact-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-hero,
.services-hero,
.contact-hero {
    background: var(--navy);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    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: 1rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: #B8942F;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
}

.center {
    display: block;
    margin: 2rem auto 0;
}

.full-width {
    width: 100%;
}

/* Services Teaser */
.services-teaser {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-teaser h2,
.about-story h2,
.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

.services-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0;
    color: var(--navy);
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
}

/* Services Main */
.services-main {
    padding: 100px 0;
}

.service-detail {
    margin-bottom: 4rem;
}

.detailed {
    max-width: 500px;
    margin: 0 auto;
}

.detailed img {
    height: 280px;
}

.detailed h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
}

.detailed ul {
    list-style: none;
    padding: 1rem 0;
}

.detailed ul li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.detailed ul li:before {
    content: '✓ ';
    color: var(--gold);
    font-weight: bold;
}

/* About Sections */
.about-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.values {
    padding: 100px 0;
    background: var(--light-bg);
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Contact */
.contact-content {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    color: var(--navy);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 40px;
}

.info-item h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.map-placeholder {
    margin-top: 4rem;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.error {
    color: #DC3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.2em;
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.value-item,
.info-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Section Padding */
section {
    padding: 80px 0;
}

.hero + section {
    padding-top: 120px;
}

/* Products Page */
.products-hero {
    background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('https://source.unsplash.com/1600x900/?products,electronics');
    background-size: cover;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.products-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.products-main {
    padding: 100px 0;
    background: var(--light-bg);
}

.products-main h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.8rem;
}

.product-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-card p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.whatsapp-btn {
    background: var(--navy);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
}


.whatsapp-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

:root {
  --muted: #6c757d;
}

.office-locations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.office-locations .location {
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.05);
  border-radius: 0 6px 6px 0;
}

.office-locations .location h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.office-locations .location p {
  font-size: 0.85rem;
  color: var(--muted);
}

