:root {
    --dark-green: #0d1f1a;
    --light-green: #1a3329;
    --gold: #c4a053;
    --light-gold: #d4b87a;
    --cream: #f5f1e8;
    --text-light: #e8e4d9;
    --text-gold: #c4a053;
}

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

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

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 31, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(196, 160, 83, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 48px;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.logo-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    padding: 0.3rem;
    background: rgba(196, 160, 83, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(196, 160, 83, 0.3);
}

.lang-btn {
    background: transparent;
    color: var(--text-gold);
    border: none;
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    background: rgba(196, 160, 83, 0.2);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--dark-green);
}

.mobile-lang-switcher {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(196, 160, 83, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(196, 160, 83, 0.3);
    justify-content: center;
}

.nav-link {
    color: var(--text-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--light-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13, 31, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(196, 160, 83, 0.2);
}

.mobile-link {
    color: var(--text-gold);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/assets//images//home-advantages.jpg') center/cover;
    opacity: 0.4;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.4;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, var(--dark-green) 0%, transparent 50%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-logo-icon {
    width: 120px;
    height: 144px;
    color: var(--gold);
}

.hero-logo-text h1 {
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.hero-logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--light-gold);
    margin-bottom: 4rem;
    font-weight: 300;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out backwards;
}

.location:nth-child(1) {
    animation-delay: 0.3s;
}

.location:nth-child(2) {
    animation-delay: 0.5s;
}

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

.location-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    flex-shrink: 0;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-address {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.location-phone,
.location-email {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.location-phone a,
.location-email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone a:hover,
.location-email a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero-badge {
    background: var(--gold);
    color: var(--dark-green);
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-badge p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: var(--dark-green);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-left h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.contact-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.contact-logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
    background: rgba(26, 51, 41, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(196, 160, 83, 0.2);
}

.contact-logo-icon {
    width: 80px;
    height: 96px;
    color: var(--gold);
}

.contact-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.2;
}

.contact-logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 150px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 0 3px rgba(196, 160, 83, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: rgba(232, 228, 217, 0.4);
}

.btn-submit {
    background: var(--gold);
    color: var(--dark-green);
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 160, 83, 0.4);
}

/* Services Page */
.services-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80') center/cover;
    position: relative;
    margin-top: 80px;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 31, 26, 0.6), rgba(13, 31, 26, 0.9));
}

.services-intro {
    padding: 5rem 2rem;
    background: var(--dark-green);
}

.services-intro-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.services-title {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.services-grid {
    padding: 4rem 2rem 6rem;
    background: var(--dark-green);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(26, 51, 41, 0.3);
    border: 1px solid rgba(196, 160, 83, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(13, 31, 26, 0.8));
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.1rem;
    color: var(--light-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* About Page */
.about-section {
    padding: 8rem 2rem 6rem;
    background: var(--dark-green);
    margin-top: 80px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--light-gold);
    line-height: 1.8;
    font-weight: 400;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem;
    background: rgba(26, 51, 41, 0.3);
    border: 1px solid rgba(196, 160, 83, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-image {
    position: sticky;
    top: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 160, 83, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background: rgba(13, 31, 26, 0.95);
    padding: 2rem;
    border-top: 1px solid rgba(196, 160, 83, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: var(--text-gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Common Section Styles */
.section-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    font-family: 'Cormorant Garamond', serif;
}

.title-underline {
    width: 200px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 3rem;
}

.title-underline-left {
    width: 150px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0 2rem 0;
}

/* Services List Section */
.services-list-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    position: relative;
    overflow: hidden;
}

.services-list-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&q=80') center/cover;
    opacity: 0.1;
}

.services-list-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.03em;
}

/* Advantages Section */
.advantages-section {
    padding: 6rem 2rem;
    background: var(--dark-green);
}

.advantages-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.advantages-left {
    position: relative;
}

.advantages-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 160, 83, 0.3);
}

.advantages-right {
    padding: 2rem 0;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInRight 0.6s ease-out backwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }

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

.advantage-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.advantage-item p {
    font-size: 1.15rem;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.03em;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.team-left {
    padding: 2rem 0;
}

.team-name {
    font-size: 2.5rem;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.team-degree {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 3rem;
}

.team-education {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-education p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.team-photo-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 160, 83, 0.3);
    background: rgba(26, 51, 41, 0.5);
    max-width: 479px;
    width: 100%;
}

.team-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Contact Full Section */
.contact-full-section {
    padding: 6rem 2rem;
    background: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.contact-full-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80') center/cover;
    opacity: 0.05;
}

.contact-full-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-full-logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: rgba(26, 51, 41, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(196, 160, 83, 0.2);
    margin-bottom: 2rem;
}

.contact-full-logo-icon {
    width: 100px;
    height: 120px;
    color: var(--gold);
}

.contact-full-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.2;
}

.contact-full-logo-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-full-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--light-gold);
    font-weight: 300;
}

