/**
 * Zen Mekanizma - Main Stylesheet
 * Modern Industrial Design
 */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #e74c3c;
    --accent-hover: #c0392b;
    --orange-color: #f39c12;
    --text-color: #1a1a2e;
    --text-muted: #5a6c7d;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --header-bg: #ffffff;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --whatsapp-color: #25D366;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--text-color);
}

.logo:hover {
    color: var(--text-color);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.logo-img {
    height: clamp(32px, 5vw, 48px);
    width: auto;
    transition: height 0.2s ease;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--accent-color);
}

.nav-catalog {
    background: var(--accent-color);
    padding: 8px 16px !important;
    border-radius: 6px;
    color: white !important;
}

.nav-catalog:hover {
    background: var(--accent-hover);
    color: white !important;
}

.nav-catalog::after {
    display: none !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.lang-btn {
    color: var(--text-muted);
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-color);
}

.lang-btn.active {
    color: var(--accent-color);
    font-weight: 600;
}

.lang-divider {
    color: var(--border-color);
}

/* Auth Links */
.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-auth {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-auth:hover {
    color: var(--text-color);
}

.btn-auth.btn-register {
    background: var(--accent-color);
    color: white;
}

.btn-auth.btn-register:hover {
    background: var(--accent-hover);
    color: white;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-logout {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.btn-logout:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Price List Nav */
.nav-price-list {
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 16px !important;
    border-radius: 20px;
    color: #4caf50 !important;
}

.nav-price-list:hover {
    background: #4caf50;
    color: white !important;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--text-color);
    font-size: 0.9rem;
}

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

/* Dropdown User Info */
.dropdown-user-info {
    padding: 12px 16px;
    background: rgba(30, 58, 95, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-user-info span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

/* Dropdown Auth Links */
.dropdown-auth {
    color: var(--accent-color) !important;
}

.dropdown-register {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white !important;
    margin: 8px;
    border-radius: 6px;
    justify-content: center !important;
}

.dropdown-register:hover {
    background: linear-gradient(135deg, var(--accent-hover), #e55a5a) !important;
    color: white !important;
}

/* Dropdown Logout */
.dropdown-logout {
    color: var(--text-muted) !important;
}

.dropdown-logout:hover {
    color: var(--accent-color) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ===== Main Content ===== */
.site-main {
    padding-top: 80px;
    min-height: calc(100vh - 300px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    color: #000000;
}

.hero-title-line.accent {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Section Styling ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    margin: 16px auto 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* ===== About Section ===== */
.about-section {
    background: var(--secondary-color);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

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

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

.feature-icon {
    color: var(--accent-color);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Products Grid ===== */
.products-section {
    background: var(--bg-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

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

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

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid #e8e4df;
    position: relative;
}

/* Outer stylish frame */
.product-image::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px solid #1e3a5f;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.35;
    transition: all 0.3s ease;
}

/* Inner accent line */
.product-image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    pointer-events: none;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 0.5;
    border-color: var(--accent-color);
}

.product-card:hover .product-image::after {
    opacity: 0.6;
    inset: 14px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    max-width: 88%;
    max-height: 88%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
}

.product-placeholder.large {
    min-height: 400px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-category {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--accent-color);
    background: rgba(233, 69, 96, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.product-card-wrapper {
    display: flex;
    flex-direction: column;
}

.product-card-wrapper .product-card {
    flex: 1;
}

.product-card-wrapper .add-cart-form {
    margin-top: 12px;
}

.product-card-wrapper .btn-add-cart {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== Shop Section ===== */
.shop-section {
    padding: 60px 0;
}

.no-products {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 60px 20px;
}

/* ===== Product Detail ===== */
.product-detail {
    padding: 40px 0 80px;
}

.breadcrumb {
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

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

.breadcrumb span {
    margin: 0 8px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-image {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #e8e4df;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 400px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-detail-image::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    pointer-events: none;
}

.product-detail-image img {
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Product Gallery/Slider */
.product-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-slider {
    position: relative;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid #e8e4df;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.slider-container {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.slide img {
    max-width: 90%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.12));
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.slider-nav:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 16px;
}

.slider-nav.next {
    right: 16px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(30, 58, 95, 0.5);
}

.dot.active {
    background: var(--accent-color);
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

/* Thumbnail Gallery */
.slider-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 8px 0;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e8e4df;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
    padding: 4px;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: var(--accent-color);
    border-width: 3px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.25);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 8px;
    }

    .slider-nav.next {
        right: 8px;
    }

    .slider-thumbnails {
        gap: 8px;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }
}

.product-category-badge {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.product-detail-content h1 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.product-description {
    margin-bottom: 32px;
    color: var(--text-muted);
    line-height: 1.8;
}

.product-features,
.product-usage {
    margin-bottom: 32px;
}

.product-features h3,
.product-usage h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.product-features ul,
.product-usage ul {
    padding-left: 20px;
}

.product-features li,
.product-usage li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.product-features li::before,
.product-usage li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.product-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ===== Related Products ===== */
.related-products {
    background: var(--secondary-color);
    padding: 60px 0;
}

/* ===== Company Page ===== */
.company-section {
    padding: 60px 0;
}

.company-content {
    max-width: 900px;
    margin: 0 auto;
}

.company-block {
    margin-bottom: 48px;
}

.company-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.company-block p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.company-values h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--accent-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.value-icon {
    color: var(--accent-color);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.contact-form-container p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--accent-color);
}

.contact-icon.whatsapp {
    color: var(--whatsapp-color);
}

.contact-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.contact-text p,
.contact-text a {
    color: var(--text-color);
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

/* ===== Map Container ===== */
.map-section {
    background: var(--secondary-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    display: block;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    border-top: none;
    padding: 60px 0 24px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: #f39c12;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list svg {
    flex-shrink: 0;
    color: #f39c12;
    margin-top: 3px;
}

.contact-list span,
.contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.working-hours {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Admin Styles ===== */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-header h1 {
    font-size: 1.8rem;
}

.admin-nav {
    display: flex;
    gap: 16px;
}

.admin-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

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

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

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-danger {
    background: var(--error-color);
    color: white;
}

.btn-danger:hover {
    background: #d32f2f;
    color: white;
}

.btn-secondary {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 48px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h1 {
    margin-bottom: 8px;
}

.login-box p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.login-box .form-group {
    text-align: left;
}

.login-box .btn {
    width: 100%;
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

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

    .product-cta {
        flex-direction: column;
    }

    .product-cta .btn {
        width: 100%;
    }
}

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

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

    .contact-form {
        padding: 24px;
    }

    .admin-card {
        padding: 20px;
    }

    .admin-table {
        font-size: 0.9rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 8px;
    }
}

/* ===== Auth Section ===== */
.auth-section {
    padding: 60px 0;
}

.auth-form-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-link {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
}

.auth-link a {
    color: var(--accent-color);
    font-weight: 500;
}

/* ===== Alerts ===== */
.alert {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

/* ===== Price List ===== */
.price-list-section {
    padding: 60px 0;
}

.price-list-table-container {
    overflow-x: auto;
}

.price-list-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.price-list-table th,
.price-list-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-list-table th {
    background: var(--secondary-color);
    font-weight: 600;
    color: var(--text-color);
}

.price-list-table td.price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.price-list-table tr:hover {
    background: rgba(233, 69, 96, 0.03);
}

.price-list-note {
    margin-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
}

/* ===== Quote Cart ===== */
.cart-section {
    padding: 60px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

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

.cart-table th {
    background: var(--secondary-color);
    font-weight: 600;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--secondary-color);
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-product-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.qty-input {
    width: 80px;
    padding: 10px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    text-align: center;
}

.remove-btn {
    color: var(--error-color);
    font-size: 1.2rem;
    padding: 8px;
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.quote-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.quote-form-container h3 {
    margin-bottom: 20px;
}

/* Add to Cart Button */
.btn-add-cart {
    background: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    font-size: 0.85rem;
}

.btn-add-cart:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Cart Badge */
.cart-badge {
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Order Status ===== */
.status-pending {
    color: orange;
}

.status-approved {
    color: #4caf50;
}

.status-processing {
    color: #2196f3;
}

.status-delivered {
    color: var(--success-color);
}

.status-cancelled {
    color: var(--error-color);
}

.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.order-status.status-pending {
    background: rgba(255, 152, 0, 0.1);
}

.order-status.status-approved {
    background: rgba(76, 175, 80, 0.1);
}

.order-status.status-processing {
    background: rgba(33, 150, 243, 0.1);
}

.order-status.status-delivered {
    background: rgba(76, 175, 80, 0.2);
}

.order-status.status-cancelled {
    background: rgba(244, 67, 54, 0.1);
}

.status-select {
    padding: 8px 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 0.85rem;
}

/* Orders List */
.orders-section {
    padding: 60px 0;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.order-info strong {
    display: block;
    margin-bottom: 4px;
}

.order-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-notes {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* ===== Legal Pages ===== */
.legal-section {
    padding: 60px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
}

.legal-content .last-update {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.legal-content h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-table th {
    background: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 24px;
    }
}

/* Footer Legal Links */
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    color: var(--accent-color);
}

/* ===== Premium Auth Section - Luxury Styles ===== */
.auth-section {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, rgba(44, 82, 130, 0.05) 100%),
        radial-gradient(circle at 10% 20%, rgba(231, 76, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle, rgba(231, 76, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: authPatternMove 25s linear infinite;
    pointer-events: none;
}

@keyframes authPatternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.auth-form-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 12px 24px -8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: authFormSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes authFormSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b, var(--orange-color));
    border-radius: 0 0 4px 4px;
}

/* Auth Form Styling */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-form .form-group {
    position: relative;
}

.auth-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.auth-form .form-group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-color);
    background: rgba(248, 249, 250, 0.8);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.auth-form .form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.auth-form .form-group input:hover {
    background: rgba(248, 249, 250, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.auth-form .form-group input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--accent-color);
    box-shadow:
        0 0 0 4px rgba(231, 76, 60, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

.auth-form .form-group input:focus+label,
.auth-form .form-group input:not(:placeholder-shown)+label {
    color: var(--accent-color);
}

/* Premium Submit Button */
.auth-form .btn-primary {
    position: relative;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 50%, var(--orange-color) 100%);
    background-size: 200% 100%;
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(231, 76, 60, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.auth-form .btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(231, 76, 60, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth-form .btn-primary:hover::before {
    left: 100%;
}

.auth-form .btn-primary:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 15px rgba(231, 76, 60, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Auth Link Styling */
.auth-link {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.auth-link a {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.auth-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    transition: width 0.3s ease;
}

.auth-link a:hover::after {
    width: 100%;
}

/* Alert Styling for Auth */
.auth-form-container .alert {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: alertSlideIn 0.4s ease forwards;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form-container .alert-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.1));
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #1e8449;
}

.auth-form-container .alert-success::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.auth-form-container .alert-error {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #c0392b;
}

.auth-form-container .alert-error::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--error-color);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Premium Page Header for Auth */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.95), rgba(44, 82, 130, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-radius: 2px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive Auth */
@media (max-width: 576px) {
    .auth-form-container {
        padding: 32px 24px;
        border-radius: 20px;
        margin: 0 10px;
    }

    .auth-form .form-group input {
        padding: 14px 16px;
    }

    .auth-form .btn-primary {
        padding: 16px 24px;
    }
}

/* ===== Form Message Styles ===== */
.form-message {
    display: none;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.15));
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.15));
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.success-btn {
    animation: successPulse 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.contact-form button[type="submit"] {
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}