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

body {
    font-family: 'Padauk', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #714B67 0%, #5a3a52 100%);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; /* let header stretch full width */
    margin: 0;       /* remove centering margins */
    padding: 0 1.5rem 0 1.25rem; /* nudge brand slightly right */
}

.logo h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #FFB84D;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

/* Make logo link not show underline and keep color */
.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo a:focus,
.logo a:hover {
    text-decoration: none;
    color: inherit;
}

/* Color only the X with an accent that matches the dark theme */
.logo h1 .accent-x {
    color: #3498db; /* OdeX X accent */
    font-size: 1.25em; /* make X slightly bigger than Ode */
    line-height: 1;
    display: inline-block;
    transform: translateY(1px); /* optical alignment with baseline */
    letter-spacing: 0;
}

.logo h1:hover {
    transform: scale(1.02);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    flex-wrap: nowrap;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-block;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 102;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #FF9900, #FFB84D);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Language Switcher */
.language-switcher .btn.secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: white !important;
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    position: relative;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.language-switcher .btn.secondary:hover {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    color: #333 !important;
    border-color: #FF9900;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.language-switcher .btn.secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn.primary {
    background-color: #714B67;
    color: white;
}

.btn.primary:hover {
    background-color: #5a3a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn.secondary {
    background-color: #FF9900;
    color: #333;
}

.btn.secondary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #714B67 0%, #5a3a52 100%);
    color: white;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 1.6vw + 0.9rem, 2.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: 0.1px;
    color: #ffffff;
    max-width: 32ch;
    text-wrap: balance;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-content .motto {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #FF9900;
    text-align: center;
    font-style: italic;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Stacked Cards in Hero */
.stacked-cards {
    position: relative;
    width: min(520px, 100%);
    height: 340px;
    margin: 0 auto;
    perspective: 1000px;
    min-height: 220px;
}

.stacked-cards .card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    border: 2px solid rgba(255, 184, 77, 0.6);
    background: #111;
    will-change: transform;
}

.stacked-cards .card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show full image without cropping */
    background: #0d0d0d; /* letterbox background */
    display: block;
}

.stacked-cards .card:nth-child(1) { transform: translateY(-6px) rotate(-2deg) scale(1.02); z-index: 6; }
.stacked-cards .card:nth-child(2) { transform: translate(14px, 14px) rotate(3deg) scale(0.98); z-index: 5; opacity: 0.95; }
.stacked-cards .card:nth-child(3) { transform: translate(-18px, 22px) rotate(-4deg) scale(0.96); z-index: 4; opacity: 0.9; }
.stacked-cards .card:nth-child(4) { transform: translate(10px, 34px) rotate(2deg) scale(0.94); z-index: 3; opacity: 0.85; }
.stacked-cards .card:nth-child(5) { transform: translate(-8px, 44px) rotate(-1deg) scale(0.92); z-index: 2; opacity: 0.8; }
.stacked-cards .card:nth-child(6) { transform: translate(6px, 52px) rotate(3deg) scale(0.90); z-index: 1; opacity: 0.75; }

/* Hover lift */
.stacked-cards:hover .card:nth-child(1) { transform: translateY(-10px) rotate(-2deg) scale(1.03); }
.stacked-cards:hover .card:nth-child(2) { transform: translate(18px, 10px) rotate(3deg) scale(0.99); }
.stacked-cards:hover .card:nth-child(3) { transform: translate(-22px, 18px) rotate(-4deg) scale(0.97); }
.stacked-cards:hover .card:nth-child(4) { transform: translate(14px, 30px) rotate(2deg) scale(0.95); }
.stacked-cards:hover .card:nth-child(5) { transform: translate(-12px, 40px) rotate(-1deg) scale(0.93); }
.stacked-cards:hover .card:nth-child(6) { transform: translate(8px, 48px) rotate(3deg) scale(0.91); }

