html {
    scroll-behavior: smooth;
}
:root {
    --primary: #2563eb;
    --secondary: #3b82f6;
    --text: #1f2937;
    --background: #f8fafc;
    --card-bg: #ffffff;
    --footer-bg: #1f2937;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --border-color: #e5e7eb;
    --opacity-muted: 0.8;
    --border-radius: 0.5rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.25rem;
    --font-size-lg: 2.5rem;
    --font-size-xl: 3.5rem;
}

[data-theme="dark"] {
    --primary: #3b82f6;
    --secondary: #60a5fa;
    --text: #e5e7eb;
    --background: #111827;
    --card-bg: #1f2937;
    --footer-bg: #0f172a;
    --border-color: #374151;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
nav {
    background: var(--card-bg);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.logo svg {
    width: 160px;
    height: 40px;
}
.logo text {
    fill: currentColor;
}
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links .admin-link {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}
.nav-links .admin-link:hover {
    background: var(--secondary);
    color: white;
}
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-left: 1rem;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}
footer {
    background: var(--footer-bg);
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-section a:hover {
    opacity: 1;
}
.footer-section p {
    opacity: 0.8;
    margin: 0.5rem 0;
}
@media (max-width: 768px) {
    .nav-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
    }
    .nav-content > .logo {
        flex: 1;
    }
    .hamburger {
        display: flex;
        margin: 0;
        padding: 0.5rem;
    }
    .nav-links {
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nav-links a {
        margin: 0.5rem;
    }
    .theme-toggle {
        margin: 0;
    }
}
.logo-container {
    position: relative;
    width: 300px; 
    height: 55px;
    display: flex;
    align-items: center;
}

.logo-canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 120px;
}

.gp-text {
    display: flex;
    align-items: baseline;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.gp-text .highlight {
    font-size: 48px;
    animation: glowPulse 2s infinite;
    color: var(--primary);
}

.gp-text .hosting {
    font-size: 18px;
    margin-left: -12px;
    color: var(--text);
    font-weight: 600;
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 3px var(--primary)); }
    50% { filter: drop-shadow(0 0 8px var(--primary)); }
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
}

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

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

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--card-bg);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        height: auto; 
        max-height: 300px;
        overflow-y: auto;
        z-index: 200;
    }
    .nav-links.active {
        display: flex;
        top: 60px;
    }
    .nav-links a {
        width: auto; 
        text-align: center;
        padding: 1rem;
        margin: 0 1rem; 
    }
    .nav-links .admin-link {
        margin: 0 1rem; 
    }
    .theme-toggle {
        margin: 1rem auto 0;
    }
    .logo-container {
        margin: 0;
    }
}
.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}
.hero h1 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
}
.hero p {
    font-size: var(--font-size-md);
    margin-bottom: 2rem;
    opacity: var(--opacity-muted);
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 200px;
}
.button.primary {
    background: white;
    color: var(--primary);
}
.button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 1rem;
}
.pricing {
    padding: 6rem 2rem;
    text-align: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}
.pricing-plan {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.pricing-plan.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
}
.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}
.price span {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.7;
}
.features {
    margin: 2rem 0;
}
.features p {
    margin: 0.75rem 0;
    color: var(--text);
    opacity: 0.8;
}
.pricing-plan .button {
    background: var(--primary);
    color: white;
    margin-top: auto;
}
.pricing-plan .button:hover {
    background: var(--secondary);
}
.services-section {
    padding: 6rem 0;
    text-align: center;
}
.services-section h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.service {
    flex: 0 1 300px;
    max-width: 400px;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}
.service:hover {
    transform: translateY(-5px);
}
.service h2 {
    white-space: normal;
}
.service h2 nobr {
    white-space: nowrap;
}
.about-us {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--background);
}
.about-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-us p {
    font-size: 1rem;
    line-height: 1.6;
}
.contact-section {
    padding: 6rem 0;
    background: var(--background);
    text-align: center;
}
.contact-section h2 {
    font-size: var(--font-size-lg);
    margin-bottom: 3rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-info, .contact-message {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: var(--spacing-md) 0;
    font-size: var(--font-size-sm);
}
.contact-item svg {
    color: var(--primary);
}
.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: var(--primary);
}
.map-container {
    margin-top: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}
.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 768px) {
    .map-wrapper {
        padding-bottom: 100%;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .button.secondary {
        margin-left: 0;
    }
}
.contact-message h3 {
    margin-bottom: 1rem;
}
.contact-message p {
    color: var(--text);
    opacity: 0.8;
    line-height: 1.6;
}
.contact-form {
    margin-top: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
    padding: 0 1rem;  
}
.form-group input,
.form-group textarea {
    width: calc(100% - 1.5rem);
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.submit-button {
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
.submit-button:hover {
    background: var(--secondary);
}
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--text);
    color: var(--card-bg);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 18px;
}
#scrollToTopBtn:hover {
    opacity: var(--opacity-muted);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.contact-header {
    margin-bottom: 2rem;
}
.contact-header h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}
.contact-header p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}
.dark-mode {
    background-color: #121212;
    color: #ffffff;
}
.dark-mode .hero {
    background: linear-gradient(135deg, #333, #555);
}
