/* =====================================================
   YAY3 RESTAURANT MARKETING AGENCY
   Professional Website Redesign
   Color Palette:
   - Deep Navy: #17394E (Primary)
   - Sky Blue: #3BAAEA (Accent)
   - Terracotta: #C64B3A (CTA/Highlight)
   - Warm Cream: #FBF6EA (Background)
   Font: Montserrat
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
    --color-primary: #17394E;
    --color-accent: #3BAAEA;
    --color-cta: #C64B3A;
    --color-cta-hover: #a83d2e;
    --color-background: #FBF6EA;
    --color-white: #ffffff;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(23, 57, 78, 0.08);
    --shadow-md: 0 4px 12px rgba(23, 57, 78, 0.12);
    --shadow-lg: 0 10px 40px rgba(23, 57, 78, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

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

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

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

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
header {
    background: var(--color-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Logo */
header .logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

header .logo img {
    height: 48px;
    width: auto;
}

/* Navigation */
header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

header nav ul li {
    margin: 0;
    position: relative;
}

header nav ul li a {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

header nav ul li a:hover {
    background-color: var(--color-background);
    color: var(--color-accent);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    vertical-align: middle;
    margin-bottom: 2px;
    transition: var(--transition);
}

.dropdown:hover > a::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 12px 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 260px;
    z-index: 1000;
    border-radius: 12px;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateY(10px);
    border: 1px solid var(--color-border);
}

.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    white-space: nowrap;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: var(--color-background);
    color: var(--color-accent);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--color-cta);
    color: var(--color-white) !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(198, 75, 58, 0.35);
}

.cta-button:hover {
    background: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 75, 58, 0.45);
}

header .cta-button {
    padding: 12px 24px;
    font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 6px 0;
    transition: var(--transition);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a63 50%, #245a77 100%);
    color: var(--color-white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero .cta-button {
    font-size: 1rem;
    padding: 18px 36px;
}

/* Page-Specific Hero Background Images */
.hero-home {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-home.jpg') center/cover no-repeat;
}

.hero-about {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-about.png') center/cover no-repeat;
}

.hero-contact {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-contact.webp') center/cover no-repeat;
}

.hero-support {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-support.jpg') center/cover no-repeat;
}

.hero-products {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-products.jpg') center/cover no-repeat;
}

.hero-online-ordering {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-online-ordering.jpg') center/cover no-repeat;
}

.hero-pos-system {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-pos-system.jpg') center/cover no-repeat;
}

.hero-digital-marketing {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/hero-digital-marketing.png') center/cover no-repeat;
}

.careers-hero {
    background: linear-gradient(135deg, rgba(23, 57, 78, 0.85) 0%, rgba(30, 74, 99, 0.8) 50%, rgba(36, 90, 119, 0.85) 100%),
                url('images/careers-hero-2.jpg') center/cover no-repeat;
}

/* Hero with Image */
.hero-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    max-width: 1200px;
}

.hero-with-image .hero-content {
    max-width: 100%;
}

.hero-with-image .hero-content p {
    margin-left: 0;
    margin-right: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .hero-with-image {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-with-image .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 80%;
    }
}

/* =====================================================
   FEATURES SECTION (Homepage)
===================================================== */
.features {
    padding: 100px 0;
    background: var(--color-white);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 48px 32px;
    background: var(--color-background);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.feature img {
    height: 80px;
    width: auto;
    margin-bottom: 28px;
}

.feature h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.feature p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.feature a {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.feature a::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.feature a:hover::after {
    transform: translateX(4px);
}

/* =====================================================
   ABOUT PREVIEW SECTION
===================================================== */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-white) 100%);
}

.about-preview .container {
    max-width: 800px;
    text-align: center;
}

.about-preview h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-preview p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

/* =====================================================
   PAGE CONTENT
===================================================== */
.page-content {
    padding: 80px 0;
    background: var(--color-white);
}

.page-content h2 {
    text-align: left;
    margin-bottom: 20px;
    margin-top: 48px;
}

.page-content h2:first-child,
.page-content .container > h2:first-of-type {
    margin-top: 0;
}

.page-content p {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 800px;
}

.page-content ul {
    margin-bottom: 32px;
}

.page-content ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.page-content ul li strong {
    color: var(--color-primary);
}

/* Feature List Grid */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.feature-item {
    background: var(--color-background);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-item h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.feature-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

table th, table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover td {
    background: var(--color-background);
}

table td {
    font-size: 0.95rem;
}

table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a63 100%);
    color: var(--color-white);
    padding: 64px 48px;
    text-align: center;
    border-radius: 20px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-banner .cta-button {
    position: relative;
    z-index: 1;
}

