:root {
    /* Muted pastel color scheme */
    --dark-bg: #2c2c38;
    --darker-bg: #1e1e28;
    --primary-blue: #7ba0c9;
    --light-blue: #a7c6e5;
    --gold-accent: #e6c787;
    --light-gold: #f0deb1;
    --muted-pink: #d6b3c0;
    --muted-green: #a4c2a5;
    --text-light: #e8e6ed;
    --text-gray: #aeadb3;
    
    /* Shadows and shapes */
    --soft-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    --sharp-edge: 2px;
    --curved-radius: 12px;
    --button-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

/* Geometric abstract shapes */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(123, 160, 201, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(230, 199, 135, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(214, 179, 192, 0.05) 0%, transparent 20%);
    z-index: -1;
}

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

/* Header with clay-like appearance */
header {
    background-color: var(--darker-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: var(--soft-shadow);
    border-bottom: 1px solid rgba(123, 160, 201, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 10px;
}

.logo span {
    color: var(--primary-blue);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30%;
    height: 3px;
    background-color: var(--gold-accent);
    border-radius: var(--curved-radius);
}

.company {
    margin-left: 15px;
    font-size: 14px;
    color: var(--text-gray);
    border-left: 1px solid rgba(174, 173, 179, 0.3);
    padding-left: 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
    border-radius: var(--curved-radius);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Matte finish buttons */
.btn {
    background-color: var(--primary-blue);
    color: var(--darker-bg);
    padding: 12px 24px;
    border: none;
    border-radius: var(--button-radius);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
    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.1), transparent);
    transition: left 0.7s;
}

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

.btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: rgba(123, 160, 201, 0.1);
    color: var(--light-blue);
}

.btn-gold {
    background-color: var(--gold-accent);
    color: var(--darker-bg);
}

.btn-gold:hover {
    background-color: var(--light-gold);
}

/* Hero Section with geometric elements */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(to right, rgba(30, 30, 40, 0.9), rgba(30, 30, 40, 0.7)), url('../img/0016.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 160, 201, 0.08), transparent 70%);
    transform: rotate(-30deg);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(230, 199, 135, 0.08), transparent 70%);
    transform: rotate(20deg);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    border-radius: var(--curved-radius);
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section with matte finish cards */
.services {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(123, 160, 201, 0.1);
    top: -15px;
    left: -20px;
    z-index: -1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--curved-radius);
}

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

.service-card {
    background-color: var(--darker-bg);
    border-radius: var(--curved-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--soft-shadow);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--muted-pink));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

.card-img {
    height: 200px;
    background-color: rgba(30, 30, 40, 0.8);
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 30px;
    position: relative;
}

.card-content::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(123, 160, 201, 0.05);
    top: 15px;
    right: 15px;
}

.card-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 12px;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold-accent);
    border-radius: var(--curved-radius);
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* About Section with clay-like texture */
.about {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(123, 160, 201, 0.05), transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(230, 199, 135, 0.05), transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    color: var(--text-light);
}

.about-text h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    bottom: -12px;
    left: 0;
    border-radius: var(--curved-radius);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-gray);
    position: relative;
    padding-left: 15px;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 3px;
    height: 70%;
    background-color: rgba(123, 160, 201, 0.3);
    border-radius: var(--curved-radius);
}

.about-image {
    flex: 1;
    border-radius: var(--curved-radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: rgba(230, 199, 135, 0.2);
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 45px;
    height: 45px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: rgba(123, 160, 201, 0.2);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Form Styles with matte finish and soft curves */
.form-section {
    padding: 150px 0 80px;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 160, 201, 0.05), transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.form-container {
    background-color: var(--darker-bg);
    border-radius: var(--curved-radius);
    padding: 50px;
    box-shadow: var(--soft-shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--muted-pink), var(--gold-accent));
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    bottom: -10px;
    left: 20%;
    border-radius: var(--curved-radius);
}

.form-header p {
    color: var(--text-gray);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-col {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 15px;
    position: relative;
    padding-left: 12px;
}

label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--gold-accent);
    border-radius: 50%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--button-radius);
    border: 1px solid rgba(123, 160, 201, 0.2);
    background-color: rgba(44, 44, 56, 0.5);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(123, 160, 201, 0.1);
}

