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

:root {
    --primary-color: #c8ff00;
    --secondary-color: #1a3d7c;
    --dark-blue: #0d1f3d;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --overlay-color: rgba(13, 31, 61, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    padding: 25px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(20, 50, 100, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: text-shadow 0.4s ease;
    flex: 1;
}

.header.scrolled .logo {
    text-shadow: none;
}

.logo-img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    height: 80px;
    width: auto;
    max-width: 320px;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 15px rgba(200, 255, 0, 0.3));
}

/* Hamburger Menu Button */
.hamburger-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
}

.hamburger-menu:hover {
    background: rgba(200, 255, 0, 0.1);
    border-color: rgba(200, 255, 0, 0.3);
}

.hamburger-menu.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled .hamburger-menu {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.header.scrolled .hamburger-menu.active {
    background: rgba(20, 50, 100, 0.98);
    border-color: rgba(200, 255, 0, 0.3);
}

.hamburger-menu.scrolled.active {
    background: rgba(20, 50, 100, 0.98);
    border-color: rgba(200, 255, 0, 0.3);
}

.hamburger-menu i {
    font-size: 24px;
    color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: absolute;
}

.header.scrolled .hamburger-menu i {
    text-shadow: none;
}

.hamburger-menu:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.hamburger-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.close-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.hamburger-menu.active .hamburger-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.hamburger-menu.active .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: var(--primary-color);
}

.hamburger-menu.active:hover .close-icon {
    transform: rotate(90deg) scale(1.15);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.btn-header {
    padding: 10px 25px;
    font-size: 13px;
    text-decoration: none;
}

/* Dropdown Navigation */
.dropdown-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease, top 0.4s ease, opacity 0.3s ease, background 0.4s ease, backdrop-filter 0.4s ease;
    z-index: 999;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    opacity: 0;
    border-bottom: 2px solid transparent;
}

.dropdown-nav.active {
    max-height: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.dropdown-nav.scrolled {
    background: linear-gradient(135deg, rgba(20, 50, 100, 0.98) 0%, rgba(30, 70, 130, 0.98) 100%);
    backdrop-filter: blur(20px);
}

.dropdown-nav.scrolled.active {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(200, 255, 0, 0.3);
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
}

.dropdown-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 24px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.dropdown-nav.scrolled .dropdown-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-shadow: none;
}

