/* WD Quality - Main Stylesheet */

/* CSS Variables for Modern Blue-Gold Theme */
:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --accent-blue: #1d4ed8;
    --light-blue: #eff6ff;
    --primary-gold: #f59e0b;
    --secondary-gold: #fbbf24;
    --accent-gold: #d97706;
    --light-gold: #fef3c7;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.main-header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 767px) {
    .main-header {
        padding: 0.75rem 0;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.navbar-brand img {
    margin-right: 0.5rem;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.language-switcher .btn {
    margin: 0 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    padding: 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-placeholder i {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-placeholder h4 {
    color: var(--white);
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* Hero Visual Section */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.logo-showcase {
    position: relative;
    text-align: center;
}

.logo-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 8px;
    box-shadow: 
        0 0 30px rgba(245, 158, 11, 0.8),
        0 0 60px rgba(245, 158, 11, 0.6),
        0 0 90px rgba(245, 158, 11, 0.4);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: white;
    padding: 20px;
}

.logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

.logo-text h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-text p {
    color: var(--light-blue);
    font-size: 1.1rem;
    margin-bottom: 0;
}

@keyframes logoGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(245, 158, 11, 0.8),
            0 0 60px rgba(245, 158, 11, 0.6),
            0 0 90px rgba(245, 158, 11, 0.4);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(245, 158, 11, 1),
            0 0 80px rgba(245, 158, 11, 0.8),
            0 0 120px rgba(245, 158, 11, 0.6);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(245, 158, 11, 1),
        0 0 60px rgba(245, 158, 11, 0.8),
        0 0 100px rgba(245, 158, 11, 0.6),
        inset 0 0 40px rgba(245, 158, 11, 0.3);
}

@media (min-width: 768px) {
    .hero-placeholder {
        padding: 4rem 3rem;
        min-height: 400px;
        margin-top: 0;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.025em;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-primary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

@media (min-width: 768px) {
    .service-card {
        padding: 3rem 2.5rem;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-preview-section {
    padding: 5rem 0;
}

.portfolio-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .portfolio-image img {
        height: 250px;
    }
}

.portfolio-placeholder {
    width: 100%;
    height: 200px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .portfolio-placeholder {
        height: 250px;
    }
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Footer Styles */
.main-footer {
    background: var(--gradient-secondary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    opacity: 0.5;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-description {
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--light-gold);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.main-footer .contact-info p {
    margin-bottom: 0.75rem;
    color: var(--dark-gray) !important;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.main-footer .contact-info i {
    margin-right: 0.75rem;
    color: var(--primary-gold) !important;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Ensure contact info text is visible in footer */
.main-footer .footer-widget .contact-info p {
    color: var(--dark-gray) !important;
    font-weight: 500 !important;
}

.main-footer .footer-widget .contact-info i {
    color: var(--primary-gold) !important;
}

.footer-divider {
    border-color: var(--primary-gold);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--white);
    opacity: 0.9;
}

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

.footer-links-inline a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links-inline a:hover {
    color: var(--light-gold);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

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

/* Additional Page Styles */
.about-hero, .services-hero, .contact-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gold) 100%);
    padding: 4rem 0;
}

.about-image img, .hero-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.value-card, .team-card, .service-item {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover, .team-card:hover, .service-item:hover {
    transform: translateY(-5px);
}

.value-icon, .service-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.service-icon-small {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--gray);
}

.service-features li:before {
    content: "✓";
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 4rem 0;
}

.cta-section h2 {
    color: #2e4b78;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: #2e4b78;
    margin-bottom: 2rem;
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
}

.cta-section .btn-light:hover {
    background: var(--primary-gold);
    color: var(--dark-gold);
}

/* Portfolio Filter */
.portfolio-filter-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

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

.filter-buttons .btn {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
}

.filter-buttons .btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.no-projects {
    padding: 4rem 2rem;
    text-align: center;
}

.no-projects i {
    color: var(--gray);
    margin-bottom: 1rem;
}

.portfolio-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-blue);
}

.technologies {
    margin-bottom: 1rem;
}

.portfolio-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--white);
    border-radius: 2rem;
    padding: 2rem 1rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--white);
    font-size: 1.25rem;
}

.form-control {
    border-radius: 0.5rem;
    border: 2px solid var(--light-blue);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 500;
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-2px);
}

.success-message {
    background: var(--light-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-gold);
}

.error-message {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #c33;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Logo Showcase Responsive */
@media (max-width: 768px) {
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .hero-visual {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .logo-text h3 {
        font-size: 1.5rem;
    }
    
    .logo-text p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .logo-circle {
        width: 250px;
        height: 250px;
    }
}

/* Enhanced Logo Showcase Styles */
.logo-showcase-enhanced {
    position: relative;
    text-align: center;
    padding: 2rem 0;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-circle-enhanced {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logo-circle-enhanced:hover {
    transform: scale(1.05);
}

.logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-image-enhanced {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-circle-enhanced:hover .logo-image-enhanced {
    transform: scale(1.1);
}

.logo-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    z-index: -1;
}

.logo-shine {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    animation: shine 2s ease-in-out infinite;
}

.logo-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.dot-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.dot-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1s;
}

.dot-4 {
    bottom: 15%;
    right: 25%;
    animation-delay: 1.5s;
}

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

.company-name {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.company-tagline {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* Responsive Design for Enhanced Logo */
@media (max-width: 768px) {
    .logo-circle-enhanced {
        width: 180px;
        height: 180px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .company-tagline {
        font-size: 1.1rem;
    }
    
    .company-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (min-width: 1200px) {
    .logo-circle-enhanced {
        width: 260px;
        height: 260px;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .company-stats {
        gap: 2.5rem;
    }
}

/* New Hero Section Styles */
.hero-section-new {
    background: white;
    padding: 4rem 0;
    min-height: auto;
}

.hero-visual-new {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-showcase-simple {
    position: relative;
    display: inline-block;
}

.logo-container-simple {
    position: relative;
}

.logo-circle-simple {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-circle-simple:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.logo-image-simple {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content-new {
    text-align: center;
    padding: 2rem 0;
}

.hero-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle-new {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons-new {
    margin-bottom: 3rem;
}

.hero-buttons-new .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.company-info-new {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.company-name-new {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.company-tagline-new {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.company-stats-new {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.stat-item-new {
    text-align: center;
}

.stat-number-new {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.25rem;
}

.stat-label-new {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for New Hero */
@media (max-width: 768px) {
    .hero-section-new {
        padding: 2rem 0;
    }
    
    .logo-circle-simple {
        width: 150px;
        height: 150px;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
    
    .hero-buttons-new .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons-new .btn:last-child {
        margin-bottom: 0;
    }
    
    .company-stats-new {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number-new {
        font-size: 1.5rem;
    }
    
    .company-name-new {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title-new {
        font-size: 3rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.3rem;
    }
    
    .logo-circle-simple {
        width: 250px;
        height: 250px;
    }
    
    .company-stats-new {
        gap: 4rem;
    }
    
    .stat-number-new {
        font-size: 2.5rem;
    }
}

/* Enhanced About Page Image Styles */
.about-image-enhanced {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.about-image-container {
    position: relative;
    display: inline-block;
}

.about-image-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.about-image-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.about-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    background: white;
    transition: transform 0.3s ease;
}

.about-image-circle:hover .about-logo-image {
    transform: scale(1.1);
}

.about-image-border {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    z-index: -1;
}

.about-image-shine {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25%;
    height: 25%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 50%;
    animation: shineAbout 3s ease-in-out infinite;
}

/* About Page Image Animations */
@keyframes shineAbout {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Responsive Design for About Image */
@media (max-width: 768px) {
    .about-image-circle {
        width: 200px;
        height: 200px;
    }
    
    .about-image-enhanced {
        padding: 1rem 0;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .about-image-circle {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 1200px) {
    .about-image-circle {
        width: 280px;
        height: 280px;
    }
}
