/* ============================================
   style.css - فوتر کوتاه بدون کوه
   رنگ‌ها: #003d46 (سبز) - #d89f47 (طلایی)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', 'Inter', Tahoma, sans-serif;
    background: #fff;
    color: #2d3e50;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #003d46;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 45px;
}

.logo span {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: #d89f47;
}

.btn-gold {
    background: #d89f47;
    color: #003d46 !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #e8b96e;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(216, 159, 71, 0.15);
    color: #d89f47;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2rem;
    color: #003d46;
    margin-bottom: 15px;
}

.section-header h2 .gold {
    color: #d89f47;
}

.section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HERO ========== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-badge {
    display: inline-block;
    background: rgba(216, 159, 71, 0.15);
    color: #d89f47;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #003d46;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero h1 .gold {
    color: #d89f47;
}

.hero p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #003d46;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #005f6b;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #d89f47;
    color: #003d46;
    padding: 10px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #d89f47;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats div {
    text-align: center;
}

.hero-stats .num {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #003d46;
}

.hero-stats span:not(.num) {
    font-size: 0.8rem;
    color: #6c757d;
}

.hero-image svg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ========== SERVICES SECTION - باکس‌های سبز ========== */
.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #003d46;  /* باکس سبز سازمانی */
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(216, 159, 71, 0.15);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 2.3rem;
    color: #d89f47;  /* طلایی */
}

.service-card h3 {
    font-size: 1.3rem;
    color: #d89f47;  /* متن عنوان طلایی */
    margin-bottom: 15px;
    font-weight: bold;
}

.service-card p {
    color: rgba(255,255,255,0.8);  /* متن توضیحات سفید با شفافیت */
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .more {
    color: #d89f47;  /* طلایی */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.service-card .more:hover {
    gap: 10px;
    color: #e8b96e;
}
/* ========== PORTFOLIO ========== */
.portfolio {
    background: #f8f9fc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.portfolio-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-img svg {
    width: 100%;
    height: 100%;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 70, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay a {
    width: 50px;
    height: 50px;
    background: #d89f47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003d46;
    font-size: 1.3rem;
    text-decoration: none;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    color: #003d46;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #6c757d;
    font-size: 0.85rem;
}

/* ========== ABOUT ========== */
.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img svg {
    width: 100%;
    border-radius: 20px;
}

.about-img .exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #003d46;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d89f47;
}

.about-img .exp-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #d89f47;
}

.about-img .exp-badge span:not(.num) {
    color: #fff;
    font-size: 0.8rem;
}

.about-content .badge {
    display: inline-block;
    background: rgba(216, 159, 71, 0.15);
    color: #d89f47;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 1.8rem;
    color: #003d46;
    margin-bottom: 20px;
}

.about-content h2 .gold {
    color: #d89f47;
}

.about-content p {
    color: #6c757d;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    width: 45px;
    height: 45px;
    background: rgba(216, 159, 71, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #d89f47;
}

.feature h4 {
    color: #003d46;
    font-size: 1rem;
}

.feature p {
    color: #6c757d;
    font-size: 0.8rem;
    margin: 0;
}

/* ========== CONTACT ========== */
.contact {
    background: #f8f9fc;
}

.contact-wrapper {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-header {
    text-align: center;
    padding: 40px 30px 20px;
}

.contact-header .badge {
    display: inline-block;
    background: rgba(216, 159, 71, 0.15);
    color: #d89f47;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.contact-header h2 {
    font-size: 1.8rem;
    color: #003d46;
}

.contact-header .gold {
    color: #d89f47;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.contact-info {
    background: #003d46;
    padding: 40px 30px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.3rem;
    color: #d89f47;
    margin-top: 3px;
}

.info-item div span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.info-item div a, .info-item div p {
    color: #fff;
    text-decoration: none;
}

.hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.contact-form {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    transition: 0.3s;
    background: #f8f9fa;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #d89f47;
    background: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========== FOOTER کوتاه بدون کوه ========== */
.footer {
    background: #003d46;
    color: rgba(255,255,255,0.7);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    color: #d89f47;
    font-size: 1rem;
    font-weight: bold;
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d89f47;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #d89f47;
    color: #003d46;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #d89f47;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #d89f47;
    padding-right: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.contact-list li i {
    color: #d89f47;
    font-size: 1rem;
}

.contact-list li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.contact-list li a:hover {
    color: #d89f47;
}

.footer-copyright {
    text-align: center;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
}

.footer-copyright strong {
    color: #d89f47;
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #d89f47;
    color: #003d46;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 100;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #e8b96e;
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 75px);
        background: #003d46;
        flex-direction: column;
        padding: 30px;
        transition: 0.3s;
        z-index: 999;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-grid, .about-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        gap: 25px;
    }
}
/* ==================== PROCESS SECTION ==================== */
.process {
    background: #f8f9fc;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #d89f47;
    color: #003d46;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(216, 159, 71, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #d89f47;
}

.process-step h3 {
    color: #003d46;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    color: #6c757d;
    font-size: 0.85rem;
}

/* ==================== WHY US SECTION ==================== */
.why-us {
    padding: 80px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-content .badge {
    display: inline-block;
    background: rgba(216, 159, 71, 0.15);
    color: #d89f47;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.why-content h2 {
    font-size: 1.8rem;
    color: #003d46;
    margin-bottom: 30px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-item i {
    color: #d89f47;
    font-size: 1.3rem;
    margin-top: 3px;
}

.why-item h4 {
    color: #003d46;
    font-size: 1rem;
    margin-bottom: 5px;
}

.why-item p {
    color: #6c757d;
    font-size: 0.85rem;
}

.why-image {
    position: relative;
    text-align: center;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #003d46;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d89f47;
}

.experience-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #d89f47;
}

.experience-badge span:not(.num) {
    color: #fff;
    font-size: 0.8rem;
}

/* ==================== HERO BADGE UPDATE ==================== */
.hero-badge {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badge span {
    display: inline-block;
    background: rgba(216, 159, 71, 0.15);
    color: #d89f47;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.badge-gold {
    background: #d89f47 !important;
    color: #003d46 !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badge {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
}