.dropdown-nav.active .dropdown-link {
    animation: dropdownAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dropdown-nav.active .dropdown-link:nth-child(1) { animation-delay: 0.05s; }
.dropdown-nav.active .dropdown-link:nth-child(2) { animation-delay: 0.1s; }
.dropdown-nav.active .dropdown-link:nth-child(3) { animation-delay: 0.15s; }
.dropdown-nav.active .dropdown-link:nth-child(4) { animation-delay: 0.2s; }
.dropdown-nav.active .dropdown-link:nth-child(5) { animation-delay: 0.25s; }
.dropdown-nav.active .dropdown-link:nth-child(6) { animation-delay: 0.3s; }
.dropdown-nav.active .dropdown-link:nth-child(7) { animation-delay: 0.35s; }

.dropdown-link:hover {
    color: var(--dark-blue);
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 30px rgba(200, 255, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid var(--primary-color);
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.1) 0%, transparent 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-link:hover::before {
    opacity: 1;
}

.dropdown-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--dark-blue);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

@keyframes dropdownAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9) rotateX(-10deg);
    }
    60% {
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #d4ff33;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 255, 0, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Language Selector */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    color: var(--text-white);
    border: none;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.header.scrolled .lang-btn {
    text-shadow: none;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    color: var(--dark-blue);
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #1a4070; /* Placeholder color ενώ φορτώνει η εικόνα */
    background-image: url('https://images.unsplash.com/photo-1580274455191-1c62238fa333?q=80&w=1920&fm=webp&auto=compress');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 50, 100, 0.75) 0%, rgba(30, 80, 140, 0.65) 50%, rgba(40, 100, 160, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hero-title-highlight {
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Social Media Icons */
.social-media-float {
    position: absolute;
    right: 80px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease 0.6s backwards;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: floatUpDown 3s ease-in-out infinite;
    color: white;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Instagram - Gradient */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

/* TikTok - Black with gradient accent */
.social-icon.tiktok {
    background: #000000;
    position: relative;
}

.social-icon.tiktok:hover {
    background: #000000;
    filter: brightness(1.2);
}

/* Facebook - Blue */
.social-icon.facebook {
    background: #1877F2;
}

.social-icon.facebook:hover {
    background: #0e5fc2;
}

/* Float Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* 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);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Utilities */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.features-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 50px 35px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(26, 64, 112, 0.08);
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 64, 112, 0.15);
    background: white;
    border-color: rgba(200, 255, 0, 0.5);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #c8ff00 0%, #a5d700 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #1a4070;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(200, 255, 0, 0.3);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(200, 255, 0, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a4070 0%, #2a5590 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, #e8f4ff, transparent);
    z-index: 0;
}

.section-label {
    display: inline-block;
    color: #c8ff00;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 2px solid rgba(200, 255, 0, 0.3);
    border-radius: 50px;
    background: rgba(200, 255, 0, 0.1);
}

.services-section .section-header h2 {
    color: white;
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

@media (max-width: 1600px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c8ff00 0%, #a5d700 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(200, 255, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26, 64, 112, 0.08);
    line-height: 1;
}

.service-image {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #1a4070 0%, #2a5590 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #c8ff00;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(26, 64, 112, 0.3);
}

.service-card:hover .service-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(200, 255, 0, 0.4);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark-blue);
}

.service-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Service Price */
.service-price {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px solid #c8ff00;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4070;
    display: block;
    margin-bottom: 5px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    margin: 30px 0;
    text-align: center;
}

.disclaimer-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.disclaimer-box i {
    color: #f39c12;
    font-size: 1.2rem;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #8b4513;
    font-weight: 500;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(26, 64, 112, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #c8ff00;
    font-size: 1rem;
    min-width: 20px;
}

.service-features li i.fa-plus {
    color: #1a4070;
    font-weight: 900;
}

/* Featured Service Card */
.service-card.featured {
    border: 3px solid #c8ff00;
    box-shadow: 0 15px 50px rgba(200, 255, 0, 0.3);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.service-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c8ff00 0%, #a5d700 100%);
    color: #1a4070;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(200, 255, 0, 0.5);
    z-index: 10;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: white;
    color: #1a4070;
    border: 3px solid #c8ff00;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: #c8ff00;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(200, 255, 0, 0.4);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.15rem;
}

/* Portfolio Carousel Section */
.portfolio-carousel-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.portfolio-carousel-section .section-label {
    color: #1a4070;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.2) 0%, rgba(165, 215, 0, 0.2) 100%);
    border: 2px solid rgba(26, 64, 112, 0.2);
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

/* Project Card - Αγγελία Style */
.project-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(200, 255, 0, 0.5);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c8ff00 0%, #a5d700 100%);
    color: #1a4070;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(200, 255, 0, 0.4);
}

.project-badge.luxury {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.project-badge.sport {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4444 100%);
    color: white;
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a4070;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: rgba(26, 64, 112, 0.05);
    border-radius: 50px;
    width: fit-content;
}

.project-category i {
    font-size: 0.85rem;
    color: #c8ff00;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a4070;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-item i {
    color: #c8ff00;
    font-size: 1rem;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #1a4070;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #1a4070;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(26, 64, 112, 0.3);
}

.carousel-btn i {
    font-size: 1.2rem;
    color: inherit;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: #1a4070;
    transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 64, 112, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(26, 64, 112, 0.4);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #1a4070;
    width: 40px;
    border-radius: 10px;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    background: transparent;
    color: #1a4070;
    border: 3px solid #1a4070;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #1a4070;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 64, 112, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0f2744 0%, #1a4070 50%, #2a5590 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.15) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #c8ff00 0%, #a5d700 100%);
    color: #1a4070;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(200, 255, 0, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 50px rgba(200, 255, 0, 0.5);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #1a4070;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c8ff00;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-stat:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(200, 255, 0, 0.2);
}

.cta-stat h3 {
    font-size: 2.5rem;
    color: #c8ff00;
    margin-bottom: 10px;
    font-weight: 800;
}

.cta-stat p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 400px;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 31, 61, 0.95), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 15px;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-blue);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.price {
    margin: 25px 0;
}

.price .amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 18px;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-pricing:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-pricing.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-blue);
}

.btn-pricing.primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

.faq-question i {
    font-size: 16px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 15px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(200, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

/* Pet Clean+ Banner */
.pet-banner {
    position: fixed;
    left: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    background: linear-gradient(135deg, #1a4070 0%, #2c5aa0 100%);
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(26, 64, 112, 0.3);
    z-index: 1000;
    transition: left 0.5s ease;
    overflow: hidden;
    display: block;
}

.pet-banner.show {
    left: 0;
}

.pet-banner-content {
    padding: 25px;
    color: white;
    position: relative;
}

.pet-banner-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pet-banner-close:hover {
    background: #c8ff00;
    color: #1a4070;
}

.pet-banner-image {
    text-align: center;
    margin-bottom: 15px;
}

.pet-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c8ff00;
    box-shadow: 0 4px 15px rgba(200, 255, 0, 0.3);
    transition: all 0.3s ease;
    animation: petBounce 2s ease-in-out infinite;
}

.pet-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 255, 0, 0.4);
    animation: none;
}

