/* Version 4: Emerald Empire - Green + Gold Regal Theme */

/* ===== CSS Variables ===== */
:root {
    --emerald: #064e3b;
    --emerald-light: #065f46;
    --emerald-dark: #022c22;
    --gold: #c9a227;
    --gold-light: #f4d03f;
    --cream: #f5f0e6;
    --cream-dark: #ebe4d4;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-light: rgba(255, 255, 255, 0.15);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-emerald: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.section-tag.center {
    justify-content: center;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--emerald);
}

.emerald-text {
    color: var(--gold);
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--emerald-dark);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--emerald);
    color: var(--text-light);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn.full { width: 100%; }

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--emerald);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-emblem {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.logo-emblem span {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--emerald-dark);
}

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

.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.nav-phone i {
    color: var(--gold);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--emerald-dark);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.92) 0%, rgba(2, 44, 34, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--gold);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-icon {
    color: var(--gold);
}

.badge-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.1;
}

.title-accent {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px; /* Adjusted margin-bottom */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-phone-cta {
    margin-bottom: 25px; /* Adjust as needed for spacing */
    display: flex;
    justify-content: center;
}

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

.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(6, 78, 59, 0.95);
    border-top: 1px solid var(--border-light);
}

.hero-feature {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    border-right: 1px solid var(--border-light);
}

.hero-feature:last-child {
    border-right: none;
}

.hero-feature i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.img-main {
    position: relative;
    z-index: 1;
}

.img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.img-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.img-secondary img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    top: 40px;
    left: -40px;
    background: var(--emerald);
    color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    z-index: 3;
}

.exp-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.exp-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.9;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    padding: 18px 25px;
    background: var(--emerald);
    border-radius: 8px;
    width: fit-content;
    border-left: 4px solid var(--gold);
}

.founder-label {
    font-size: 0.95rem;
    color: #ffffff;
}

.founder-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--cream-dark);
    border-radius: 10px;
    transition: var(--transition);
}

.value-box:hover {
    background: var(--emerald);
    color: var(--text-light);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    color: var(--emerald-dark);
    font-size: 1.2rem;
}

.value-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.value-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-emerald);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

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

.service-card:hover .service-hover-bg {
    transform: translateY(0);
}

.service-card:hover,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--text-light);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon i {
    color: var(--text-light);
}

.service-card > *:not(.service-hover-bg) {
    position: relative;
    z-index: 2;
}

.service-hover-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-emerald);
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 78, 59, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--emerald);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--emerald);
    transition: var(--transition);
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== Packages Section ===== */
.packages {
    padding: 120px 0;
    background: var(--emerald-dark);
}

.packages .section-title {
    color: var(--text-light);
}

.packages .section-desc {
    color: var(--text-muted);
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.packages-grid .package-card {
    flex: 0 1 calc(25% - 19px);
    min-width: 260px;
    max-width: 300px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.package-card.featured {
    background: var(--text-light);
    transform: scale(1.05);
    border: none;
}

.package-card.featured .package-header h3,
.package-card.featured .package-footer .btn-outline {
    color: var(--emerald);
}

.package-card.featured .package-features li {
    color: #555;
    border-color: rgba(0, 0, 0, 0.1);
}

.package-card.featured .currency,
.package-card.featured .unit {
    color: var(--emerald);
}

.package-card.featured .amount {
    color: var(--gold);
}

.featured-ribbon {
    background: var(--gradient-gold);
    color: var(--emerald-dark);
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    padding: 35px 25px 25px;
}

.package-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.3rem;
    color: var(--gold);
}

.amount {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.unit {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.package-body {
    padding: 0 25px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

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

.package-features i {
    color: var(--gold);
    margin-top: 4px;
}

.package-footer {
    padding: 25px;
}

.package-footer .btn {
    width: 100%;
}

.package-footer .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.package-footer .btn-outline:hover {
    background: var(--text-light);
    color: var(--emerald);
}

/* ===== Projects Section ===== */
.projects {
    padding: 120px 0;
    background: var(--cream);
}

.projects-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-item.tall {
    grid-row: span 2;
}

.project-item img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.project-item.tall img {
    min-height: 625px;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-content {
    color: var(--text-light);
}

.project-type {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--emerald-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.project-size {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Process Section ===== */
.process {
    padding: 120px 0;
    background: var(--cream-dark);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

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

.step-connector {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--emerald);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--gold);
    color: var(--emerald);
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--emerald);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    max-width: 180px;
    margin: 0 auto;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    margin-bottom: 20px;
}

.quote-mark i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-emerald);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--emerald);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--emerald);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact .section-title {
    color: var(--text-light);
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.contact-founder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--gold);
    border-radius: 8px;
    margin-bottom: 40px;
    width: fit-content;
}

.contact-founder i {
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-founder span {
    font-size: 1rem;
    color: #ffffff;
}

.contact-founder strong {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--emerald-dark);
}

.card-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.card-info a,
.card-info p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-form-wrap {
    background: var(--text-light);
    padding: 50px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    background: var(--text-light);
}

.form-group select {
    cursor: pointer;
}

/* ===== Footer ===== */
.footer {
    background: var(--emerald-dark);
    color: var(--text-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-founder {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 10px 15px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 5px;
    width: fit-content;
}

.footer-founder i {
    color: var(--gold-light);
    margin-right: 10px;
}

.footer-founder strong {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1rem;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--emerald-dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.version-link {
    color: var(--gold);
    font-weight: 500;
}

.developer-link {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--gold-light, #fcd34d);
    text-decoration: underline;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-dark);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .services-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid .package-card { flex: 0 1 calc(50% - 15px); min-width: 280px; max-width: 100%; }
    .package-card.featured { transform: scale(1); }
    .process-timeline { flex-wrap: wrap; gap: 40px; }
    .process-step { flex: 0 0 30%; }
    .step-connector { display: none; }
}

@media (max-width: 992px) {
    .nav-menu, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .about-images { order: -1; max-width: 500px; margin: 0 auto; }
    .projects-masonry, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .project-item.tall { grid-row: span 1; }
    .project-item.tall img { min-height: 300px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .hero-features { flex-wrap: wrap; }
    .hero-feature { flex: 0 0 50%; border-bottom: 1px solid var(--border-light); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .hero-features { display: none; }
    .packages-grid .package-card { flex: 0 1 100%; }
    .services-grid, .stats-grid,
    .projects-masonry, .testimonials-grid { grid-template-columns: 1fr; }
    .process-step { flex: 0 0 45%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .img-secondary, .experience-box { display: none; }
    .process-step { flex: 0 0 100%; }
    .contact-form-wrap { padding: 30px 20px; }
}
