/* CSS Variables for Brand Colors */
:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2d2d2d;
    --gold-primary: #d4af37;
    --gold-secondary: #f4e082;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-light: #6c757d;
    
    /* Typography */
    --font-primary: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
    --font-heading: 'Century Gothic', 'CenturyGothic', AppleGothic, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Utility Classes */
.text-gold {
    color: var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
}

.bg-black {
    background-color: var(--primary-black) !important;
}

/* Button Styles */
.btn {
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-black);
    border-color: var(--gold-primary);
    font-weight: 600;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Navigation Styles */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all var(--transition-medium);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}



.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all var(--transition-medium);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-primary) !important;
    background: rgba(212, 175, 55, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--gold-primary) !important;
    background: rgba(212, 175, 55, 0.2);
}

.language-switcher .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    min-width: 60px;
}

.language-switcher .btn.active {
    background: var(--gold-primary);
    color: var(--primary-black);
    border-color: var(--gold-primary);
}

.flag-icon {
    font-size: 1.1em;
    display: inline-block;
    margin-right: 0.3rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Styles */
.section-title {
    color: var(--primary-black);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--light-gray);
    padding: var(--section-padding);
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-light);
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.service-card h4 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Trust Section */
.trust-section {
    background: var(--primary-black);
    color: var(--white);
    padding: var(--section-padding);
}

.trust-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.experience-badge {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 2px solid var(--gold-primary);
}

.experience-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}

.experience-text {
    font-size: 1.1rem;
    color: var(--white);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-steps {
    margin-top: 3rem;
}

.process-step {
    background: var(--light-gray);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-medium);
    height: 100%;
    border: 2px solid transparent;
}

.process-step:hover {
    background: var(--white);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.process-step h5 {
    color: var(--primary-black);
    font-size: 1.1rem;
    margin: 0;
}

.process-image {
    margin-top: 3rem;
    opacity: 0.8;
}

/* About Section */
.about-section {
    background: var(--light-gray);
    padding: var(--section-padding);
}

.founder-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.founder-card:hover {
    border-color: var(--gold-primary);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.founder-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform var(--transition-medium);
}

.founder-card:hover .founder-photo {
    transform: scale(1.05);
}

/* Specific positioning for each founder photo */
.founder-card:nth-child(1) .founder-photo {
    object-position: center 15%; /* Better positioning for Spyros */
}

.founder-card:nth-child(2) .founder-photo {
    object-position: center 25%; /* Better positioning for Lina */
}

.founder-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold-primary);
}

.founder-placeholder i {
    font-size: 3rem;
    color: var(--gold-primary);
}

.founder-info {
    padding: 2rem 1.5rem;
    background: var(--white);
    position: relative;
}

.founder-info h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.founder-title {
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-medium);
}

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





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

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-label {
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-medium);
    background: var(--white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    border-top: 3px solid var(--gold-primary);
}

.footer-logo {
    filter: brightness(1.1) contrast(1.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-logo {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-medium);
}

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

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

.footer-subtitle {
    color: var(--gold-secondary);
    font-weight: 500;
    font-size: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info .contact-item i {
    color: var(--gold-primary);
    width: 18px;
    text-align: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.footer-link:hover {
    color: var(--gold-primary);
    text-decoration: none;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-links {
    margin: 0;
    padding: 0;
}

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

.footer-links .footer-link {
    font-size: 0.9rem;
    padding: 0.2rem 0;
    display: inline-block;
}

.map-container {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    color: var(--primary-black);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    padding: 8px;
}

.scroll-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.scroll-top:hover {
    background: var(--gold-secondary);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .col-lg-4 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .footer .row:last-child .col-lg-6 {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .trust-title {
        font-size: 2rem;
    }
    
    .experience-number {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .language-switcher {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
}

/* Loading Animation */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Fix for navigation styling issues */
.navbar .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: var(--transition-fast);
    text-decoration: none !important;
}

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

/* Language switcher enhanced styling */
.language-switcher .btn {
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    background: transparent !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-switcher .btn:hover,
.language-switcher .btn.active {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: var(--primary-black) !important;
}

.language-switcher .flag-icon {
    margin-right: 0.25rem;
}

/* Ensure proper link formatting */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Company Values Section Styling */
.company-values-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.value-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-header h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.value-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    padding-left: 0;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.values-list li strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Responsive adjustments for company values */
@media (max-width: 768px) {
    .company-values-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-header h3 {
        font-size: 1.3rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .values-list li {
        font-size: 0.9rem;
    }
}