.contact-full-offices {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-full-office {
    display: flex;
    gap: 1.5rem;
}

.contact-full-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-full-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-full-address {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.contact-full-phone,
.contact-full-email {
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.contact-full-phone a,
.contact-full-email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-full-phone a:hover,
.contact-full-email a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Social Section */
.social-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--light-green) 100%);
    text-align: center;
}

.social-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-logo-box {
    background: rgba(26, 51, 41, 0.5);
    padding: 4rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(196, 160, 83, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-logo-icon {
    width: 80px;
    height: 96px;
    color: var(--gold);
    margin-bottom: 2rem;
}

.social-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.social-logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

.social-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--light-gold);
    font-weight: 300;
}

.social-button {
    background: var(--gold);
    color: var(--dark-green);
    padding: 1rem 4rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    display: inline-block;
}

.social-button:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 160, 83, 0.4);
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(26, 51, 41, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.social-icon-link:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 160, 83, 0.4);
}

.social-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    transition: color 0.3s ease;
}

.social-icon-link:hover .social-icon {
    color: var(--dark-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero::before {
        width: 100%;
        opacity: 0.2;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(to bottom, transparent 0%, var(--dark-green) 70%);
    }

    .hero-right {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        position: relative;
        top: 0;
    }
    
    .services-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .advantages-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-full-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-logo-text h1 {
        font-size: 2.5rem;
    }

    .hero-logo-image {
        max-width: 350px;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .contact-left h2,
    .services-title,
    .about-title {
        font-size: 2.5rem;
    }

    .name-fields {
        grid-template-columns: 1fr;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .hero-badge p {
        font-size: 1.3rem;
    }

    .hero-badge {
        padding: 1.5rem 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantages-image {
        height: 400px;
    }

    .team-photo {
        height: auto;
    }

    .team-photo-container {
        max-width: 100%;
    }
    
    .contact-full-logo {
        padding: 2rem;
    }
    
    .contact-full-logo-icon {
        width: 70px;
        height: 84px;
    }
    
    .contact-full-logo-text {
        font-size: 1.8rem;
    }

    .contact-full-logo-image {
        max-width: 280px;
    }

    .social-logo-box {
        padding: 3rem 2rem;
    }

    .contact-logo-container {
        padding: 2rem;
    }

    .contact-logo-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-logo-icon {
        width: 80px;
        height: 96px;
    }

    .hero-logo-text h1 {
        font-size: 2rem;
    }

    .hero-logo-image {
        max-width: 280px;
    }

    .contact-left h2,
    .services-title,
    .about-title {
        font-size: 2rem;
    }

    .contact-logo-container {
        padding: 1.5rem;
    }

    .contact-logo-image {
        max-width: 200px;
    }

    .contact-logo-icon {
        width: 60px;
        height: 72px;
    }

    .contact-logo-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-item p,
    .advantage-item p {
        font-size: 1rem;
    }
    
    .team-name {
        font-size: 2rem;
    }
    
    .team-position {
        font-size: 1.1rem;
    }
    
    .contact-full-logo {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .contact-full-logo-image {
        max-width: 180px;
    }

    .contact-full-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        word-wrap: break-word;
        padding: 0 1rem;
    }

    .social-logo-text {
        font-size: 2rem;
    }

    .social-icons {
        gap: 1.5rem;
    }

    .social-icon-link {
        width: 50px;
        height: 50px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .location-address {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
    }

    .location-phone,
    .location-email {
        font-size: 0.8rem;
        word-break: break-word;
    }
}

/* Extra small devices (iPhone SE, small phones - 375px and below) */
@media (max-width: 375px) {
    .hero-logo-image {
        max-width: 240px;
    }

    .hero-logo-container {
        gap: 0.75rem;
    }

    .contact-logo-image {
        max-width: 180px;
    }

    .contact-full-logo-image {
        max-width: 160px;
    }

    .contact-full-logo {
        padding: 0.75rem;
    }

    .contact-full-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
        word-wrap: break-word;
        padding: 0 0.5rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon-link {
        width: 45px;
        height: 45px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        word-wrap: break-word;
    }

    .location-address {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
        word-break: break-word;
    }

    .location-phone,
    .location-email {
        font-size: 0.7rem;
        word-break: break-all;
    }
}