/* Emphasize top card during auto transition */
.stacked-cards .card.active-top {
    box-shadow: 0 24px 60px rgba(255, 153, 0, 0.35);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, box-shadow 0.6s ease;
}

/* Team Grid Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .team-member h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .team-member h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .team-member p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .member-social {
        gap: 0.75rem;
    }
    
    .member-social a {
        width: 32px;
        height: 32px;
    }
    
    .stacked-cards { 
        height: auto; 
        aspect-ratio: 16 / 10; 
        min-height: 220px;
        width: min(400px, 100%);
    }
    
    /* Mobile stacked cards adjustments */
    .stacked-cards .card {
        border-width: 1px;
    }
    
    .stacked-cards .card:nth-child(1) { transform: translateY(-4px) rotate(-1deg) scale(1.01); }
    .stacked-cards .card:nth-child(2) { transform: translate(10px, 10px) rotate(2deg) scale(0.99); }
    .stacked-cards .card:nth-child(3) { transform: translate(-12px, 16px) rotate(-3deg) scale(0.97); }
    .stacked-cards .card:nth-child(4) { transform: translate(8px, 24px) rotate(1deg) scale(0.95); }
    .stacked-cards .card:nth-child(5) { transform: translate(-6px, 32px) rotate(-1deg) scale(0.93); }
    .stacked-cards .card:nth-child(6) { transform: translate(4px, 38px) rotate(2deg) scale(0.91); }
    
    .stacked-cards .fallback-image { display: none; }
}