.upload-btn {
    display: inline-block;
    padding: 12px 18px;
    background-color: rgba(123, 160, 201, 0.1);
    color: var(--primary-blue);
    border-radius: var(--button-radius);
    cursor: pointer;
    border: 1px dashed var(--primary-blue);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.upload-btn:hover {
    background-color: rgba(123, 160, 201, 0.15);
}

.radio-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.radio-option:hover {
    transform: translateX(3px);
}

.radio-option input {
    margin-right: 10px;
    cursor: pointer;
}

/* Page Content */
.page-content {
    padding: 150px 0 80px;
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 199, 135, 0.05), transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: rgba(123, 160, 201, 0.05);
    top: -40px;
    left: 50%;
    transform: translateX(-150px);
    z-index: -1;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--curved-radius);
}

.page-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* Contact Page */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.contact-method {
    background-color: var(--darker-bg);
    padding: 35px;
    text-align: center;
    border-radius: var(--curved-radius);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold-accent));
    opacity: 0.7;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-method h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--gold-accent);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--curved-radius);
}

.contact-method p {
    color: var(--text-gray);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--muted-pink), var(--gold-accent), var(--muted-green));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--gold-accent);
    bottom: 0;
    left: 0;
    border-radius: var(--curved-radius);
}

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

.footer-column ul li {
    margin-bottom: 12px;
    position: relative;
    transition: transform 0.2s ease;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a {
    color: var(--text-gray);
}
    
.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue);
}

.btn-social {
    position: relative;
    padding-left: 50px;
}

.btn-social i {
    position: absolute;
    left: 20px;
}

#google-login {
    border-color: #DB4437;
    color: #DB4437;
}

#google-login:hover {
    background-color: rgba(219, 68, 55, 0.1);
}

#facebook-login {
    border-color: #4267B2;
    color: #4267B2;
}

#facebook-login:hover {
    background-color: rgba(66, 103, 178, 0.1);
}

#apple-login {
    border-color: #A2AAAD;
    color: #A2AAAD;
}

#apple-login:hover {
    background-color: rgba(162, 170, 173, 0.1);
}

.password-toggle:hover {
    color: var(--primary-blue);
}
    
/* Login Page Styles */
.login-container {
    /* Changed from grid to flex for better centering */
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.login-card {
    background-color: var(--darker-bg);
    border-radius: var(--curved-radius);
    padding: 40px;
    box-shadow: var(--soft-shadow);
    /* Set a max-width to control the card size */
    max-width: 500px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: var(--text-light);
    font-size: 28px;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-gray);
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 14px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 160, 201, 0.2);
    border-radius: var(--curved-radius);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(123, 160, 201, 0.2);
}

.password-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--primary-blue);
}

.forgot-password {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    margin-bottom: 15px;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.login-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.login-divider span {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background-color: var(--darker-bg);
    color: var(--text-gray);
    font-size: 14px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-social img {
    width: 20px;
    height: 20px;
}

.signup-prompt {
    text-align: center;
    margin-top: 30px;
    color: var(--text-gray);
    font-size: 14px;
}

.signup-prompt a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.signup-prompt a:hover {
    text-decoration: underline;
}

.login-benefits {
    padding: 40px;
    background-color: var(--darker-bg);
    border-radius: var(--curved-radius);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
}

.login-benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold-accent));
}

.login-benefits h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-icon {
    flex: 0 0 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(123, 160, 201, 0.1);
    border-radius: 50%;
    color: var(--primary-blue);
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-text h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 18px;
}

.benefit-text p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.password-toggle:hover {
    color: var(--primary-blue);
}

/* Responsive styles for login page */
@media (max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
    }
    
    .login-benefits {
        order: -1;
    }
}

@media (max-width: 768px) {
    .login-container {
        margin: 30px 0;
    }
    
    .login-card, 
    .login-benefits {
        padding: 30px;
    }
}
