:root {
    --primary: #1a2f4c; /* Softer navy */
    --secondary: #cca750; /* Warmer, muted gold */
    --accent: #e8dcc4; /* Soft warm accent instead of bright cyan */
    --text-main: #fcfbf9; /* Creamy white */
    --text-dark: #2d3748; /* Softer dark gray */
    --bg-light: #faf9f6; /* Organic cream background */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1a2f4c 0%, #2a4165 100%);
    --glass: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother transition */
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.lang-switcher {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin-left: 1rem;
}

.lang-switcher a {
    color: rgba(255,255,255,0.5) !important;
    padding: 0 5px;
}

.lang-switcher a.active {
    color: var(--secondary) !important;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c0a030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--white);
    transition: var(--transition);
    display: inline-block;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../../images/hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}


.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.badge {
    color: var(--secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.badge::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    vertical-align: middle;
    margin-right: 15px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 2.5rem 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item i {
    color: var(--secondary);
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
}

/* About Section */
.about {
    padding: 8rem 0;
}

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

.about-image .image-wrapper {
    position: relative;
}

.about-image .image-wrapper::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(26,47,76,0.1);
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-content h2 span {
    color: var(--secondary);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat p {
    font-size: 0.9rem;
    color: #888;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 4px; /* Less rounded, more classic */
    transition: var(--transition);
    border: none;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Softer, wider shadow */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 47, 76, 0.08);
    border-top-color: var(--secondary);
}

.service-card.highlight-special {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.service-card.highlight-special i {
    color: var(--secondary);
}

.service-card.highlight-special p {
    color: rgba(255,255,255,0.8);
}

.highlight-badge {
    position: absolute;
    top: 40px;
    right: -58px;
    background: var(--secondary);
    color: #1a2f4c;
    padding: 8px 65px;
    font-size: 0.72rem;
    font-weight: 800;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    letter-spacing: 0.5px;
}



.service-card i {
    width: 50px;
    height: 50px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card.highlight {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.service-card.highlight p {
    color: rgba(255,255,255,0.7);
}

/* Process Section */
.process {
    padding: 8rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-answer {
    padding-top: 1rem;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--primary);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info h2 span {
    color: var(--secondary);
}

.info-list {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.info-item:hover {
    color: var(--secondary);
}

.info-item i {
    color: var(--secondary);
}

.contact-form {
    background: var(--glass);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 5px;
    font-family: inherit;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    padding: 4rem 0;
    background: #06101d;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.footer-logo span {
    color: var(--secondary);
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    color: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.socials a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .trust-bar {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .about-content h2 { font-size: 2.8rem; }
    .about-image { order: 2; }
    .about-content { order: 1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Ovde bi mogao doći mobilni meni */
    .menu-toggle { display: block; }
    .hero { text-align: center; justify-content: center; padding-top: 100px; height: auto; padding-bottom: 100px; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-bar { 
        margin-top: 20px; 
        max-width: 95%; 
        padding: 2rem 1rem;
    }
    .trust-grid { gap: 1.5rem; }
    .hero h1 { font-size: 2.4rem; }
    .badge::before { display: none; }
    .about-image .image-wrapper::after { left: 10px; top: 10px; }
}

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

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .about-content h2 { font-size: 2.2rem; }
    .logo-text { font-size: 1.1rem; }
}


/* Animations */
.hide {
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.hero.reveal {
    transition-delay: 0.2s;
}

.services-grid .service-card {
    transition-delay: 0.1s;
}

.alert.success {
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}


