/* CSS Variables for consistent color scheme */
:root {
    --accent-color: #2575fc;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-primary: #23272a;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --input-bg: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Dark mode variables */
body.dark {
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --input-bg: #3a3a3a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-primary);
}

/* Navbar Styles - Removed to prevent conflicts with navbar.php */
/* All navbar styles are now handled in navbar.php for consistency */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
header h1 {
    margin: 0 20px;
    font-size: 2rem;
    letter-spacing: 2px;
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #222;
    font-weight: bold;
}
.hero {
    background: #e9ecef;
    padding: 60px 20px 40px 20px;
    text-align: center;
}
.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.cta {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}
.cta:hover {
    background: #0056b3;
}
#portfolio {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
.portfolio-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.portfolio-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 20px;
    width: 280px;
    text-align: center;
}
.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}
#contact {
    background: #fff;
    max-width: 500px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#contact input, #contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
#contact button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
#contact button:hover {
    background: #0056b3;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 10px 10px 10px;
    margin-top: 40px;
    font-size: 0.95rem;
}
footer small {
    display: block;
    margin-top: 10px;
    color: #ccc;
}
.toggle-theme {
    position: fixed;
    top: 18px;
    right: 18px;
    background: #eee;
    color: #23272a;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.2s, color 0.2s;
}
body.dark {
    background: #181a1b;
    color: #f1f1f1;
}
body.dark header, body.dark #contact, body.dark .admin-form, body.dark .admin-list, body.dark .login-form {
    background: #23272a;
    color: #f1f1f1;
}
body.dark .portfolio-item {
    background: #23272a;
    color: #f1f1f1;
}
body.dark footer {
    background: #111;
    color: #ccc;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--bg-color);
    color: var(--text-primary);
    padding: 40px 20px 20px 20px;
    margin-top: 60px;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-cta {
    text-align: center;
    margin-bottom: 30px;
}

.footer-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.4;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-email {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(37, 117, 252, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--accent-color);
    background: rgba(37, 117, 252, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-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;
}

.footer-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-4px) scale(1.02);
    color: #fff;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.footer-btn:hover::before {
    left: 100%;
}

.footer-btn span {
    font-size: 1.1rem;
}

.footer-copyright {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-copyright span {
    margin-right: 8px;
    color: #ff0000;
}

.footer-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-link:hover {
    color: var(--text-primary);
}

/* Dark theme for footer */
body.dark .modern-footer {
    background: var(--bg-color);
}

body.dark .footer-btn {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
}

body.dark .footer-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive footer */
@media (max-width: 768px) {
    .modern-footer {
        padding: 30px 15px 15px 15px;
    }
    
    .footer-cta h3 {
        font-size: 1.2rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
body.dark .cta, body.dark #contact button {
    background: #0056b3;
    color: #fff;
}
body.dark .cta:hover, body.dark #contact button:hover {
    background: #007bff;
}
body.dark .toggle-theme {
    background: #23272a;
    color: #f1f1f1;
}
h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a;
}
p {
    color: #333;
}
a {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #6a11cb;
    text-decoration: underline;
}
.quick-card-title {
    color: #23272a;
}
.plan-title {
    color: #23272a;
}
.portfolio-item h3 {
    color: #23272a;
}
.plan-price {
    color: #6a11cb;
}
body.dark .quick-card-title {
    color: #f1f1f1;
}
body.dark .plan-title {
    color: #f1f1f1;
}
body.dark .portfolio-item h3 {
    color: #f1f1f1;
}
body.dark .plan-price {
    color: #fff;
}
@media (max-width: 700px) {
    header, #portfolio {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        padding: 0 10px;
    }
    .portfolio-list {
        flex-direction: column;
        align-items: center;
    }
    .portfolio-item {
        width: 95%;
    }
}

/* Contact Page Styles */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 50px;
    color: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #0056b3;
}

.contact-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telegram-btn {
    background: #0088cc;
    color: #fff;
}

.campaign-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Dark Mode Support for Contact Page */
body.dark .contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body.dark .contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .contact-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 80px 0 30px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
} 

/* Contact section styles */
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    max-width: 1000px;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.contact-form-container {
    width: 100%;
    max-width: 900px;
}

/* Contact form styles */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-form h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.contact-form p {
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Form grid layout for desktop */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.contact-form .form-group {
    margin-bottom: 0;
    position: relative;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
}

.contact-form label::after {
    content: ' *';
    color: #e53e3e;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #2d3748;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    position: relative;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    z-index: 2;
}

.submit-btn::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.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Success/Error message styles */
.contact-form-container .success-message,
.contact-form-container .error-message {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    animation: slideInDown 0.5s ease;
    position: relative;
    z-index: 2;
}

.contact-form-container .success-message {
    color: #22543d;
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    border: 2px solid #48bb78;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.2);
}

.contact-form-container .error-message {
    color: #742a2a;
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #f56565;
    box-shadow: 0 4px 15px rgba(245, 101, 101, 0.2);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-cta {
    text-align: center;
    max-width: 800px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-cta h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    color: white;
}

.campaign-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Dark mode adjustments */
body.dark .contact-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

body.dark .contact-form {
    background: rgba(45, 55, 72, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark .contact-form h3 {
    color: #ffffff;
}

body.dark .contact-form p {
    color: #a0aec0;
}

body.dark .contact-form label {
    color: #e2e8f0;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a5568;
    color: #ffffff;
}

body.dark .contact-form input:focus,
body.dark .contact-form textarea:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

body.dark .contact-form input::placeholder,
body.dark .contact-form textarea::placeholder {
    color: #a0aec0;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-content {
        padding: 0;
        max-width: 100%;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-form {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .contact-form h3 {
        font-size: 1.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    /* Mobile: Single column layout */
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row.full-width {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 10px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .contact-cta h2 {
        font-size: 1.6rem;
    }
    
    /* Mobile: Reduce gap between form rows */
    .form-row {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .cta-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
} 