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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

header {
    background: #4a1a6b;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 1.8rem;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    height: 75px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
    background: white;
    padding: 5px 10px;
}

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

/* Text-based logo fallback */
.logo-text-fallback {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-ags-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: #6b2c8f;
    background: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    letter-spacing: -2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-services-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
}

.logo-link:hover .logo-text-fallback {
    transform: scale(1.05);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-link,
.email-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.phone-link:hover,
.email-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b584d4;
}

.hero {
    background: linear-gradient(135deg, #6b2c8f 0%, #4a1a6b 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1,
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.hero-feature {
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #9b59b6;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #7d3c98;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: white;
    color: #4a1a6b;
}

.about-service {
    padding: 4rem 0;
    background: white;
}

.about-service h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a1a6b;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #9b59b6;
}

.highlight-item strong {
    display: block;
    color: #4a1a6b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

.services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #4a1a6b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #4a1a6b;
    margin-bottom: 1rem;
}

.service-area {
    padding: 4rem 0;
}

.service-area h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a1a6b;
}

.service-area h3 {
    text-align: center;
    color: #4a1a6b;
    margin: 2rem 0 1.5rem;
}

.service-area p {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-area-intro {
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-area-cta {
    font-weight: 500;
    margin-top: 3rem;
}

.service-area-cta a {
    color: #9b59b6;
    text-decoration: none;
    font-weight: 600;
}

.service-area-cta a:hover {
    text-decoration: underline;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

.area-list li {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    border-left: 4px solid #9b59b6;
}

.common-uses {
    padding: 4rem 0;
    background: #f8f9fa;
}

.common-uses h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #4a1a6b;
}

.common-uses-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.use-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.use-item h3 {
    color: #4a1a6b;
    margin-bottom: 1rem;
}

.use-item p {
    line-height: 1.7;
    color: #555;
}

.why-choose {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #4a1a6b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature h3 {
    color: #4a1a6b;
    margin-bottom: 0.5rem;
}

.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6b2c8f 0%, #4a1a6b 100%);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background: #4a1a6b;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3, .footer-contact h3 {
    margin-bottom: 1rem;
    color: #b584d4;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #b584d4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-methods {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-buttons-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border: 3px solid #9b59b6;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-btn:hover {
    background: #9b59b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155,89,182,0.3);
}

.phone-btn {
    color: #4a1a6b;
}

.email-btn {
    color: #4a1a6b;
}

.btn-icon {
    font-size: 3rem;
    min-width: 60px;
}

.btn-text {
    text-align: left;
    font-size: 1.1rem;
}

.btn-text strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quick-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: left;
}

.quick-info h3 {
    color: #4a1a6b;
    margin-bottom: 1rem;
}

.quick-info ul {
    margin-left: 1.5rem;
}

.quick-info li {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #4a1a6b;
    margin-bottom: 1rem;
}

.contact-info-item {
    margin-bottom: 1rem;
}

.contact-info-item strong {
    color: #4a1a6b;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .header-contact {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .phone-link,
    .email-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-icon {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }

    header h1 {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 63px;
    }

    .logo-ags-text {
        font-size: 1.8rem;
        width: 55px;
        height: 55px;
    }

    .logo-services-text {
        font-size: 0.9rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}