/* =====================================================
   PRODUCTS PAGE
===================================================== */
.product-grid {
    padding: 80px 0;
    background: var(--color-white);
}

.product-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--color-background);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.product-card h2 {
    padding: 32px 32px 0;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.product-card p {
    padding: 0 32px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.product-card .cta-button {
    margin: 24px 32px 32px;
    display: inline-block;
    font-size: 0.85rem;
    padding: 14px 24px;
}

/* Service Grid (Digital Marketing) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.service-card {
    background: var(--color-background);
    padding: 36px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    color: var(--color-primary);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card a {
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
}

.service-card a::after {
    content: '→';
    margin-left: 6px;
    transition: var(--transition);
}

.service-card a:hover::after {
    transform: translateX(4px);
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form h2,
.contact-info h2 {
    margin-top: 0;
}

.contact-info {
    background: var(--color-background);
    padding: 40px;
    border-radius: 16px;
    position: sticky;
    top: 120px;
}

.contact-info h3 {
    margin-top: 32px;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.contact-info ul li {
    padding: 8px 0;
    font-size: 1rem;
}

.contact-info ul li strong {
    color: var(--color-primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(59, 170, 234, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"].cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 18px;
}

/* =====================================================
   SUPPORT PAGE
===================================================== */
.faq-item {
    background: var(--color-background);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.support-contact {
    background: var(--color-background);
    padding: 48px;
    border-radius: 16px;
    margin-top: 48px;
    text-align: center;
}

.support-contact h2 {
    text-align: center;
    margin-bottom: 16px;
}

.support-contact ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    margin: 24px 0;
}

.support-contact ul li {
    padding: 8px 0;
    font-size: 1.1rem;
}

/* =====================================================
   CAREERS PAGE
===================================================== */
.careers-list {
    margin: 40px 0;
}

.career-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-background);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
    gap: 24px;
}

.career-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.career-info {
    flex: 1;
}

.career-info h3 {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.career-meta {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px !important;
}

.career-info p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.career-item .cta-button {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* =====================================================
   FOOTER
===================================================== */
footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 64px 0 32px;
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--color-white);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.social-media {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0;
    transition: var(--transition);
}

.social-media a::before {
    font-size: 0.8rem;
    font-weight: 600;
}

.social-media a:first-child::before {
    content: 'f';
}

.social-media a:last-child::before {
    content: 'in';
}

.social-media a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

/* Footer Bottom */
footer::after {
    content: '';
    display: block;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */
@media (max-width: 1024px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    header .container {
        flex-wrap: wrap;
    }
    
    header nav {
        order: 3;
        width: 100%;
        display: none;
    }
    
    header nav.active {
        display: block;
    }
    
    header nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    header nav ul li {
        width: 100%;
    }
    
    header nav ul li a {
        padding: 14px 0;
        border-radius: 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--color-background);
        padding: 0;
        margin: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding-left: 24px;
    }
    
    header .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Features Mobile */
    .features {
        padding: 60px 0;
    }
    
    .features .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature {
        padding: 32px 24px;
    }
    
    /* Page Content Mobile */
    .page-content {
        padding: 48px 0;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Product Grid Mobile */
    .product-grid .container {
        grid-template-columns: 1fr;
    }
    
    /* Tables Mobile */
    table {
        display: block;
        overflow-x: auto;
    }
    
    /* CTA Banner Mobile */
    .cta-banner {
        padding: 40px 24px;
        margin-top: 40px;
    }
    
    /* Careers Mobile */
    .career-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .career-item .cta-button {
        margin-top: 16px;
        width: 100%;
        text-align: center;
    }
    
    /* Footer Mobile */
    footer .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 48px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .contact-info {
        padding: 28px;
    }
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.hero .cta-button {
    animation: fadeInUp 0.8s ease forwards;
}

.hero p {
    animation-delay: 0.1s;
}

.hero .cta-button {
    animation-delay: 0.2s;
}

/* Scroll animations */
.feature,
.product-card,
.service-card,
.feature-item,
.faq-item,
.career-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.career-item:nth-child(1) { animation-delay: 0.1s; }
.career-item:nth-child(2) { animation-delay: 0.2s; }
.career-item:nth-child(3) { animation-delay: 0.3s; }
.career-item:nth-child(4) { animation-delay: 0.4s; }
