:root {
    /* Brand Colors */
    --netopie-teal: #1fb1b1;
    --netopie-lime: #9bc353;
    --netopie-petrol-dark: #122b30;
    --netopie-petrol-med: #1a434d;
    --metaline-grey: #707a8a;
    
    /* UI Colors */
    --bg-gradient: radial-gradient(at 0% 0%, #122b30 0, transparent 50%), 
                   radial-gradient(at 100% 0%, #1a434d 0, transparent 50%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-bright: #ffffff;
    --text-muted: #94a3b8;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0d1e22; /* Base Petrol Dark */
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-bright);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header */
header {
    padding: 25px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    background: rgba(18, 43, 48, 0.5);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-img {
    height: 55px; /* Adjusted for your specific logo proportions */
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0 60px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    /* Subtle gradient using the Lime and Teal */
    background: linear-gradient(to right, var(--netopie-lime), var(--netopie-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 100px;
}

.contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    transition: all 0.4s ease;
}

/* Alternate glow colors for the cards */
.contact-card:nth-child(1):hover {
    border-color: var(--netopie-teal);
    box-shadow: 0 15px 35px rgba(31, 177, 177, 0.15);
}

.contact-card:nth-child(2):hover {
    border-color: var(--netopie-lime);
    box-shadow: 0 15px 35px rgba(155, 195, 83, 0.15);
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

/* Card 1 uses Teal icon, Card 2 uses Lime icon */
.contact-card:nth-child(1) i { color: var(--netopie-teal); }
.contact-card:nth-child(2) i { color: var(--netopie-lime); }

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-bright);
}

.contact-link {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Unique button styles to match the card theme */
.contact-card:nth-child(1) .contact-link {
    background: var(--netopie-teal);
    color: var(--netopie-petrol-dark);
}

.contact-card:nth-child(2) .contact-link {
    background: var(--netopie-lime);
    color: var(--netopie-petrol-dark);
}

.contact-link:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 50px;
    color: var(--metaline-grey);
    border-top: 1px solid var(--card-border);
    font-size: 0.9rem;
}