/* Extra small phones */
@media (max-width: 480px) {
    .team-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .team-member {
        padding: 1.25rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 0.75rem;
    }
    
    .team-member h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .team-member h4 {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .team-member p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .member-social {
        gap: 0.5rem;
    }
    
    .member-social a {
        width: 28px;
        height: 28px;
    }
}

/* Fallback image style */
.stacked-cards .fallback-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0d0d0d;
    border-radius: 14px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat {
    text-align: center;
    flex: 1;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF9900;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose OdeX Section */
.why-choose {
    padding: 4rem 0;
    background-color: #f0f2f5;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.why-choose p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 3rem;
    color: #714B67;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}


/* Features Preview Section */
.features-preview {
    padding: 4rem 0;
    background-color: #f0f2f5;
}

.features-preview .section-header {
    margin-bottom: 3rem;
}

/* Why Outto Section */
.why-odoo {
    padding: 4rem 0;
    background-color: white;
}

.why-odoo h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #714B67;
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(24px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #714B67;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    background: rgba(113, 75, 103, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #FF9900;
}

.highlight {
    display: block;
    color: #714B67;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.highlight:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #714B67 0%, #5a3a52 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Comparison Preview */
.comparison-preview {
    padding: 4rem 0;
    background-color: #f0f2f5;
    text-align: center;
}

.comparison-preview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.comparison-preview p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Preview */
.features-preview {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.features-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #714B67;
}

.features-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #714B67;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF9900;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FF9900;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF9900;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Contact info styling in footer */
.footer-section .contact-info {
    background: transparent;
    padding: 0;
}

.footer-section .contact-info p {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-section .contact-info p:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FF9900;
}

/* Extra small mobile stacked cards */
@media (max-width: 480px) {
    .stacked-cards {
        width: min(320px, 100%);
        min-height: 180px;
    }
    
    .stacked-cards .card:nth-child(1) { transform: translateY(-3px) rotate(-1deg) scale(1.005); }
    .stacked-cards .card:nth-child(2) { transform: translate(8px, 8px) rotate(1deg) scale(0.995); }
    .stacked-cards .card:nth-child(3) { transform: translate(-10px, 14px) rotate(-2deg) scale(0.985); }
    .stacked-cards .card:nth-child(4) { transform: translate(6px, 20px) rotate(1deg) scale(0.975); }
    .stacked-cards .card:nth-child(5) { transform: translate(-4px, 26px) rotate(-1deg) scale(0.965); }
    .stacked-cards .card:nth-child(6) { transform: translate(3px, 30px) rotate(1deg) scale(0.955); }
}

/* Ultra small screens - show fallback */
@media (max-width: 320px) {
    .stacked-cards .fallback-image { display: block !important; }
    .stacked-cards .card { display: none !important; }
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* About Page Styles */
.what-is-odoo {
    padding: 4rem 0;
    background-color: white;
}

.what-is-odoo .container {
    max-width: 1000px;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #714B67;
}

.text-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    color: #714B67;
}

.text-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

.text-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.text-content ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.benefits {
    padding: 4rem 0;
    background-color: #f0f2f5;
}

.benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #714B67;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: #714B67;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Comparison Page Styles */
.comparison-table-section {
    padding: 4rem 0;
    background-color: white;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table thead {
    background-color: #714B67;
    color: white;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background-color: #f0f2f5;
}

.check {
    color: #28a745;
    font-size: 1.2rem;
}

.cross {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Features Page Styles */
.features-grid-section {
    padding: 4rem 0;
    background-color: white;
}

.features-grid-section .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.integration {
    padding: 4rem 0;
    background-color: #f0f2f5;
    text-align: center;
}

.integration h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.integration p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.integration-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.module {
    background-color: #714B67;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.center {
    grid-column: 2;
    grid-row: 2;
    background-color: #FF9900;
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
}

.manufacturing {
    grid-column: 1;
    grid-row: 1;
}

.inventory {
    grid-column: 3;
    grid-row: 1;
}

.sales {
    grid-column: 1;
    grid-row: 3;
}

.hr {
    grid-column: 3;
    grid-row: 3;
}

.accounting {
    grid-column: 2;
    grid-row: 1;
}

.pos {
    grid-column: 2;
    grid-row: 3;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 4rem 0;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #714B67;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Padauk', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #714B67;
    box-shadow: 0 0 0 2px rgba(113, 75, 103, 0.2);
}

.contact-info {
    padding: 4rem 0;
    background-color: #f0f2f5;
}

.contact-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #714B67;
}

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

.contact-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item > i {
    font-size: 2.5rem;
    color: #714B67;
    margin-bottom: 1rem;
}

/* Inline phone icon next to numbers */
.contact-item p i {
    font-size: 1rem;
    color: #714B67;
    margin-right: 0.5rem;
    vertical-align: -1px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats .stat {
        margin-bottom: 1rem;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .features-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .integration-diagram {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .module,
    .center {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    header .container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    nav ul {
        flex-direction: column;
        background: linear-gradient(135deg, rgba(113, 75, 103, 0.95), rgba(90, 58, 82, 0.95));
        backdrop-filter: blur(20px);
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        padding: 1.5rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 15px 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0.3rem 0;
        width: 100%;
    }
    
    nav ul li a {
        padding: 1rem 1.25rem;
        border-radius: 12px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .language-switcher .btn.secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 110px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    nav.show {
        display: block;
    }
    
    /* Statistics responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* Industry solutions responsive */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Company Showcase responsive */
    .company-showcase h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .company-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .company-logo {
        flex: none;
    }
    
    .company-logo img {
        max-width: 150px;
        max-height: 100px;
    }
    
    .company-info {
        text-align: center;
    }
    
    .company-info h3 {
        font-size: 1.5rem;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .company-stats .stat {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .slide {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
    
    /* Security responsive */
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Team responsive */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-photo i {
        font-size: 2rem;
    }
    
    /* Values responsive */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    /* FAQ responsive */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    /* Support responsive */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 2rem 1.5rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
    }
    
    .support-icon i {
        font-size: 1.5rem;
    }
}

/* Animation for feature cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card.in-view {
    animation: fadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background: linear-gradient(135deg, #714B67 0%, #5a3a52 100%);
    color: white;
    text-align: center;
}

.statistics h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF9900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #714B67;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FF9900;
    font-weight: bold;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #714B67;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
}

.rating {
    color: #FF9900;
}

.rating i {
    margin-left: 0.2rem;
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.industry-solutions h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.industry-solutions > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.industry-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #FF9900;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.industry-card i {
    font-size: 3rem;
    color: #714B67;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.industry-card:hover i {
    color: #FF9900;
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
}

/* Company Showcase Section */
.company-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #714B67 0%, #5a3a52 100%);
    text-align: center;
}

.company-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.showcase-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    padding: 3rem;
    background: linear-gradient(135deg, #6d5470 0%, #714B67 100%);
    min-height: 400px;
    animation: slideIn 0.8s ease-in-out;
    border: 2px solid #FFB84D;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.25);
}

.slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.company-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.company-logo {
    flex: 0 0 200px;
    text-align: center;
}

.company-logo img {
    width: 200px;
    height: 140px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: inline-block;
}

.company-logo img:hover {
    transform: scale(1.05);
}

.company-info {
    flex: 1;
    text-align: left;
}

.company-info h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company-type {
    font-size: 1.1rem;
    color: #FFB84D;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.company-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-stats .stat {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.35);
    transition: transform 0.3s ease;
}

.company-stats .stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.slider-controls {
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF9900;
    transform: scale(1.2);
}

.dot:hover {
    background: #FFB84D;
    transform: scale(1.1);
}

/* Company Team Section */
.company-team {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

#preloader img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

#preloader .message {
    margin-top: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#preloader .dot {
    display: inline-block;
    width: 0.5ch;
    text-align: left;
    animation: dotPulse 1s infinite ease-in-out;
}

#preloader .dot:nth-child(2) { animation-delay: 0.2s; }
#preloader .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 20% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
    100% { opacity: 0; transform: translateY(0); }
}

.company-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.company-team > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #ffffff;
    padding: 2.25rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: #ffd699;
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.15);
}

.member-photo {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 50% 35%, #ffffff 0%, #ffffff 55%, #ffe6bf 56%, #fff 58%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

/* Ensure profile images fill the circular avatar nicely */
.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
    display: block;
    border-radius: 50%;
}

/* Specific alignment for U Ye Lin Ko's profile image */
.member-photo img[alt="U Ye Lin Ko"] {
    object-position: 50% 25%;
}

.team-member:hover .member-photo {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.member-photo i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.15rem;
    color: #2c2c2c;
    margin-bottom: 0.35rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.team-member h4 {
    font-size: 0.9rem;
    color: #b36b00;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.team-member p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #714B67;
    text-decoration: none;
    transition: all 0.25s ease;
}

.member-social a:hover {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    color: white;
    transform: translateY(-3px);
}

/* Company Values Section */
.company-values {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.company-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #714B67;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #FF9900;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #714B67, #5a3a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #714B67;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #714B67;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #714B67, #5a3a52);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.support-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #714B67;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #FF9900;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.3);
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-card h3 {
    font-size: 1.3rem;
    color: #714B67;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-contact {
    background: rgba(113, 75, 103, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #FF9900;
}

.support-contact span {
    color: #714B67;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.support-contact i {
    color: #FF9900;
}

/* Toast Notification */
.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    background: #2b2b2b;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 99999;
    font-weight: 600;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success { background: #1e7e34; }
.toast.error { background: #b02a37; }

/* Security & Compliance Section */
.security-compliance {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.security-compliance h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #714B67;
}

.security-compliance > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.security-item {
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: #FF9900;
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.1);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #714B67, #5a3a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.security-item:hover .security-icon {
    background: linear-gradient(135deg, #FF9900, #FFB84D);
    transform: scale(1.1);
}

.security-icon i {
    font-size: 2rem;
    color: white;
}

.security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.security-item p {
    color: #666;
    line-height: 1.6;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    background: rgba(113, 75, 103, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(113, 75, 103, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 153, 0, 0.1);
    border-color: #FF9900;
    transform: translateY(-2px);
}

.badge i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.badge span {
    color: #714B67;
    font-weight: 600;
    font-size: 0.95rem;
}