.elementor-425 .elementor-element.elementor-element-69d83f6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-425 .elementor-element.elementor-element-bd66a17{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-425 .elementor-element.elementor-element-69d83f6{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-bd66a17 */:root {
    --gold: #F3D098;
    --dark: #1a1a1a;
    --dark-soft: #1e1e1e;
    --dark-light: #222;
    --dark-lighter: #2a2a2a;
    --text: #e4e4e4;
    --text-soft: #c0c0c0;
    --shadow-dark: #0f0f0f;
    --shadow-light: #2c2c2c;
    --gold-glow: rgba(243, 208, 152, 0.15);
    --gold-soft: rgba(243, 208, 152, 0.08);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 999px;
}


.about-page {
      font-family: "Tanha", Sans-serif;
    position: relative;
    background-color: var(--dark);
    overflow-x: hidden;
}

.bg-soft {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.bg-soft-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: var(--dark-lighter);
    border-radius: 50% 50% 40% 40%;
    padding: 8px;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light),
        inset 0 0 0 1px rgba(243, 208, 152, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.float-item img {
    width: 35px;
    height: auto;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.badge-spark {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: spark 2s infinite;
}

@keyframes spark {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.title-light {
    color: var(--text);
    font-weight: 400;
}

.title-golden {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 20px var(--gold-glow);
    position: relative;
}

.title-golden::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gold-soft);
    filter: blur(4px);
    z-index: -1;
}

.title-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto 0;
    border-radius: var(--radius-full);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--dark);
}

.about-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.about-hero-content {
    animation: fadeUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-lighter);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light);
}

.hero-badge .badge-name {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    margin-bottom: 25px;
}

.hero-title .title-light {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.hero-title .title-golden {
    font-size: 64px;
    display: block;
}

.hero-subtitle {
    color: var(--text-soft);
    font-size: 20px;
    margin-bottom: 50px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.scroll-text {
    color: var(--text-soft);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.3); opacity: 0.3; }
}

.hero-balloon {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: var(--dark-lighter);
    border-radius: 50% 50% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        15px 15px 30px var(--shadow-dark),
        -15px -15px 30px var(--shadow-light);
    animation: float 6s ease-in-out infinite;
    z-index: 15;
}

.hero-balloon img {
    width: 60px;
    height: auto;
    opacity: 0.8;
}

/* ===== بخش 2: معرفی ===== */
.about-intro {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark);
    overflow: hidden;
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image-col {
    position: relative;
    animation: scaleIn 1s ease forwards;
}

.intro-image-frame {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.frame-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--gold), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.intro-image-frame:hover .frame-ring {
    opacity: 1;
}

.frame-content {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        25px 25px 50px var(--shadow-dark),
        -25px -25px 50px var(--shadow-light);
}

.intro-image {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.intro-image-frame:hover .intro-image {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, 
        rgba(26, 26, 26, 0.95) 0%,
        transparent 100%);
}

.caption-year {
    color: var(--gold);
    font-size: 16px;
    font-weight: 500;
    padding: 6px 18px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(243, 208, 152, 0.3);
    display: inline-block;
}

