/* CSS Custom Properties & Design System */
:root {
    /* Colors */
    --bg-main: #ffffff;
    --bg-secondary: #fdfdfd;
    --text-main: #111827;
    --text-muted: #6b7280;
    --primary: #f97316;
    --primary-hover: #ea580c;
    --cyan: #1f2937;
    --magenta: #374151;
    
    /* Layout */
    --max-width: 1200px;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-pill: 9999px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-secondary);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.orange-glow {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.dark-glow {
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
}

/* Typography Utilities */
.text-gradient {
    color: var(--primary);
}
.text-orange { color: var(--primary); }
.text-dark { color: var(--cyan); }
.text-center { text-align: center; }

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--cyan);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--magenta);
    box-shadow: var(--shadow-lg);
}

.btn-pill {
    border-radius: var(--radius-pill);
}

.btn-block {
    width: 100%;
}

.btn-zoom:hover {
    transform: scale(1.05);
}

/* Badges & Pills */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.dark-badge {
    background: rgba(31, 41, 55, 0.1);
    color: var(--cyan);
}

/* Layout Utilities */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.align-start {
    align-items: start;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.hover-scale {
    transition: var(--transition);
}
.hover-scale:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* Header & Nav */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.logo-circle.large {
    width: 75px;
    height: 75px;
    font-size: 1.6rem;
    letter-spacing: -1px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-mockup {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    background-image: url('../img/awt_team_office.png');
    background-size: cover;
    background-position: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.project-stat {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.client-stat {
    bottom: 15%;
    right: -10%;
    animation-delay: 3s;
}

.floating-card i {
    font-size: 1.5rem;
}
.floating-card strong { display: block; font-size: 0.875rem; color: var(--text-muted); }
.floating-card span { display: block; font-size: 1.25rem; font-weight: 700; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(10px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

.timeline-card {
    padding: 1rem;
    position: relative;
}

.mockup-img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

/* Stats Bar */
.stats-bar {
    padding: 3rem 0;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}
.orange-bg { background: var(--primary); }
.dark-bg { background: var(--cyan); }
.darker-bg { background: var(--magenta); }

.stat-info h3 { font-size: 2rem; margin-bottom: 0.25rem; }
.stat-info p { color: var(--text-muted); font-weight: 500; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(31, 41, 55, 0.08);
    color: var(--cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 { margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); }

/* Ecommerce */
.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ecommerce-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.border-dark {
    border-top: 4px solid var(--cyan);
}

.ecommerce-card h3 { margin-bottom: 1rem; }
.ecommerce-card p { color: var(--text-muted); margin-bottom: 2rem; }

.status-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
}
.active-pill { background: rgba(31, 41, 55, 0.1); color: var(--cyan); }
.upcoming-pill { background: rgba(100, 116, 139, 0.1); color: var(--text-muted); }

/* Contact Section */
.contact-form-container {
    padding: 3rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.8);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.info-card i {
    font-size: 1.5rem;
    padding-top: 0.25rem;
}
.info-card h4 { margin-bottom: 0.25rem; }
.info-card p { color: var(--text-muted); }

.hours-card {
    background: #111827; /* dark background */
    color: white;
    flex-direction: column;
    gap: 1rem;
}
.hours-card p, .hours-card span { color: rgba(255,255,255,0.8); }
.hours-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hours-card ul li:last-child { border: none; }

/* Footer */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 { margin: 1rem 0; }
.footer-brand p { color: var(--text-muted); }

.footer-links h4, .footer-social h4 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--cyan); }
.location-text { color: var(--text-muted); margin-top: 1.5rem; }

.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a:hover { color: white; }

/* Responsive */
@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .hero { text-align: center; padding-top: 6rem; }
    .hero-tags { justify-content: center; }
    .hero-visual { height: 400px; margin-top: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
