/* Complete CSS for WebSolutions Website - All Pages */
/* Including stylish website symbols and premium features */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5be3;
    --secondary-color: #ff6b6b;
    --accent-color: #6a11cb;
    --premium-gold: linear-gradient(45deg, #FFD700, #FFA500);
    --dark-bg: #121212;
    --light-bg: #f9f9f9;
    --text-dark: #333;
    --text-light: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== WEBSITE SYMBOLS & BRANDING ===== */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(45, 91, 227, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.2) 50%);
}

.logo-icon i {
    position: relative;
    z-index: 1;
}

.logo span {
    color: var(--secondary-color);
}

/* Page specific symbols */
.symbol-hero {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.symbol-section {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.symbol-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

body.dark-theme header {
    background-color: #1e1e1e;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark-theme .nav-links a {
    color: #e0e0e0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a i {
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    background: none;
    border: none;
}

/* ===== SETTINGS BAR ===== */
.settings-bar {
    position: fixed;
    right: -320px;
    top: 0;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 25px;
    overflow-y: auto;
}

body.dark-theme .settings-bar {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

.settings-bar.active {
    right: 0;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

body.dark-theme .settings-header {
    border-bottom-color: #333;
}

.settings-header h3 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-group {
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

body.dark-theme .settings-group {
    background-color: #2a2a2a;
}

.settings-group h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.dark-theme .settings-group h4 {
    color: #e0e0e0;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

body.dark-theme .setting-item {
    border-bottom-color: #444;
}

.setting-item:last-child {
    border-bottom: none;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-premium {
    background: var(--premium-gold);
    color: #333;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 15px;
}

.btn-premium:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== HERO SECTIONS ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    position: relative;
}

/* Page specific hero styles */
.about-hero,
.services-hero,
.portfolio-hero,
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

body.dark-theme .section-title h2 {
    color: var(--primary-color);
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

body.dark-theme .section-title p {
    color: #b0b0b0;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background-color: #fff;
}

body.dark-theme .features {
    background-color: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

body.dark-theme .feature-card {
    background-color: #2a2a2a;
    border-color: #444;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

body.dark-theme .feature-card h3 {
    color: #e0e0e0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background-color: #f0f7ff;
}

body.dark-theme .testimonials {
    background-color: #1f2a40;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #e8f1ff;
}

body.dark-theme .testimonial-card {
    background-color: #2a2a2a;
    border-color: #444;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: #555;
}

body.dark-theme .testimonial-text {
    color: #ccc;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

body.dark-theme .author-info h4 {
    color: #e0e0e0;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

body.dark-theme .author-info p {
    color: #aaa;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    padding: 160px 0 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

body.dark-theme .about-text p {
    color: #ccc;
}

.about-image {
    background: linear-gradient(135deg, #f0f7ff, #e3ecff);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark-theme .about-image {
    background: linear-gradient(135deg, #2a2a2a, #1f2a40);
}

.team-section {
    padding: 100px 0;
    background-color: #f0f7ff;
}

body.dark-theme .team-section {
    background-color: #1f2a40;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid #e8f1ff;
}

body.dark-theme .team-member {
    background-color: #2a2a2a;
    border-color: #444;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 20px rgba(45, 91, 227, 0.3);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

body.dark-theme .team-member h3 {
    color: #e0e0e0;
}

.team-member p {
    color: #777;
    margin-bottom: 5px;
}

body.dark-theme .team-member p {
    color: #aaa;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.services-list {
    padding: 100px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-item:nth-child(even) .service-content {
    order: 2;
}

.service-item:nth-child(even) .service-image {
    order: 1;
}

.service-content h3 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.service-content ul {
    list-style: none;
    margin: 25px 0 30px;
}

.service-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

body.dark-theme .service-content ul li {
    color: #ccc;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-image {
    background: linear-gradient(135deg, #f0f7ff, #e3ecff);
    height: 350px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

body.dark-theme .service-image {
    background: linear-gradient(135deg, #2a2a2a, #1f2a40);
}

.service-image:hover {
    transform: scale(1.05);
}

/* ===== PORTFOLIO PAGE STYLES ===== */
.portfolio-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.portfolio-grid {
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

body.dark-theme .portfolio-item {
    background-color: #2a2a2a;
    border-color: #444;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.1) 50%);
}

.portfolio-content {
    padding: 35px;
}

.portfolio-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.portfolio-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

body.dark-theme .portfolio-content p {
    color: #ccc;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.contact-content {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.9rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-detail i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-detail h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

body.dark-theme .contact-detail h4 {
    color: #e0e0e0;
}

.contact-detail p {
    color: #666;
}

body.dark-theme .contact-detail p {
    color: #aaa;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.9rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

body.dark-theme .contact-form label {
    color: #e0e0e0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
    background: #f9f9f9;
}

body.dark-theme .contact-form input,
body.dark-theme .contact-form textarea,
body.dark-theme .contact-form select {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 91, 227, 0.1);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* ===== AUTH PAGES STYLES ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

body.dark-theme .auth-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.auth-box {
    background-color: white;
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

body.dark-theme .auth-box {
    background-color: #2a2a2a;
}

.auth-box:hover {
    transform: translateY(-5px);
}

.auth-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.auth-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
}

.auth-header p {
    opacity: 0.9;
    position: relative;
}

.auth-form {
    padding: 50px 30px;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

body.dark-theme .auth-form .form-group label {
    color: #e0e0e0;
}

.auth-form .form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f9f9f9;
}

body.dark-theme .auth-form .form-group input {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 91, 227, 0.1);
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.auth-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;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 91, 227, 0.3);
}

.auth-links {
    text-align: center;
    margin-top: 25px;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    color: #777;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #eee;
}

body.dark-theme .auth-divider::before,
body.dark-theme .auth-divider::after {
    background-color: #444;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.social-auth {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    background: white;
}

body.dark-theme .social-btn {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-btn.facebook:hover {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-btn.google:hover {
    background-color: #DB4437;
    color: white;
    border-color: #DB4437;
}

/* ===== PREMIUM PAGE STYLES ===== */
.premium-plans {
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

body.dark-theme .plan-card {
    background-color: #2a2a2a;
}

.plan-card.featured {
    border: 2px solid #FFD700;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.plan-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--premium-gold);
    color: #333;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plan-price span {
    font-size: 1rem;
    color: #777;
    align-self: flex-end;
    margin-bottom: 10px;
}

body.dark-theme .plan-price span {
    color: #aaa;
}

.plan-features {
    list-style: none;
    margin: 35px 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #555;
}

body.dark-theme .plan-features li {
    color: #ccc;
    border-bottom-color: #444;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i.fa-check {
    color: #4CAF50;
}

.plan-features li i.fa-times {
    color: #f44336;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(48, 66, 205);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(45, 91, 227, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
}

/* ===== SETTINGS PAGE SPECIFIC STYLES ===== */

/* Settings Tabs */
.settings-tab {
    display: none;
    animation: fadeIn 0.5s ease;
}

.settings-tab.active {
    display: block;
}

.setting-nav {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 10px;
    cursor: pointer;
}

.setting-nav:hover,
.setting-nav.active {
    background-color: rgba(45, 91, 227, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dark-theme .setting-nav {
    color: #e0e0e0;
}

.dark-theme .setting-nav:hover,
.dark-theme .setting-nav.active {
    background-color: rgba(45, 91, 227, 0.2);
}

.setting-nav i {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

/* Theme Color Buttons */
.theme-color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-color-btn:hover {
    transform: scale(1.1);
}

.theme-color-btn.active {
    border-color: white;
    box-shadow: 0 0 0 2px var(--primary-color);
    transform: scale(1.1);
}

/* Settings Quick Actions */
.settings-quick-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.dark-theme .settings-quick-actions {
    border-top-color: #444;
}

.settings-quick-actions h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dark-theme .settings-quick-actions h4 {
    color: #e0e0e0;
}

.settings-quick-actions .btn {
    margin-bottom: 10px;
    width: 100%;
    justify-content: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff6b6b;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #4CAF50;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Print Styles */
@media print {
    .settings-bar,
    .menu-toggle,
    .btn-premium,
    .social-icons {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: 50px 0 !important;
    }
    
    .symbol-hero {
        display: none !important;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero h1,
    .about-hero h1,
    .services-hero h1,
    .portfolio-hero h1,
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .contact-grid,
    .service-item {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-item:nth-child(even) .service-content,
    .service-item:nth-child(even) .service-image {
        order: unset;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    body.dark-theme .nav-links {
        background-color: #1e1e1e;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero,
    .about-hero,
    .services-hero,
    .portfolio-hero,
    .contact-hero {
        padding: 140px 0 60px;
    }
    
    .hero h1,
    .about-hero h1,
    .services-hero h1,
    .portfolio-hero h1,
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p,
    .about-hero p,
    .services-hero p,
    .portfolio-hero p,
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .features,
    .testimonials,
    .premium-plans,
    .services-list,
    .portfolio-grid,
    .contact-content,
    .team-section,
    .about-content {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-bar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 576px) {
    .hero h1,
    .about-hero h1,
    .services-hero h1,
    .portfolio-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .hero p,
    .about-hero p,
    .services-hero p,
    .portfolio-hero p,
    .contact-hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .feature-card,
    .testimonial-card,
    .plan-card,
    .team-member,
    .portfolio-item {
        padding: 35px 25px;
    }
    
    .symbol-hero {
        font-size: 3rem;
    }
    
    .symbol-section {
        font-size: 2.8rem;
    }
    
    .auth-box {
        width: 95%;
    }
    
    .auth-form {
        padding: 40px 25px;
    }
    
    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .setting-item > div {
        width: 100%;
    }
    
    .toggle-switch {
        align-self: flex-end;
    }
}
/* ===== BACKGROUND PICTURES ===== */

/* Home Page Backgrounds */
body {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body.dark-theme {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80&brightness=0.3');
}

/* Hero sections overlay */
.hero {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(45, 91, 227, 0.85) 100%);
}

/* Features section background */
.features {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

body.dark-theme .features::before {
    background: rgba(26, 26, 26, 0.9);
}

/* Testimonials background */
.testimonials {
    background-image: url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 247, 255, 0.9);
}

body.dark-theme .testimonials::before {
    background: rgba(31, 42, 64, 0.9);
}

/* About page specific */
.about-hero {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(45, 91, 227, 0.85) 100%),
                url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.about-content {
    background-image: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

body.dark-theme .about-content::before {
    background: rgba(26, 26, 26, 0.95);
}

.team-section {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 247, 255, 0.95);
}

body.dark-theme .team-section::before {
    background: rgba(31, 42, 64, 0.95);
}

/* Services page specific */
.services-hero {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.85) 0%, rgba(45, 91, 227, 0.85) 100%),
                url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.services-list {
    background-image: url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

body.dark-theme .services-list::before {
    background: rgba(26, 26, 26, 0.95);
}

/* Portfolio page specific */
.portfolio-hero {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(255, 107, 107, 0.85) 100%),
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.portfolio-grid {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.portfolio-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

body.dark-theme .portfolio-grid::before {
    background: rgba(26, 26, 26, 0.95);
}

/* Contact page specific */
.contact-hero {
    background: linear-gradient(135deg, rgba(45, 91, 227, 0.85) 0%, rgba(76, 175, 80, 0.85) 100%),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.contact-content {
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

body.dark-theme .contact-content::before {
    background: rgba(26, 26, 26, 0.95);
}

/* Premium page specific */
.premium-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85) 0%, rgba(255, 165, 0, 0.85) 100%),
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.premium-plans {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.premium-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
}

body.dark-theme .premium-plans::before {
    background: rgba(26, 26, 26, 0.95);
}

/* Settings page specific */
.settings-hero {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.85) 0%, rgba(45, 91, 227, 0.85) 100%),
                url('https://images.unsplash.com/photo-1633356122544-f134324a6cee?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Footer background */
footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%),
                url('https://images.unsplash.com/photo-1519451241324-20b4ea2c4220?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Ensure content stays above backgrounds */
.hero > .container,
.about-hero > .container,
.services-hero > .container,
.portfolio-hero > .container,
.contact-hero > .container,
.premium-hero > .container,
.features > .container,
.testimonials > .container,
.about-content > .container,
.team-section > .container,
.services-list > .container,
.portfolio-grid > .container,
.contact-content > .container,
.premium-plans > .container,
footer > .container {
    position: relative;
    z-index: 1;
}

/* Adjust existing hero backgrounds */
.hero::after,
.about-hero::after,
.services-hero::after,
.portfolio-hero::after,
.contact-hero::after,
.premium-hero::after {
    display: none;
}