.intro-text-col {
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

.intro-text-box {
    background: var(--dark-soft);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 
        20px 20px 40px var(--shadow-dark),
        -20px -20px 40px var(--shadow-light),
        inset 0 0 0 1px rgba(243, 208, 152, 0.1);
}

.intro-title {
    color: var(--gold);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 70px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.intro-paragraph {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.intro-quote {
    position: relative;
    margin-top: 30px;
    padding: 20px 30px;
    background: var(--dark-lighter);
    border-radius: var(--radius-md);
    box-shadow: 
        inset 5px 5px 10px var(--shadow-dark),
        inset -5px -5px 10px var(--shadow-light);
}

.quote-symbol {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 50px;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

.quote-phrase {
    color: var(--text);
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    padding-right: 35px;
}

.intro-float-1 {
    top: 15%;
    left: 3%;
    animation: float 7s ease-in-out infinite;
}

.intro-float-2 {
    bottom: 10%;
    right: 3%;
    animation: float 8s ease-in-out infinite reverse;
}

/* ===== بخش 3: آمار ===== */
.about-stats-section {
    position: relative;
    padding: 60px 0;
    background-color: var(--dark);
}

.stats-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--dark-soft);
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 
        inset 5px 5px 10px var(--shadow-dark),
        inset -5px -5px 10px var(--shadow-light);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        15px 15px 30px var(--shadow-dark),
        -15px -15px 30px var(--shadow-light),
        0 0 30px var(--gold-glow);
}

.stat-number {
    color: var(--gold);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--gold-glow);
}

.stat-label {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-desc {
    color: var(--text-soft);
    font-size: 14px;
    opacity: 0.8;
}

/* ===== بخش 4: خدمات ویژه ===== */
.about-services {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark);
    overflow: hidden;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-main-title {
    margin-bottom: 15px;
}

.services-main-title .title-light {
    font-size: 38px;
    display: inline-block;
    margin-left: 10px;
}

.services-main-title .title-golden {
    font-size: 42px;
    display: inline-block;
}

.services-subtitle {
    color: var(--text-soft);
    font-size: 18px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-feature {
    background: var(--dark-soft);
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 
        15px 15px 30px var(--shadow-dark),
        -15px -15px 30px var(--shadow-light),
        inset 0 0 0 1px rgba(243, 208, 152, 0.1);
    transition: all 0.4s ease;
}

.service-feature:hover {
    transform: translateY(-8px);
    box-shadow: 
        20px 20px 40px var(--shadow-dark),
        -20px -20px 40px var(--shadow-light),
        0 0 30px var(--gold-glow);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        10px 10px 20px var(--shadow-dark),
        -10px -10px 20px var(--shadow-light),
        inset 0 0 0 1px rgba(243, 208, 152, 0.15);
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-feature:hover .feature-icon-wrapper {
    box-shadow: 
        inset 6px 6px 12px var(--shadow-dark),
        inset -6px -6px 12px var(--shadow-light);
    transform: scale(0.95);
}

.feature-icon {
    font-size: 36px;
}

.feature-title {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.services-float-1 {
    top: 15%;
    right: 2%;
    animation: float 7s ease-in-out infinite;
}

.services-float-2 {
    bottom: 10%;
    left: 2%;
    animation: float 8s ease-in-out infinite reverse;
}

/* ===== بخش 5: گالری ===== */
.about-gallery {
    position: relative;
    padding: 80px 0;
    background-color: var(--dark);
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-main-title {
    margin-bottom: 15px;
}

.gallery-main-title .title-light {
    font-size: 38px;
    display: inline-block;
    margin-left: 10px;
}

.gallery-main-title .title-golden {
    font-size: 42px;
    display: inline-block;
}

.gallery-subtitle {
    color: var(--text-soft);
    font-size: 18px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        15px 15px 30px var(--shadow-dark),
        -15px -15px 30px var(--shadow-light),
        inset 0 0 0 1px rgba(243, 208, 152, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.gallery-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        20px 20px 40px var(--shadow-dark),
        -20px -20px 40px var(--shadow-light),
        0 0 30px var(--gold-glow);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    aspect-ratio: 4/3;
}

.gallery-item-large .gallery-img {
    aspect-ratio: 16/9;
}

.gallery-frame:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(26, 26, 26, 0.9) 0%,
        transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.overlay-icon {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.overlay-text {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
}

/* ===== بخش 6: نقل قول پایانی ===== */
.about-final-quote {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark);
    overflow: hidden;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.final-quote-box {
    background: var(--dark-soft);
    padding: 60px 50px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 
        25px 25px 50px var(--shadow-dark),
        -25px -25px 50px var(--shadow-light),
        inset 0 0 0 1px rgba(243, 208, 152, 0.1);
    position: relative;
}

.big-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: var(--gold);
    opacity: 0.1;
    font-family: serif;
}

.final-quote-text {
    color: var(--text);
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.final-quote-author {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
}

.final-float-1 {
    top: 20%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
}

.final-float-2 {
    bottom: 20%;
    right: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

/* ===== بخش 7: فوتر ===== */
.about-footer {
    background-color: var(--dark);
    padding: 70px 0 30px;
    position: relative;
    border-top: 1px solid rgba(243, 208, 152, 0.1);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col-logo {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--gold-glow));
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.footer-about {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-title {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.footer-contact {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 
        5px 5px 10px var(--shadow-dark),
        -5px -5px 10px var(--shadow-light);
}

.contact-text {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-text:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 20px;
    box-shadow: 
        5px 5px 10px var(--shadow-dark),
        -5px -5px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    box-shadow: 
        inset 4px 4px 8px var(--shadow-dark),
        inset -4px -4px 8px var(--shadow-light);
    transform: scale(0.95);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 208, 152, 0.1);
    color: var(--text-soft);
    font-size: 14px;
}

.designer {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== بادکنک‌های سراسری ===== */
.global-float-1 {
    top: 15%;
    right: 2%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.15;
}

.global-float-2 {
    bottom: 10%;
    left: 2%;
    animation: float 9s ease-in-out infinite reverse;
    opacity: 0.1;
}

/* ===== انیمیشن‌ها ===== */
.about-hero-content {
    animation: fadeUp 1s ease forwards;
}

.intro-text-col {
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

.intro-image-col {
    animation: scaleIn 1s ease forwards;
}

.stat-card {
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.service-feature {
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
}

.service-feature:nth-child(1) { animation-delay: 0.1s; }
.service-feature:nth-child(2) { animation-delay: 0.2s; }
.service-feature:nth-child(3) { animation-delay: 0.3s; }
.service-feature:nth-child(4) { animation-delay: 0.4s; }

.gallery-item {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.final-quote-box {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title .title-light {
        font-size: 40px;
    }
    
    .hero-title .title-golden {
        font-size: 52px;
    }
    
    .intro-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image-col {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
    }
    
    .footer-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col-logo {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title .title-light {
        font-size: 32px;
    }
    
    .hero-title .title-golden {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .intro-text-box {
        padding: 30px;
    }
    
    .intro-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-main-title .title-light,
    .services-main-title .title-golden {
        font-size: 32px;
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: auto;
    }
    
    .final-quote-text {
        font-size: 20px;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
    }
    
    .footer-col-logo {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-light {
        font-size: 28px;
    }
    
    .hero-title .title-golden {
        font-size: 36px;
    }
    
    .hero-badge {
        padding: 8px 20px;
    }
    
    .intro-text-box {
        padding: 25px 20px;
    }
    
    .quote-phrase {
        font-size: 16px;
    }
    
    .final-quote-box {
        padding: 40px 25px;
    }
    
    .final-quote-text {
        font-size: 18px;
    }
    
    .global-float-1,
    .global-float-2 {
        display: none;
    }
}/* End custom CSS */