@keyframes petBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.pet-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.pet-banner-text p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.pet-banner-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.pet-banner-features span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pet-banner-features i {
    color: #c8ff00;
    font-size: 0.8rem;
}

.pet-banner-btn {
    background: #c8ff00;
    color: #1a4070;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pet-banner-btn:hover {
    background: white;
    color: #1a4070;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 255, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .rating-badge {
        right: 40px;
        bottom: 80px;
        padding: 15px 20px;
    }
}

@media (max-width: 992px) {
    .dropdown-container {
        gap: 30px;
        padding: 25px 30px;
    }
    
    .dropdown-link {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .dropdown-nav.active {
        max-height: 150px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .social-media-float {
        right: 30px;
        bottom: 80px;
        gap: 15px;
    }
    
    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .dropdown-container {
        gap: 20px;
        padding: 25px 20px;
    }
    
    .dropdown-link {
        font-size: 13px;
        padding: 10px 18px;
    }
    
    .dropdown-nav.active {
        max-height: 180px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
    
    .social-media-float {
        right: 20px;
        bottom: 60px;
        gap: 12px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .language-selector {
        display: none;
    }
    
    .btn-header {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    /* New Sections Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        height: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .project-card {
        min-width: calc(50% - 15px);
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 25px;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-img {
        height: 60px;
        max-width: 250px;
    }
    
    .section h2 {
        font-size: 32px;
    }
    
    .dropdown-container {
        gap: 12px;
        padding: 20px 15px;
        flex-direction: column;
    }
    
    .dropdown-nav.active {
        max-height: 450px;
    }
    
    .dropdown-link {
        width: 90%;
        text-align: center;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .project-card {
        min-width: 100%;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-stats {
        gap: 15px;
    }
    
    .social-media-float {
        right: 15px;
        bottom: 50px;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .hamburger-menu i {
        font-size: 22px;
    }
    
    /* Pet Banner Mobile */
    .pet-banner {
        width: 280px;
        left: -300px;
    }
    
    .pet-banner-content {
        padding: 15px;
    }
    
    .pet-image {
        width: 70px;
        height: 70px;
    }
    
    .pet-banner-text h3 {
        font-size: 1.2rem;
    }
    
    .pet-banner-text p {
        font-size: 0.75rem;
    }
    
    .pet-banner-features span {
        font-size: 0.8rem;
    }
    
    .pet-banner-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Avatar Menu Styles */
.avatar-menu, .auth-links-simple {
    position: relative;
    margin-right: 1rem;
}

.avatar-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-white);
    font-weight: 500;
}

.avatar-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #b8e600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
}

.avatar-circle-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #b8e600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
}

.avatar-name {
    font-size: 0.9rem;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-trigger i.fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.avatar-trigger.active i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Avatar Dropdown */
.avatar-dropdown, .auth-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: rgba(13, 31, 61, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.avatar-dropdown.active, .auth-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Avatar Dropdown Header */
.avatar-dropdown-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 61, 124, 0.5), rgba(13, 31, 61, 0.8));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.avatar-email {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar-status {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Avatar Dropdown Menu */
.avatar-dropdown-menu {
    padding: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(200, 255, 0, 0.1);
    color: var(--primary-color);
}

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

/* Avatar Dropdown Footer */
.avatar-dropdown-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    color: #ff6b6b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-logout:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: translateY(-1px);
}

/* Auth Dropdown (when logged out) */
.auth-dropdown {
    width: 200px;
    padding: 0.5rem 0;
}

.auth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.auth-dropdown-item.highlight {
    background: rgba(200, 255, 0, 0.1);
    color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-dropdown-item.highlight:hover {
    background: rgba(200, 255, 0, 0.2);
}

.auth-dropdown-item i {
    width: 18px;
    text-align: center;
}

/* Responsive Avatar Menu */
@media (max-width: 768px) {
    .avatar-trigger {
        padding: 0.4rem 0.75rem;
        gap: 0.4rem;
    }
    
    .avatar-circle {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .avatar-name {
        display: none;
    }
    
    .avatar-dropdown, .auth-dropdown {
        width: 250px;
    }
    
    .avatar-dropdown-header {
        padding: 1.25rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .avatar-dropdown, .auth-dropdown {
        right: -20px;
        width: calc(100vw - 40px);
        max-width: 280px;
    }
}

