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

:root {
    /* Brand colors from logo */
    --color-cyan: #00AEEF;
    --color-magenta: #EC008C;
    --color-yellow: #FFF200;
    --color-black: #1a1a1a;

    /* UI colors */
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-primary: #00AEEF;
    --color-accent: #EC008C;
    --color-border: #e5e5e5;
    --color-bg-alt: #f7f7f7;
    --color-header: #ffffff;
    --color-header-text: #1a1a1a;
    --color-footer: #1a1a1a;
    --color-footer-text: #aaaaaa;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --gap: 2rem;
    --radius: 4px;
    --transition: 0.2s ease;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

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

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

a:hover {
    color: var(--color-accent);
}

/* ── Container ── */
.taf-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Header ── */
.taf-header {
    background: var(--color-header);
    color: var(--color-header-text);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.taf-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.taf-logo {
    display: flex;
    align-items: center;
}

.taf-logo img {
    height: 55px;
    width: auto;
    max-width: 280px;
}

.taf-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-header-text);
    letter-spacing: -0.02em;
}

/* ── Navigation ── */
.taf-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.taf-nav a {
    color: var(--color-header-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    position: relative;
}

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

.taf-nav a:hover::after,
.taf-nav .current-menu-item a::after {
    width: 100%;
}

.taf-nav a:hover {
    color: var(--color-header-text);
}

/* ── Mobile Nav Toggle ── */
.taf-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.taf-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* ── Main Content ── */
.taf-main {
    min-height: 60vh;
    padding: var(--gap) 0;
}

/* ── Hero Section ── */
.taf-hero {
    background: #0a0a0a;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.taf-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.taf-hero h1 .highlight {
    color: var(--color-cyan);
}

.taf-hero p {
    font-size: 1.2rem;
    color: var(--color-footer-text);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* ── Buttons ── */
.taf-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.taf-btn-primary {
    background: var(--color-cyan);
    color: #fff;
}

.taf-btn-primary:hover {
    background: #0095cc;
    color: #fff;
}

.taf-btn-accent {
    background: var(--color-accent);
    color: #fff;
}

.taf-btn-accent:hover {
    background: #c9006f;
    color: #fff;
}

.taf-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.taf-btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
}

/* ── Services Grid ── */
.taf-services {
    padding: 4rem 0;
}

.taf-services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.taf-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.taf-service-card {
    background: var(--color-bg-alt);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    border-top: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
}

.taf-service-card:nth-child(1) { border-top-color: var(--color-cyan); }
.taf-service-card:nth-child(2) { border-top-color: var(--color-magenta); }
.taf-service-card:nth-child(3) { border-top-color: var(--color-yellow); }

.taf-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.taf-service-card .taf-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.taf-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.taf-service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ── CTA Section ── */
.taf-cta {
    background: var(--color-bg-alt);
    padding: 4rem 0;
    text-align: center;
}

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

.taf-cta p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Why Us / Features ── */
.taf-features {
    padding: 4rem 0;
}

.taf-features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.taf-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.taf-feature {
    text-align: center;
    padding: 1.5rem;
}

.taf-feature .taf-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-cyan);
}

.taf-feature h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.taf-feature p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* ── Page Content ── */
.taf-page-header {
    background: #0a0a0a;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.taf-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.taf-page-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.taf-page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.taf-page-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

/* ── Contact ── */
.taf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.taf-contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.taf-contact-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.taf-contact-info strong {
    color: var(--color-text);
}

.taf-contact-info a {
    color: var(--color-cyan);
}

/* ── Forms ── */
.wpcf7-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: border-color var(--transition);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-cyan);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: var(--color-cyan);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
    background: #0095cc;
}

/* ── WooCommerce ── */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    list-style: none;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1rem 0.25rem;
}

.woocommerce ul.products li.product .price {
    padding: 0 1rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.woocommerce ul.products li.product .button {
    display: block;
    text-align: center;
    margin: 1rem;
    padding: 0.6rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--color-accent);
    color: #fff;
}

/* ── Footer ── */
.taf-footer {
    background: var(--color-footer);
    color: var(--color-footer-text);
    padding: 3rem 0 1.5rem;
}

.taf-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--gap);
    margin-bottom: 2rem;
}

.taf-footer h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.taf-footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.taf-footer a {
    color: var(--color-footer-text);
    font-size: 0.9rem;
}

.taf-footer a:hover {
    color: var(--color-cyan);
}

.taf-footer ul {
    list-style: none;
}

.taf-footer li {
    margin-bottom: 0.5rem;
}

.taf-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

.taf-footer-bottom a {
    color: var(--color-cyan);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .taf-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a0a;
        padding: 2rem;
        z-index: 999;
    }

    .taf-nav.is-open {
        display: block;
    }

    .taf-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .taf-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #222;
        color: #ffffff;
    }

    .taf-nav-toggle {
        display: block;
    }

    .taf-nav-toggle.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .taf-nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .taf-nav-toggle.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .taf-hero h1 {
        font-size: 2rem;
    }

    .taf-hero p {
        font-size: 1rem;
    }

    .taf-services-grid {
        grid-template-columns: 1fr;
    }

    .taf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .taf-contact-grid {
        grid-template-columns: 1fr;
    }

    .taf-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .taf-hero {
        padding: 3rem 0;
    }

    .taf-hero h1 {
        font-size: 1.75rem;
    }

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