/* --- Global Styles & Color Palette --- */
:root {
    --color-black: #20202f;
    --color-black-rgb: 32, 32, 47;
    --color-header-bg: #20202f;
    --color-dark-gray: #1C1C1C;
    --color-gold: #e4b95b;
    --color-gold-rgb: 176, 141, 87;
    --color-light-gold: #e4b95b;
    --color-light-gold-rgb: 212, 175, 55; /* Added for consistency */
    --color-text-on-dark: #ffffff;
    --color-text-light-gray: #b0b0b0;
    --color-text-dark-gray: #888888;

    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Lato', sans-serif;

    --header-height: 85px;
    --border-radius-main: 6px;
    --footer-padding-top-bottom: 70px 40px;
    --container-padding-mobile: 15px;
}

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

body {
    font-family: var(--font-secondary);
    background-color: var(--color-black);
    color: var(--color-text-on-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { width: 90%; max-width: 1360px; margin: 0 auto; padding: 0 20px; }

a { color: var(--color-gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-light-gold); }

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); margin-bottom: 1rem; color: var(--color-light-gold); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); text-align: center; margin-bottom: 4rem; }
h3 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); color: var(--color-light-gold); }
h4 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { margin-bottom: 1.5rem; font-size: 1.08rem; font-weight: 300; line-height: 1.75; }
p.large-text { font-size: 1.25rem; line-height: 1.85; max-width: 800px; margin-left: auto; margin-right: auto; }

img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius-main); }


/* --- PRELOADER --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-black); z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.5s ease-out 0.3s, visibility 0.5s ease-out 0.3s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo img { max-width: 150px; margin-bottom: 30px; animation: preloader-pulse 1.5s infinite ease-in-out; }
.preloader-dots { display: flex; }
.preloader-dots .dot {
    width: 12px; height: 12px; margin: 0 5px; background-color: var(--color-gold);
    border-radius: 50%; animation: preloader-dot-bounce 1.4s infinite ease-in-out both;
}
.preloader-dots .dot:nth-child(1) { animation-delay: -0.32s; }
.preloader-dots .dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes preloader-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes preloader-dot-bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1.0); } }


/* --- Header --- */
.site-header {
    background-color: var(--color-header-bg); position: sticky; top: 0; left: 0; width: 100%;
    z-index: 1000; height: var(--header-height); display: flex; align-items: center;
    border-bottom: 1px solid transparent; box-shadow: none;
    transition: height 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.site-header.scrolled { height: calc(var(--header-height) - 10px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); border-bottom-color: rgba(var(--color-gold-rgb), 0.2); }
.header-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; position: relative; }
.main-navigation.nav-left { grid-column: 1 / 2; justify-self: end; padding-right: 40px; z-index: 1; }
.logo-area { grid-column: 2 / 3; display: flex; justify-content: center; align-items: center; position: relative; z-index: 1001;}
.logo-area .site-logo {
    max-height: calc(var(--header-height) + 50px); width: auto; position: relative; top: 30px;
    transition: max-height 0.35s ease-in-out, top 0.35s ease-in-out, transform 0.35s ease-in-out;
    transform-origin: center top; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}
.site-header.scrolled .logo-area .site-logo { max-height: var(--header-height); top: 0px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));}
.main-navigation.nav-right { grid-column: 3 / 4; justify-self: start; padding-left: 40px; z-index: 1;}
.main-navigation ul { list-style: none; display: flex; align-items: center; padding: 0; margin: 0; }
.main-navigation ul li { margin: 0 15px; }
.main-navigation ul li a {
    font-family: var(--font-secondary); color: #e0e0e0; font-weight: 400; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1.1px; padding: 8px 5px; position: relative;
    transition: color 0.3s ease, opacity 0.3s ease; opacity: 0.9; text-shadow: none;
}
.site-header.scrolled .main-navigation ul li a { color: #cccccc; opacity: 0.85; }
.main-navigation ul li a:hover, .main-navigation ul li a.active-link { color: var(--color-light-gold); opacity: 1; }
.main-navigation ul li a::before {
    content: ""; position: absolute; bottom: -4px; left: 50%;
    transform: translateX(-50%); width: 0; height: 2px;
    background-color: var(--color-light-gold);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.main-navigation ul li a:hover::before, .main-navigation ul li a.active-link::before { width: 75%; }
.mobile-menu-trigger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002;
    grid-column: 3 / 4; justify-self: end; margin-left: auto; position: relative;
}
.mobile-menu-trigger span {
    display: block; width: 28px; height: 2.5px; background-color: var(--color-gold);
    margin: 6px 0; border-radius: 3px; transition: all 0.3s ease-in-out;
}
.site-header.scrolled .mobile-menu-trigger span { box-shadow: none; }

/* --- Hero Section --- */
.hero-section {
    background-image:
        linear-gradient(to bottom, rgba(var(--color-black-rgb),0) 0%, rgba(var(--color-black-rgb),0.1) 10%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.85) 100%),
        url('images/hero_background.jpg'); /* Default starting image */
    background-size: cover; background-position: center center; padding-top: 140px;
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; box-sizing: border-box; position: relative;
    background-attachment: fixed;
    transition: opacity 0.7s ease-in-out; /* ADDED FOR SMOOTH FADE TRANSITION */
}
.hero-content { max-width: 850px; position: relative; padding: 20px; }
.hero-content h1 { text-shadow: 2px 2px 10px rgba(0,0,0,0.7); }
.hero-content p { font-size: 1.3rem; margin-bottom: 2.5rem; color: #e0e0e0; font-weight: 300; }

/* --- CTA Button --- */
.cta-button {
    display: inline-block; padding: 15px 40px; font-family: var(--font-primary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; border-radius: 50px;
    border: 2px solid var(--color-gold); background-color: var(--color-gold); color: var(--color-black);
    font-size: 0.95rem; position: relative; overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cta-button:hover {
    background-color: transparent; color: var(--color-gold);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.35);
}
.cta-button.hero-cta {
    background-color: transparent;
    color: var(--color-light-gold);
    border: 2px solid var(--color-light-gold);
    padding: 14px 35px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-shadow: none;
    transition: all 0.3s ease-out;
    padding-right: 55px; 
}
.cta-button.hero-cta:hover {
    background-color: var(--color-light-gold);
    color: var(--color-black);
    border-color: var(--color-light-gold);
    box-shadow: 0 5px 20px rgba(var(--color-gold-rgb), 0.25);
    transform: translateY(-3px);
}
.cta-button.hero-cta::after {
    content: '↓';
    font-family: var(--font-secondary);
    font-size: 1.4em;
    line-height: 1;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: var(--color-light-gold);
    transition: opacity 0.3s ease, right 0.3s ease, color 0.3s ease;
}
.cta-button.hero-cta:hover::after { opacity: 1; right: 12px; color: var(--color-black); }

.cta-button.secondary {
    background-color: transparent; color: var(--color-gold); font-family: var(--font-secondary);
    padding: 12px 30px; font-size: 0.85rem;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cta-button.secondary:hover { background-color: var(--color-gold); color: var(--color-black); box-shadow: 0 5px 15px rgba(var(--color-gold-rgb), 0.2); }

/* --- Content Sections --- */
.content-section,
.welcome-phigha-section,
.phigha-features-section {
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(80px, 10vw, 120px);
}
.content-section.dark-bg { background-color: var(--color-dark-gray); border-top: 1px solid rgba(var(--color-gold-rgb), 0.15); border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.15); }
.text-center { text-align: center; }
.feature-image { margin: 2rem auto 2.5rem; max-width: 700px; border: 3px solid var(--color-gold); box-shadow: 0 0 25px rgba(var(--color-gold-rgb), 0.2); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card {
    background-color: var(--color-dark-gray); padding: 30px; border-radius: var(--border-radius-main);
    text-align: center; border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 20px rgba(var(--color-gold-rgb), 0.2); border-color: var(--color-gold); }
.product-card img { margin-bottom: 1.5rem; aspect-ratio: 4/5; object-fit: cover; }
.product-card h3 { margin-top: 1rem; margin-bottom: 0.8rem; }
.product-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

/* --- Welcome PHIGHA Section --- */
.welcome-phigha-section { background-color: var(--color-black); }
.welcome-phigha-header { text-align: center; margin-bottom: 50px; }
.welcome-phigha-header h2 { margin-bottom: 0.8rem; }
.welcome-phigha-header .sub-headline {
    font-size: 1.1rem; color: var(--color-text-on-dark); opacity: 0.85; max-width: 750px;
    margin: 0 auto 2rem auto; font-family: var(--font-secondary); font-weight: 300; line-height: 1.6;
}
.welcome-phigha-content-grid { display: grid; grid-template-columns: 55% 40%; gap: 5%; align-items: start; }
.welcome-phigha-text-content p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; color: var(--color-text-on-dark); font-weight: 300; }
.ceo-signature-phigha { margin-top: 25px; margin-bottom: 30px; }
.ceo-signature-phigha .signature-graphic-phigha { font-family: 'Caveat', cursive; font-size: 2.2rem; color: var(--color-light-gold); margin-bottom: 0.1rem; line-height: 1.2; }
.ceo-signature-phigha .signature-graphic-phigha i { font-style: normal; }
.ceo-signature-phigha .ceo-title-phigha { font-family: var(--font-secondary); font-size: 0.9rem; color: var(--color-text-on-dark); opacity: 0.8; margin-bottom: 0; letter-spacing: 0.5px; text-transform: uppercase; }
.welcome-phigha-text-content .cta-button { margin-top: 20px; }
.welcome-phigha-image-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, auto); gap: 15px; }
.welcome-phigha-image-gallery .gallery-image-phigha { position: relative; overflow: hidden; }
.welcome-phigha-image-gallery .gallery-image-phigha a::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(var(--color-black-rgb), 0);
    background-image: url('images/icon-magnify.svg');
    background-repeat: no-repeat; background-position: center center; background-size: 40px 40px;
    opacity: 0; transition: opacity 0.35s ease, background-color 0.35s ease; pointer-events: none;
}
.welcome-phigha-image-gallery .gallery-image-phigha a:hover::after { opacity: 1; background-color: rgba(var(--color-black-rgb), 0.6); }
.welcome-phigha-image-gallery .gallery-image-phigha img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--border-radius-main); transition: transform 0.35s ease, filter 0.35s ease; }
.welcome-phigha-image-gallery .gallery-image-phigha a:hover img { transform: scale(1.08); filter: brightness(0.8); }

/* --- PHIGHA Features Section --- */
.phigha-features-section { background-color: var(--color-black); text-align: center; position: relative; overflow: hidden; }
.phigha-features-section .decorative-corner { position: absolute; opacity: 0.2; pointer-events: none; }
.phigha-features-section .decorative-corner.top-left { top: 20px; left: 20px; width: 100px; }
.phigha-features-section .decorative-corner.top-right { top: 20px; right: 20px; width: 70px; }
.phigha-features-header { margin-bottom: 60px; }
.phigha-features-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.phigha-features-header p { font-size: 1rem; color: var(--color-text-on-dark); opacity: 0.8; max-width: 650px; margin: 0 auto; font-weight: 300; line-height: 1.6; }
.phigha-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item { padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature-item:hover { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px rgba(var(--color-gold-rgb),0.1); }
.feature-icon { height: 60px; width: auto; margin: 0 auto 20px auto; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.feature-item:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-item h3 { font-family: var(--font-primary); color: #FFFFFF; font-size: clamp(1.1rem, 2.5vw, 1.3rem); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.7rem; font-weight: 700; }
.feature-item p { font-size: 0.9rem; color: var(--color-text-on-dark); opacity: 0.85; line-height: 1.65; font-weight: 300; margin-bottom: 0; }

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-on-scroll { opacity: 1; transition-property: opacity, transform; transition-duration: 0.8s; transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reveal-on-scroll.fade-in { transform: translateY(20px); }
.reveal-on-scroll.fade-in.visible { opacity: 1; transform: translateY(0); }
.reveal-on-scroll.slide-up { transform: translateY(50px); }
.reveal-on-scroll.slide-up.visible { opacity: 1; transform: translateY(0); }
.reveal-on-scroll.slide-left { transform: translateX(-50px); }
.reveal-on-scroll.slide-left.visible { opacity: 1; transform: translateX(0); }
.reveal-on-scroll.slide-right { transform: translateX(50px); }
.reveal-on-scroll.slide-right.visible { opacity: 1; transform: translateX(0); }
.reveal-on-scroll.zoom-in { transform: scale(0.9); }
.reveal-on-scroll.zoom-in.visible { opacity: 1; transform: scale(1);

    max-width: 100%;
    height: auto;
    display: block;
    
}

/* --- ANIMATED HEADLINES --- */
.animated-headline {}
.headline-word { display: inline-block; overflow: hidden; }
.headline-word-inner {
    display: inline-block; opacity: 0; transform: translateY(100%);
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.animated-headline.in-view .headline-word-inner { opacity: 1; transform: translateY(0); /* JS handles delay */ }
.animated-headline br { display: block; content: ""; }

/* --- REFINED FOOTER STYLES --- */
.site-footer-main.refined-footer-style {
    background-color: var(--color-black); color: var(--color-text-light-gray);
    padding: var(--footer-padding-top-bottom); border-top: 2px solid var(--color-gold);
    text-align: center; position: relative;
}
.footer-contact-info { margin-bottom: 50px; }
.footer-brand-name {
    font-family: var(--font-primary); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--color-gold);
    margin-bottom: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
}
.footer-address { font-style: normal; }
.footer-address .contact-item {
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; line-height: 1.8; color: var(--color-text-light-gray); margin-bottom: 12px;
}
.footer-address .contact-icon { width: 18px; height: 18px; fill: var(--color-gold); margin-right: 10px; }
.footer-address .contact-item a { color: var(--color-text-light-gray); text-decoration: none; transition: color 0.3s ease; }
.footer-address .contact-item a:hover { color: var(--color-light-gold); }
.footer-main-bar {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    gap: 20px; padding: 25px 0; border-top: 1px solid rgba(var(--color-gold-rgb), 0.2); margin-bottom: 25px;
}
.footer-copyright { text-align: left; }
.footer-copyright p { font-size: 0.9rem; color: white; margin-bottom: 0; }
.footer-logo-container { display: flex; justify-content: center; }
.footer-center-logo {
   
    padding: 6px; background-color: var(--color-black); transition: transform 0.3s ease;
}
.footer-center-logo:hover { transform: scale(1.05); }
.footer-social-media { text-align: right; }
.footer-social-media a { display: inline-block; margin-left: 15px; transition: transform 0.3s ease, opacity 0.3s ease; }
.footer-social-media a:first-child { margin-left: 0; }
.footer-social-media a:hover { transform: scale(1.15); opacity: 0.8; }
.footer-social-media svg { width: 22px; height: 22px; fill: #FFFFFF; }
.footer-final-notice { font-size: 0.9rem; color: var(--color-text-on-dark); opacity: 0.7; margin-top: 30px; font-weight: normal; }
.scroll-to-top-button {
    position: fixed; bottom: 25px; right: 25px; background-color: var(--color-gold); color: var(--color-black);
    width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 999; box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.scroll-to-top-button.show { opacity: 1; visibility: visible; }
.scroll-to-top-button:hover { background-color: var(--color-light-gold); transform: translateY(-3px); }
.scroll-to-top-button svg { width: 22px; height: 22px; fill: var(--color-black); }












/* --- NEW SIMPLIFIED FOOTER STYLES --- */
.site-footer-new {
    background-color: var(--color-black); /* თქვენი :root ცვლადი */
    color: var(--color-text-light-gray); /* თქვენი :root ცვლადი */
    padding: 60px 0 20px 0;
    border-top: 3px solid var(--color-gold); /* თქვენი :root ცვლადი */
    font-family: var(--font-secondary); /* თქვენი :root ცვლადი */
    line-height: 1.7;
    /* დავრწმუნდეთ, რომ გამოჩნდება */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative; /* Scroll-to-top-ისთვის */
}

.footer-content-new { /* .container კლასი უკვე უნდა გქონდეთ განსაზღვრული */
    display: flex;
    flex-wrap: wrap; /* პატარა ეკრანებზე რომ გადაეწყოს */
    justify-content: space-between;
    gap: 30px; /* სექციებს შორის დაშორება */
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2); /* თქვენი :root ცვლადი */
}

.footer-section-new {
    flex: 1; /* სექციები თანაბრად გადანაწილდეს */
    min-width: 280px; /* მინიმალური სიგანე, სანამ გადაეწყობა */
    padding: 0 15px; /* მცირე შიდა დაშორება */
}

.footer-section-new h4 {
    font-family: var(--font-primary); /* თქვენი :root ცვლადი */
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section-new p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--color-text-light-gray);
}

.footer-section-new ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section-new ul li {
    margin-bottom: 8px;
}

.footer-section-new ul li a,
.footer-section-new p a {
    color: var(--color-text-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section-new ul li a:hover,
.footer-section-new p a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.footer-logo-simple {
    max-width: 120px; /* ლოგოს ზომა */
    margin-top: 15px;
    opacity: 0.8;
}

.contact-info-new p i {
    margin-right: 10px;
    color: var(--color-gold);
    width: 16px; /* ხატულების გასწორებისთვის */
    text-align: center;
}

.social-media-new {
    margin-top: 20px;
}

.social-media-new a {
    color: var(--color-text-light-gray);
    font-size: 1.3rem;
    margin-right: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media-new a:last-child {
    margin-right: 0;
}

.social-media-new a:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.footer-bottom-new {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-dark-gray); /* თქვენი :root ცვლადი */
    padding-top: 20px;
}

#dynamicFooterYearNew {
    /* თუ რამე სპეციფიკური სტილი სჭირდება */
}

/* Scroll to Top Button - New */
.scroll-to-top-button-new {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-gold);
    color: var(--color-black);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-to-top-button-new.show { /* ამ კლასს ამატებს JS */
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-button-new:hover {
    background-color: var(--color-light-gold); /* თქვენი :root ცვლადი */
    transform: translateY(-3px);
}

/* Responsive adjustments for the new footer */
@media (max-width: 768px) {
    .footer-content-new {
        flex-direction: column; /* სვეტებად დალაგება */
        align-items: center; /* ცენტრირება */
        text-align: center;
    }
    .footer-section-new {
        min-width: 100%; /* სრული სიგანე */
        margin-bottom: 30px;
    }
    .footer-section-new:last-child {
        margin-bottom: 0;
    }
    .contact-info-new p i {
        width: auto; /* ხატულები აღარ იქნება ფიქსირებული სიგანის */
    }
}






















/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) { /* Tablet */
    .container { /* Already handled for smaller screens, 1024px retains default padding */ }
    .hero-section { padding-top: 115px; }
    .logo-area .site-logo { max-height: calc(var(--header-height) + 30px); top: 15px; }
    .site-header.scrolled .logo-area .site-logo { max-height: calc(var(--header-height) - 10px); top: 0px; }
    .header-container { grid-template-columns: auto 1fr auto; column-gap: 10px; }
    .logo-area { grid-column: 1 / 2; justify-self: start; padding-left: 0; }
    .main-navigation.nav-left, .main-navigation.nav-right {
        display: none; position: absolute; top: var(--header-height); left: 0; width: 100%;
        background-color: rgba(var(--color-black-rgb),0.98); backdrop-filter: blur(8px);
        flex-direction: column; align-items: center; padding: 25px 0; 
        border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2); box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    .main-navigation.nav-left.active, .main-navigation.nav-right.active { display: flex; }
    .main-navigation.nav-left.active { z-index: 99; }
    .main-navigation.nav-right.active { padding-top: 25px; } 
    .main-navigation ul { flex-direction: column; width: 100%; }
    .main-navigation ul li { margin: 15px 0; width: 100%; text-align: center; }
    .main-navigation ul li a { font-size: 1.05rem; padding: 12px 0; display: block; }
    .main-navigation ul li a::before { bottom: 5px; }
    .main-navigation ul li a:hover::before, .main-navigation ul li a.active-link::before { width: 50%; }
    .mobile-menu-trigger { display: block; grid-column: 3 / 4; justify-self: end; }
    .mobile-menu-trigger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
    .mobile-menu-trigger.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-trigger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

    .welcome-phigha-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .welcome-phigha-image-gallery { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 20px; }
    .welcome-phigha-text-content { text-align: left; }
    .phigha-features-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .phigha-features-section .decorative-corner.top-left { width: 80px; left: 10px; top: 10px; }
    .phigha-features-section .decorative-corner.top-right { width: 60px; right: 10px; top: 10px; }
}

@media (max-width: 768px) { /* Small Tablet / Large Mobile */
    :root { --header-height: 75px; --footer-padding-top-bottom: 50px 30px;}
    .container { padding-left: var(--container-padding-mobile); padding-right: var(--container-padding-mobile); }
    .hero-section { padding-top: 95px; background-attachment: scroll; }
    .logo-area .site-logo { max-height: calc(var(--header-height) + 20px); top: 10px; }
    .site-header.scrolled .logo-area .site-logo { max-height: calc(var(--header-height) - 5px); top: 0px; }
    h1 { font-size: clamp(2rem, 7vw, 3rem); } 
    h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 2rem; } 
    p { font-size: 1rem; }
    p.large-text { font-size: 1.1rem; line-height: 1.75; }
    .cta-button.hero-cta { padding: 12px 30px; font-size: 0.9rem; padding-right: 45px; }
    .cta-button.hero-cta::after { font-size: 1.3em; right: 15px; }
    .cta-button.hero-cta:hover::after { right: 10px; }
    .product-grid { grid-template-columns: 1fr; gap: 30px; }
    .content-section,
    .welcome-phigha-section,
    .phigha-features-section {
        padding-top: clamp(50px, 8vw, 80px);
        padding-bottom: clamp(50px, 8vw, 80px);
    }
    .footer-brand-name { font-size: clamp(1.4rem, 3.8vw, 1.9rem); margin-bottom: 20px; }
    .footer-address { text-align: center; }
    .footer-address .contact-item { justify-content: center; font-size: 0.95rem; }
    .footer-main-bar { grid-template-columns: 1fr; gap: 25px; padding: 20px 0; margin-bottom: 20px; border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2); }
    .footer-logo-container { order: -1; }
    .footer-center-logo { max-height: 70px; }
    .footer-copyright, .footer-social-media { text-align: center; }
    .footer-social-media a { margin: 0 8px; }
    .scroll-to-top-button { width: 45px; height: 45px; bottom: 20px; right: 20px; }
    .scroll-to-top-button svg { width: 20px; height: 20px; }
}

@media (max-width: 576px) { /* Small Mobile */
    .welcome-phigha-header { margin-bottom: 30px; }
    .welcome-phigha-header .sub-headline { font-size: 1rem; }
    .welcome-phigha-content-grid { gap: 30px; }
    .welcome-phigha-image-gallery { gap: 10px; }
    .ceo-signature-phigha .signature-graphic-phigha { font-size: 1.8rem; }
    .welcome-phigha-text-content p { font-size: 0.95rem; }
    .phigha-features-header { margin-bottom: 40px; }
    .phigha-features-grid { grid-template-columns: 1fr; gap: 30px; }
    .feature-item { padding: 15px; }
    .phigha-features-section .decorative-corner { display: none; }

    .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); line-height: 1.25;}
    .hero-content p { font-size: 1rem; margin-bottom: 2rem;}
}

@media (max-width: 480px) { /* Extra Small Mobile */
    :root { --footer-padding-top-bottom: 40px 20px;}
    .container { padding-left: 10px; padding-right: 10px; }
    h1 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); } 
    h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); margin-bottom: 1.5rem;} 
    .product-card { padding: 20px; }
    .product-card img { margin-bottom: 1rem; }
    .product-card h3 { font-size: 1.2rem; margin-top: 0.8rem; margin-bottom: 0.6rem;} 
    .product-card p { font-size: 0.85rem; margin-bottom: 1rem;} 
    .cta-button.secondary { padding: 10px 20px; font-size: 0.8rem;}
    .feature-item { padding: 15px 10px; }
    .feature-icon { height: 50px; margin-bottom: 15px; }
    .feature-item h3 { font-size: 1.05rem; } 
    .feature-item p { font-size: 0.8rem; } 
    .welcome-phigha-image-gallery { grid-template-columns: 1fr; gap: 10px; }

    .footer-address { text-align: left; }
    .footer-address .contact-item { justify-content: flex-start; font-size: 0.9rem; padding-left: 10px; padding-right: 10px; }
    .footer-social-media svg { width: 20px; height: 20px; }
    .footer-main-bar { gap: 20px; }
}

/* --- Our Story Page Styles --- */
.story-hero-section {
    background-size: cover;
    background-position: center center;
    padding: clamp(100px, 15vw, 180px) 0; /* ზედა/ქვედა padding */
    text-align: center;
    color: var(--color-text-on-dark);
    position: relative;
}

.story-hero-section::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(var(--color-black-rgb), 0.6); /* ოდნავ მუქი ფონი */
    z-index: 1;
}

.story-hero-section .container {
    position: relative;
    z-index: 2;
}

.story-hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.story-hero-section .sub-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e0e0e0;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-content-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: var(--color-dark-gray); /* ან var(--color-black) თუ გინდათ იგივე ფონი */
}

.story-timeline {
    position: relative;
    max-width: 900px; /* მაქსიმალური სიგანე timeline-ისთვის */
    margin: 0 auto;
}

.story-timeline::before { /* ცენტრალური ხაზი */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: rgba(var(--color-gold-rgb), 0.3);
    z-index: 1;
}

.timeline-item {
    padding: 30px 40px;
    position: relative;
    margin-bottom: 50px;
    width: 50%; /* იკავებს ნახევარ სიგანეს */
    box-sizing: border-box;
    z-index: 2;
}

.timeline-item:nth-child(odd) { /* კენტი ელემენტები მარცხნივ */
    left: 0;
    padding-right: 70px; /* ადგილი ხატულასთვის და ხაზისთვის */
    text-align: right;
}

.timeline-item:nth-child(even) { /* ლუწი ელემენტები მარჯვნივ */
    left: 50%;
    padding-left: 70px; /* ადგილი ხატულასთვის და ხაზისთვის */
    text-align: left;
}
/* ალტერნატიული განლაგება მობილურისთვის */
.timeline-item.alt-layout:nth-child(odd) { /* კენტი ელემენტები მარჯვნივ, თუ alt-layout აქვს */
    left: 50%; text-align: left; padding-left: 70px; padding-right: 40px;
}
.timeline-item.alt-layout:nth-child(even) { /* ლუწი ელემენტები მარცხნივ, თუ alt-layout აქვს */
    left: 0; text-align: right; padding-right: 70px; padding-left: 40px;
}


.timeline-icon {
    position: absolute;
    top: 30px; /* საწყისი პოზიცია, შეიცვლება */
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 3px solid var(--color-black); /* ემთხვევა ფონს */
    box-shadow: 0 0 0 4px var(--color-gold);
}
.timeline-icon img {
    width: 30px; /* ხატულას ზომა */
    height: 30px;
    filter: brightness(0) invert(0.1); /* ხატულას ფერი */
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px; /* ხატულა ხაზზე */
    transform: translateX(0%);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px; /* ხატულა ხაზზე */
    transform: translateX(0%);
}
/* Icon positioning for alt-layout */
.timeline-item.alt-layout:nth-child(odd) .timeline-icon {
    left: -30px; transform: translateX(0%);
}
.timeline-item.alt-layout:nth-child(even) .timeline-icon {
    right: -30px; transform: translateX(0%);
}


.timeline-content {
    background-color: var(--color-black);
    padding: 25px 30px;
    border-radius: var(--border-radius-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(var(--color-gold-rgb),0.2);
}
.timeline-item:hover .timeline-content {
    border-color: rgba(var(--color-gold-rgb),0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.timeline-content h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    color: var(--color-light-gold);
    margin-top: 0;
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light-gray);
    margin-bottom: 1rem;
}
.timeline-content p:last-child {
    margin-bottom: 0;
}
.timeline-inline-image {
    width: 100%;
    max-width: 350px; /* ან თქვენთვის სასურველი ზომა */
    margin-top: 20px;
    border-radius: var(--border-radius-main);
    border: 2px solid rgba(var(--color-gold-rgb), 0.3);
}
.timeline-item:nth-child(odd) .timeline-inline-image {
    float: right; /* სურათი ტექსტის გვერდით, თუ საკმარისი ადგილია */
    margin-left: 15px;
}
.timeline-item:nth-child(even) .timeline-inline-image {
    float: left;
    margin-right: 15px;
}


/* Responsive Timeline */
@media screen and (max-width: 991px) { /* მობილურის ეკრანებზე */
    .story-timeline::before {
        left: 30px; /* ხაზი მარცხნივ */
        transform: translateX(0);
    }

    .timeline-item,
    .timeline-item.alt-layout:nth-child(odd), /* Override alt for mobile */
    .timeline-item.alt-layout:nth-child(even) { /* Override alt for mobile */
        width: 100%;
        padding-left: 80px; /* ადგილი ხატულასთვის და ხაზისთვის */
        padding-right: 25px;
        left: 0 !important; /* ყველა ელემენტი მარცხნიდან იწყება */
        text-align: left !important; /* ტექსტი მარცხნივ */
    }
     .timeline-item:nth-child(odd),
     .timeline-item:nth-child(even){
        text-align: left !important;
     }


    .timeline-icon,
    .timeline-item.alt-layout .timeline-icon { /* Override alt for mobile */
        left: 0px !important; /* ხატულა ხაზზე, რომელიც 30px-ზეა */
        top: 45px;
        transform: translateX(0%);
        right: auto !important; /* ensure it's not pulled to the right */
    }
    .timeline-item:nth-child(odd) .timeline-inline-image,
    .timeline-item:nth-child(even) .timeline-inline-image {
        float: none; /* სურათები ქვემოთ ტექსტის */
        margin: 20px auto 0 auto;
        display: block;
    }
}

/* მენიუში active-link სტილი (იგივე რაც მთავარ გვერდზე) */
.main-navigation ul li a.active-link {
    color: var(--color-light-gold);
    opacity: 1;
}
.main-navigation ul li a.active-link::before {
    width: 75%; /* ან 50% მობილურზე */
}

/* --- Contact Page Styles V2 --- */
.contact-hero-section-v2 {
    position: relative;
    min-height: 60vh; /* სიმაღლე */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-on-dark);
    overflow: hidden; /* მნიშვნელოვანია ფონის ანიმაციისთვის */
}

.contact-hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    /* დავამატოთ ეფექტი სქროლზე (ან უბრალოდ scale) */
    transform: scale(1.15); /* თავდაპირველი ზუმი */
    transition: transform 10s ease-out; /* ნელი ტრანზიცია */
}
.contact-hero-section-v2:hover .contact-hero-background,
body:not(._no-touch) .contact-hero-background { /* ზუმი სქროლისას */
   /* transform: scale(1);  Alternative parallax: use JS for scroll-based transform */
}


.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0.4) 0%, rgba(var(--color-black-rgb), 0.8) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.contact-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem); /* ოდნავ დიდი */
    color: var(--color-light-gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.contact-hero-content .sub-headline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #e8e8e8;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

/* --- Contact Content Section V2 --- */
.contact-content-section-v2 {
    padding: clamp(60px, 10vw, 120px) 0;
    background-color: var(--color-dark-gray); /* ოდნავ ღია ფონი ვიდრე შავი */
}

.contact-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
    color: var(--color-text-light-gray);
    line-height: 1.75;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* ფორმა ოდნავ ფართე */
    gap: clamp(30px, 5vw, 60px);
    align-items: flex-start; /* მნიშვნელოვანია სხვადასხვა სიმაღლის კონტენტისთვის */
}

.contact-form-wrapper,
.contact-details-wrapper {
    background-color: var(--color-black);
    padding: clamp(30px, 4vw, 50px);
    border-radius: var(--border-radius-main);
    border: 1px solid rgba(var(--color-gold-rgb), 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-wrapper h3,
.contact-details-wrapper h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-gold);
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form-wrapper .form-group {
    margin-bottom: 25px;
    position: relative; /* For focus effects or icons */
}
.contact-form-wrapper label {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 400; /* ოდნავ მსუბუქი */
    color: var(--color-text-light-gray); /* #b0b0b0 */
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}
.required-asterisk {
    color: var(--color-gold);
    margin-left: 2px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px 20px; /* ცოტა მეტი padding */
    background-color: var(--color-dark-gray); /* input ფონი */
    border: 1px solid transparent; /* თავიდან გამჭვირვალე */
    border-bottom: 2px solid rgba(var(--color-gold-rgb), 0.4); /* აქცენტი ქვედა ხაზზე */
    color: var(--color-text-on-dark);
    font-family: var(--font-secondary);
    font-size: 1rem;
    border-radius: 4px 4px 0 0; /* ზედა კუთხეები მომრგვალებული */
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    background-color: lighten(var(--color-dark-gray), 3%);
    border-bottom-color: var(--color-gold);
    box-shadow: 0 2px 8px rgba(var(--color-gold-rgb), 0.1);
}
.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit-button { /* cta-button-ის დამატებითი სტილები */
    width: 100%;
    font-size: 1rem;
    padding: 16px 30px;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-submit-button i {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}
.form-submit-button:hover i {
    transform: translateX(5px);
}

.form-status-message {
    margin-top: 20px;
    padding: 12px 18px;
    border-radius: var(--border-radius-main);
    font-size: 0.95rem;
    text-align: center;
}
.form-status-message.success {
    background-color: rgba(var(--color-gold-rgb), 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
}
.form-status-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 0, 0, 0.2);
}
.form-status-message.error p {
    margin-bottom: 5px;
    color: #ff4d4d;
}
.form-status-message.error p:last-child {
    margin-bottom: 0;
}
.form-status-message.pending {
    background-color: rgba(var(--color-text-light-gray), 0.1);
    color: var(--color-text-light-gray);
    border: 1px solid rgba(var(--color-text-light-gray), 0.2);
}


/* Contact Details Styles */
.contact-details-list {
    list-style: none;
    padding-left: 0;
}
.contact-details-list li {
    display: flex;
    align-items: flex-start; /* ხატულა და ტექსტი ზემოდან სწორდება */
    margin-bottom: 30px;
}
.contact-details-list li:last-child {
    margin-bottom: 0;
}
.icon-phigha-gold {
    font-size: 1.8rem; /* ხატულის ზომა */
    color: var(--color-gold);
    margin-right: 20px;
    width: 30px; /* ხატულის ფიქსირებული სიგანე */
    text-align: center;
    flex-shrink: 0; /* რომ არ დაპატარავდეს */
    padding-top: 3px; /* ოდნავ ქვემოთ */
}
.detail-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-text-on-dark);
    margin: 0 0 5px 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.detail-text p {
    font-size: 0.95rem;
    color: var(--color-text-light-gray);
    margin-bottom: 5px;
    line-height: 1.6;
}
.detail-text p:last-child { margin-bottom: 0; }
.detail-text small {
    font-size: 0.8rem;
    color: var(--color-text-dark-gray);
    display: block;
}
.detail-text a {
    color: var(--color-text-light-gray);
    transition: color 0.3s ease;
}
.detail-text a:hover,
.scroll-to-map-link:hover {
    color: var(--color-gold);
    text-decoration: underline;
}
.scroll-to-map-link{
    font-size: 0.9em;
    font-weight: bold;
}

.contact-socials-v2 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--color-gold-rgb), 0.15);
}
.contact-socials-v2 h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--color-text-on-dark);
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.social-icon-phigha {
    display: inline-flex; /* ცენტრირებისთვის */
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(var(--color-gold-rgb), 0.1);
    color: var(--color-gold);
    font-size: 1.2rem;
    border-radius: 50%;
    margin-right: 12px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(var(--color-gold-rgb), 0.3);
}
.social-icon-phigha:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px) scale(1.05);
}

/* Map Section Styles V2 */
.contact-map-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background-color: var(--color-black); /* იგივე ფერი რაც ჰედერ/ფუტერი */
}
.section-title-map{
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
    font-size: clamp(2rem, 4vw, 3rem);
}
.map-container-v2 {
    border-radius: var(--border-radius-main);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(var(--color-gold-rgb), 0.2); /* ოქროსფერი ჩარჩო */
    max-width: 1200px; /* რუკის მაქს. სიგანე */
    margin: 0 auto; /* ცენტრირება */
}
.map-container-v2 iframe {
    display: block;
}


/* Responsive Adjustments for Contact V2 */
@media screen and (max-width: 991px) {
    .contact-grid-v2 {
        grid-template-columns: 1fr; /* ერთი სვეტი */
    }
    .contact-form-wrapper {
        order: 1; /* ფორმა პირველი */
    }
    .contact-details-wrapper {
        order: 2; /* დეტალები მეორე */
    }
     .contact-intro-text { margin-bottom: 40px;}
}

@media screen and (max-width: 768px) {
    .contact-hero-section-v2 { min-height: 50vh; }
    .form-row {
        grid-template-columns: 1fr; /* ფორმის ველები ერთ სვეტად */
        gap: 0; /* ზედა ველს არ ექნება ქვედა margin-bottom */
    }
    .form-row .form-group:first-child { /* სახელი */
         margin-bottom: 25px; /* აღვადგინოთ margin, რადგან მეორე ქვევით გადავა */
    }
    .icon-phigha-gold {
        font-size: 1.6rem;
        margin-right: 15px;
        width: 25px;
    }
    .detail-text h4 { font-size: 1.1rem; }
    .detail-text p { font-size: 0.9rem; }
    .social-icon-phigha { width: 40px; height: 40px; font-size: 1.1rem; }
}
















/* --- Immersive Gallery Page Styles V3 --- */
.gallery-page-v3 {
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.gallery-hero-section-v3 {
    height: 90vh; /* თითქმის სრული ეკრანი */
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-on-dark);
    overflow: hidden;
}
.video-background-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1;
}
.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ფარავს მთლიან არეას */
    opacity: 0; /* JS fades it in */
    transition: opacity 0.8s ease-in-out;
}
.hero-video-fallback {
    width: 100%; height: 100%;
    background-size: cover; background-position: center center;
    display: none; /* Shown by JS if video fails */
}

.gallery-hero-overlay-v3 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0.2) 0%, rgba(var(--color-black-rgb), 0.75) 100%);
    z-index: 2;
}

.gallery-hero-content-v3 {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.gallery-hero-content-v3 h1 {
    font-size: clamp(3rem, 7vw, 5.5rem); /* კიდევ უფრო დიდი */
    color: var(--color-light-gold);
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    line-height: 1.1;
}

.gallery-hero-content-v3 .sub-headline {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    color: #f0f0f0; /* ოდნავ ღია */
    font-weight: 300;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.75;
}
.hero-cta-gallery { /* Inherits .cta-button but adds specific style */
    padding: 16px 45px;
    font-size: 1rem;
    letter-spacing: 1.5px;
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 5px 20px rgba(var(--color-gold-rgb), 0.3);
}
.hero-cta-gallery:hover {
    background-color: transparent;
    color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(var(--color-gold-rgb), 0.4);
    transform: translateY(-3px) scale(1.03);
}
.hero-cta-gallery i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.hero-cta-gallery:hover i {
    transform: translateY(3px);
}

/* --- Main Gallery Section V3 --- */
.gallery-main-section-v3 {
    padding: clamp(60px, 10vw, 100px) 0;
    background-color: #121212; /* ძალიან მუქი ფონი, თითქმის შავი */
}

.gallery-filters-v3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(50px, 7vw, 70px);
    gap: 12px 18px;
    padding: 15px;
    background-color: rgba(var(--color-black-rgb), 0.3); /* ფილტრების ფონი */
    border-radius: var(--border-radius-main);
    border: 1px solid rgba(var(--color-gold-rgb), 0.1);
}

.filter-button-v3 {
    font-family: var(--font-secondary);
    font-weight: 500; /* ნორმალური წონა */
    font-size: 0.95rem;
    color: var(--color-text-light-gray);
    background-color: transparent;
    border: 1px solid transparent; /* თავიდან არ ჩანს */
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
.filter-button-v3 .item-count {
    font-size: 0.8em;
    margin-left: 6px;
    opacity: 0.6;
    font-weight: 400;
}

.filter-button-v3::before { /* Underline effect */
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}
.filter-button-v3:hover::before,
.filter-button-v3.active::before {
    width: 70%;
}
.filter-button-v3:hover {
    color: var(--color-text-on-dark);
}
.filter-button-v3.active {
    color: var(--color-gold);
    font-weight: 700; /* აქტიური სქელია */
}

/* Gallery Grid V3 */
.gallery-grid-v3 {
    display: grid;
    /* Dynamic grid for varied sizes (using CSS grid for simplicity here, JS Masonry for true pixel-perfect) */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: minmax(200px, auto); /* მინიმალური სიმაღლე */
    grid-auto-flow: dense; /* Tries to fill holes */
    gap: clamp(15px, 2vw, 25px);
}

.gallery-item-v3 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-main);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    cursor: pointer;
    background-color: var(--color-dark-gray); /* Placeholder bg */
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex; /* Needed for display:none / flex toggle */
    flex-direction: column; /* caption at bottom */
}
.gallery-item-v3.hidden-by-filter { display: none !important; } /* Ensure filtered out items are truly gone */


/* Spanning items (optional, requires JS to add classes or manual placement) */
.gallery-item-v3.wide {
    grid-column: span 2; /* იკავებს ორ სვეტს */
}
.gallery-item-v3.tall {
    grid-row: span 2; /* იკავებს ორ რიგს */
    /* For tall, you might need specific aspect-ratio for the image-wrapper or image itself if caption height is fixed */
}
/* Adjust aspect ratios based on span */
.gallery-item-v3.wide .gallery-image-wrapper {
    aspect-ratio: 16 / 7; /* უფრო ფართე */
}
.gallery-item-v3.tall .gallery-image-wrapper {
    aspect-ratio: 3 / 4; /* უფრო მაღალი */
    flex-grow: 1; /* Allows image wrapper to take more space */
}


.gallery-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative; /* For potential absolute positioned elements inside */
    aspect-ratio: 1 / 1; /* Default square-ish. Can vary per item or remove */
    background-color: var(--color-dark-gray); /* Fallback */
}

.gallery-item-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
}

.gallery-item-caption {
    padding: 18px 20px;
    background-color: rgba(var(--color-black-rgb), 0.7);
    color: var(--color-text-on-dark);
    position: absolute; /* Changed for better overlay effect */
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%); /* Start hidden */
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
    z-index: 10;
}
.gallery-item-v3:hover .gallery-item-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-caption h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-light-gold);
    margin: 0 0 3px 0;
    letter-spacing: 0.5px;
}
.gallery-item-caption span {
    font-size: 0.85rem;
    color: var(--color-text-light-gray);
    font-weight: 300;
}


.gallery-item-v3:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 0 3px rgba(var(--color-gold-rgb),0.4);
}
.gallery-item-v3:hover img {
    transform: scale(1.12);
    filter: brightness(0.8) saturate(1.1);
}

.gallery-load-more-container-v3 .cta-button{
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}
.gallery-load-more-container-v3 .cta-button:hover{
    background-color: var(--color-gold);
    color: var(--color-black);
}


/* SimpleLightbox customizations for V3 (Ensure it overrides defaults if needed) */
.sl-overlay {
    background: rgba(10, 10, 15, 0.97) !important; /* ძალიან მუქი ფონი */
}
.sl-wrapper .sl-image img {
    box-shadow: 0 0 30px rgba(var(--color-gold-rgb), 0.3) !important;
    border: 2px solid rgba(var(--color-gold-rgb), 0.1) !important;
    border-radius: 4px;
}
.sl-wrapper .sl-navigation button i,
.sl-wrapper .sl-close i { /* Assuming your nav/close texts are i elements for FA */
    color: var(--color-gold) !important;
    font-size: 1.8rem !important; /* Larger controls */
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sl-wrapper .sl-navigation button:hover i,
.sl-wrapper .sl-close:hover i {
    opacity: 1;
    transform: scale(1.1);
}
.sl-caption {
    font-family: var(--font-primary) !important; /* ძირითადი ფონტი */
    font-size: 1.1rem !important;
    color: #e0e0e0 !important;
    background: transparent !important; /* ფონის გარეშე, ან ძალიან გამჭვირვალე */
    text-align: center;
    padding: 20px 15px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.sl-counter {
    color: var(--color-text-dark-gray) !important;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

@media screen and (max-width: 768px) {
    .gallery-hero-section-v3 { height: 75vh; }
    .filter-button-v3 { padding: 10px 18px; font-size: 0.85rem; }
    .gallery-grid-v3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px;}
    .gallery-item-v3.wide, .gallery-item-v3.tall { grid-column: span 1; grid-row: span 1; } /* Disable spanning on mobile for simplicity */
    .gallery-item-v3.wide .gallery-image-wrapper, .gallery-item-v3.tall .gallery-image-wrapper { aspect-ratio: 1 / 1; }


    .gallery-item-caption { padding: 15px;}
    .gallery-item-caption h3 { font-size: 1rem; }
    .gallery-item-caption span { font-size: 0.8rem; }
}
@media screen and (max-width: 480px) {
    .gallery-grid-v3 { grid-template-columns: 1fr; } /* Single column */
    .filter-button-v3 { width: calc(50% - 10px); /* Two buttons per row */ justify-content: center;}
    .gallery-hero-content-v3 h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
    .gallery-hero-content-v3 .sub-headline { font-size: clamp(1rem, 2.8vw, 1.3rem); }
}



/* --- Our Team Section (PHIGHA) - განახლებული --- */
.team-section-phigha {
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(80px, 10vw, 120px);
    background-color: var(--color-black);
    text-align: center;
    overflow: hidden; /* ანიმაციებისთვის */
}

.team-section-phigha h2 {
    margin-bottom: 1.5rem;
}

.team-section-description {
    font-size: 1.1rem;
    color: var(--color-text-light-gray);
    max-width: 750px; /* ოდნავ გავზარდოთ */
    margin: 0 auto 70px auto; /* გავზარდოთ დაშორება */
    line-height: 1.75; /* გავზარდოთ ხაზებს შორის დაშორება */
    font-weight: 300;
}

.team-grid-phigha {
    display: grid;
    /* 4 ბარათი დიდ ეკრანზე */
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(25px, 3vw, 35px); /* ოდნავ შევამციროთ gap */
    max-width: 1320px; /* გავზარდოთ კონტეინერის მაქს. სიგანე 4 ბარათისთვის */
    margin: 0 auto;
}

.team-member-card-phigha {
    background-color: #272733; /* ოდნავ შევცვალოთ ფონი */
    border-radius: 10px; /* გავზარდოთ მომრგვალება */
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: var(--color-text-on-dark);
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* საწყისი ჩრდილი */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative; /* ეფექტებისთვის */
}

.team-member-card-phigha::before { /* დამატებითი დეკორატიული ელემენტი ჰოვერისთვის */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--color-gold-rgb),0.1), transparent, rgba(var(--color-gold-rgb),0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.team-member-card-phigha:hover {
    transform: translateY(-12px) scale(1.02); /* გავზარდოთ ეფექტი */
    box-shadow: 0 18px 45px rgba(var(--color-black-rgb),0.4), 0 0 0 2px var(--color-gold); /* უფრო გამოკვეთილი ჩრდილი და ჩარჩო */
    border-color: var(--color-gold); /* ესეც შეგვიძლია დავტოვოთ */
}
.team-member-card-phigha:hover::before {
    opacity: 1;
}

.team-member-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5; /* ოდნავ უფრო მაღალი სურათები */
    overflow: hidden;
    background-color: #333340;
    position: relative; /* ბეჯისთვის */
}

.team-member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease; /* უფრო გლუვი ზუმი */
    filter: saturate(0.8); /* თავიდან ოდნავ ნაკლებად ფერადი */
}

.team-member-card-phigha:hover .team-member-image-wrapper img {
    transform: scale(1.1);
    filter: saturate(1.1); /* ჰოვერზე უფრო ფერადი */
}

/* CEO ბეჯის სტილი */
.ceo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.team-member-card-phigha:hover .ceo-badge {
    opacity: 1;
    transform: scale(1.05);
}


.team-member-info-phigha {
    padding: 25px 20px;
    background-color: inherit; /* იგივე ფონი, რაც ბარათს */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2; /* რომ ჰოვერ ეფექტის ქვეშ არ მოექცეს */
    position: relative; /* ::after ელემენტისთვის */
}

.team-member-info-phigha::after { /* გრადიენტული ხაზი სახელის ქვეშ */
    content: '';
    position: absolute;
    bottom: 70px; /* სოციალური ხატულების ზემოთ */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    opacity: 0.7;
}


.team-member-info-phigha h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.8vw, 1.3rem); /* ოდნავ დავაპატარავე 4 ბარათისთვის */
    color: var(--color-text-on-dark);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    transition: color 0.3s ease;
}
.team-member-card-phigha:hover .team-member-info-phigha h3 {
    color: var(--color-light-gold);
}

.team-member-title {
    font-family: var(--font-secondary);
    font-size: 0.8rem; /* ოდნავ დავაპატარავე */
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px; /* გავზარდე letter-spacing */
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.85; /* ოდნავ გამჭვირვალე */
}

.team-member-socials {
    padding-top: 15px;
    /* border-top-ის მაგივრად გამოვიყენეთ ::after ხაზი */
    margin-top: auto; /* სოციალური ხატულები ყოველთვის ქვემოთ იქნება */
}

.social-icon-team {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; /* ოდნავ დავაპატარავე */
    height: 34px;
    border-radius: 50%;
    background-color: rgba(var(--color-gold-rgb), 0.08);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    color: var(--color-text-light-gray);
    font-size: 0.9rem; /* ოდნავ დავაპატარავე */
    margin: 0 5px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.social-icon-team:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: scale(1.1) translateY(-2px);
}

/* CEO ბარათის სპეციფიური სტილები */
.team-member-card-phigha.team-member-ceo {
    background-color: #1e1e28; /* ოდნავ მუქი და განსხვავებული ფონი */
    border-color: rgba(var(--color-gold-rgb), 0.3); /* საწყისი ჩარჩო ოქროსფერი */
}

.team-member-card-phigha.team-member-ceo:hover {
    box-shadow: 0 20px 50px rgba(var(--color-black-rgb),0.5), 0 0 0 3px var(--color-light-gold); /* უფრო ძლიერი ეფექტი */
    border-color: var(--color-light-gold);
}
.team-member-card-phigha.team-member-ceo .team-member-info-phigha h3{
    color: var(--color-light-gold); /* CEO-ს სახელი თავიდანვე ოქროსფერი */
    font-size: clamp(1.15rem, 1.9vw, 1.35rem); /* ოდნავ დიდი */
}
.team-member-card-phigha.team-member-ceo .team-member-title {
    font-weight: 600; /* CEO-ს ტიტული უფრო სქელი */
    opacity: 1;
}

.team-member-card-phigha.team-member-ceo .social-icon-team {
    background-color: rgba(var(--color-gold-rgb), 0.15);
    color: var(--color-gold);
    border-color: rgba(var(--color-gold-rgb), 0.4);
}
.team-member-card-phigha.team-member-ceo .social-icon-team:hover {
    background-color: var(--color-light-gold);
    color: var(--color-black);
    border-color: var(--color-light-gold);
}


/* Responsive adjustments for Team Section */
@media (max-width: 1200px) { /* როცა 4 ბარათი ვეღარ ეტევა კომფორტულად */
    .team-grid-phigha {
        grid-template-columns: repeat(3, 1fr);
        max-width: 992px; /* 3 ბარათისთვის შესაბამისი სიგანე */
    }
}

@media (max-width: 991px) { /* პლანშეტის ზომა */
    .team-grid-phigha {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px; /* 2 ბარათისთვის */
    }
    .team-section-description {
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) { /* მობილური */
    .team-grid-phigha {
        grid-template-columns: 1fr;
        gap: 30px; /* გავზარდოთ gap ერთ სვეტზე */
    }
     .team-member-info-phigha {
        padding: 20px 15px;
    }
    .team-member-info-phigha::after { /* ხაზის პოზიცია მობილურზე */
        bottom: 65px;
    }
}












/* --- Team Member Detail Page Styles (PHIGHA) --- */
.team-member-detail-page {
    background-color: var(--color-black);
}

/* Hero Section - სურათი აქედან ამოღებულია */
.member-hero-section-phigha {
    position: relative;
    min-height: 45vh; /* შევამცირეთ სიმაღლე */
    display: flex;
    align-items: flex-end; /* კონტენტი ქვემოთ */
    padding-top: 80px;
    padding-bottom: 80px;
    justify-content: center;
    text-align: center;
    color: var(--color-text-on-dark);
    background-size: cover;
    background-position: center center; /* ცენტრირებული ფონი */
    box-sizing: border-box;
    background-blend-mode: multiply;
    background-color: rgba(var(--color-black-rgb), 0.65); /* ოდნავ მეტი დამუქება */
}

.member-hero-content-phigha {
    position: relative;
    padding: 20px;
    max-width: 800px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7); /* გავაძლიერეთ ჩრდილი */
}

.member-hero-content-phigha h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: var(--color-light-gold);
    margin-bottom: 0.8rem;
}

.member-hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #f0f0f0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Member Details Content Section - აქ გადმოვიტანეთ სურათი */
.member-details-content-section-phigha {
    padding: clamp(70px, 10vw, 120px) 0;
    background-color: var(--color-dark-gray);
}

.member-bio-contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(40px, 6vw, 70px); /* ოდნავ შევამცირე gap */
    align-items: flex-start;
}

.member-bio-phigha {
    /* სტილები ბიოგრაფიის ბლოკისთვის */
}

.member-bio-image-wrapper {
    width: clamp(200px, 28vw, 260px); /* სურათის ზომა ბიოგრაფიაში */
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 30px auto;
    border: 4px solid rgba(var(--color-gold-rgb), 0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}

.member-bio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 8px; -- ეს შეიძლება აღარ იყოს საჭირო თუ wrapper-ს აქვს border-radius */
}

.member-bio-phigha h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--color-gold);
    margin-bottom: 30px; /* ოდნავ შევამცირე */
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.25);
    text-align: left;
    clear: both; /* მნიშვნელოვანია, თუ სურათი float-left */
}

.member-bio-phigha p {
    font-size: 1.08rem;
    color: var(--color-text-light-gray);
    line-height: 1.85;
    margin-bottom: 22px;
}
.member-bio-phigha p:last-child {
    margin-bottom: 0;
}

.member-contact-info-phigha {
    background-color: var(--color-black);
    padding: clamp(35px, 4vw, 45px); /* ოდნავ შევამცირე padding */
    border-radius: var(--border-radius-main);
    border: 1px solid rgba(var(--color-gold-rgb), 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-contact-info-phigha h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-gold);
    margin-bottom: 30px; /* ოდნავ შევამცირე */
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
}

.member-contact-list {
    list-style: none;
    padding-left: 0;
}
.member-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px; /* ოდნავ შევამცირე */
}
.member-contact-list li:last-child {
    margin-bottom: 0;
}
.member-contact-list .icon-phigha-gold {
    font-size: 1.6rem; /* ოდნავ შევამცირე */
    color: var(--color-gold);
    margin-right: 18px; /* ოდნავ შევამცირე */
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 2px;
}
.member-contact-list .detail-text h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem; /* ოდნავ შევამცირე */
    color: var(--color-text-on-dark);
    margin: 0 0 4px 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.member-contact-list .detail-text p {
    font-size: 0.95rem; /* ოდნავ შევამცირე */
    color: var(--color-text-light-gray);
    margin-bottom: 3px;
    line-height: 1.6;
}
.member-contact-list .detail-text p:last-child { margin-bottom: 0; }

.member-contact-list .detail-text a {
    color: var(--color-text-light-gray);
    transition: color 0.3s ease;
}
.member-contact-list .detail-text a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.member-quote-phigha {
    margin-top: 40px; /* ოდნავ შევამცირე */
    padding: 25px 20px; /* ოდნავ შევამცირე */
    background-color: rgba(var(--color-gold-rgb), 0.07);
    border-left: 4px solid var(--color-gold); /* ოდნავ შევამცირე border */
    border-radius: 0 var(--border-radius-main) var(--border-radius-main) 0;
    position: relative;
}
.member-quote-phigha p {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.02rem; /* ოდნავ შევამცირე */
    color: var(--color-text-light-gray);
    line-height: 1.75;
    margin: 0;
}
.member-quote-phigha .fa-quote-left,
.member-quote-phigha .fa-quote-right {
    color: var(--color-gold);
    font-size: 1.2rem; /* ოდნავ შევამცირე */
    opacity: 0.6;
    position: absolute;
}
.member-quote-phigha .fa-quote-left { top: 15px; left: 15px; } /* ოდნავ შევამცირე */
.member-quote-phigha .fa-quote-right { bottom: 15px; right: 15px; } /* ოდნავ შევამცირე */

.related-content-phigha {
    background-color: var(--color-dark-gray);
    padding: clamp(60px, 8vw, 90px) 0;
    border-top: 1px solid rgba(var(--color-gold-rgb),0.1);
}
.related-content-phigha h3 {
    text-align: center;
    margin-bottom: 1rem;
}
.related-content-phigha .cta-button {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}
.related-content-phigha .cta-button:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Responsive adjustments for Team Member Detail Page */
@media screen and (max-width: 991px) {
    .member-bio-contact-grid {
        grid-template-columns: 1fr;
    }
    .member-contact-info-phigha {
        margin-top: 50px;
    }
    .member-hero-section-phigha {
        min-height: auto;
        padding-top: clamp(80px, 15vh, 120px);
        padding-bottom: clamp(60px, 10vh, 100px);
    }
    .member-bio-image-wrapper { /* Responsive-ში float-ის მოხსნა */
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .member-hero-content-phigha h1 {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
    }
    .member-hero-title {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
    .member-bio-phigha h2, .member-contact-info-phigha h3 {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        margin-bottom: 25px;
    }
     .member-details-content-section-phigha {
        padding: clamp(50px, 8vw, 80px) 0;
    }
    .member-bio-image-wrapper {
        width: clamp(180px, 40vw, 220px); /* მობილურზე სურათის ზომის კორექცია */
    }
}







/* --- Our Story Page V3 Styles --- */
.page-our-story--v3 {
    background-color: #121212; /* Very dark base background */
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif; /* Using Montserrat for body text */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Optional: CSS Scroll Snapping (Can be tricky with dynamic header heights) */
/*
.story-scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh; 
}
.story-v3-section {
    scroll-snap-align: start;
}
*/

.story-v3-section {
    min-height: 90vh; /* Slightly less than 100vh to account for variations/browsers */
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    display: flex;
    align-items: center; /* Default alignment */
    justify-content: center; /* Default alignment */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-color 0.5s ease-in-out; /* For sections without images */
}
.story-v3-section:first-child {
    min-height: 100vh; /* Hero can be full 100vh */
}


.story-v3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 100%);
}
.story-v3-overlay--lighter {
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.1) 0%, rgba(18, 18, 18, 0.7) 100%);
}
.story-v3-overlay--darker {
     background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
}


.story-v3-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px; /* Content width within section */
    padding: 0 40px; /* Side padding */
    box-sizing: border-box;
}

/* Hero Section V3 Specifics */
.story-v3-hero .story-v3-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit; /* Ensure content fills hero section */
}
.story-v3-hero-title {
    font-family: 'Playfair Display', serif; /* Or Cinzel if preferred */
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    text-align: center;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.story-v3-hero-title span {
    display: block; /* Each word/phrase on new line or as needed */
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.story-v3-hero-title.in-view--story-v3 span.visible, /* JS will add in-view--story-v3 and visible */
.story-v3-section.in-view--story-v3 .story-v3-hero-title span.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.story-v3-hero-title span:nth-child(1){ transition-delay: 0.3s; }
.story-v3-hero-title span:nth-child(2){ transition-delay: 0.5s; font-size: 0.35em; font-family: 'Montserrat', sans-serif; font-weight: 300; letter-spacing: 5px; text-transform: uppercase; opacity: 0.7; margin: 0.5em 0;} /* Divider or smaller text */
.story-v3-hero-title span:nth-child(3){ transition-delay: 0.7s; }

.story-v3-hero-title-divider { /* Simple line divider */
    display: block !important;
    width: 80px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 1.5rem auto !important; /* For block element */
    opacity: 0; /* Initially hidden */
    transform: scaleX(0) !important; /* Animated width */
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.story-v3-hero-title.in-view--story-v3 span.story-v3-hero-title-divider.visible {
    opacity: 1;
    transform: scaleX(1) !important;
}


.story-v3-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    opacity: 0; /* reveal-on-scroll will handle this */
    transform: translateY(20px);
}
.story-v3-section.in-view--story-v3 .story-v3-hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease 1s, transform 0.7s ease 1s;
}

.story-v3-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px) translateX(-50%); /* For fade in animation */
}
.story-v3-section.in-view--story-v3 .story-v3-scroll-indicator {
     opacity: 1;
    transform: translateY(0) translateX(-50%);
    transition: opacity 0.7s ease 1.2s, transform 0.7s ease 1.2s;
}

.story-v3-scroll-indicator:hover {
    color: #fff;
}
.story-v3-scroll-indicator svg {
    display: block;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    animation: story-v3-bounce 2s infinite;
}
@keyframes story-v3-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* General Story Section Content Styling */
.story-v3-content--text-left { justify-content: flex-start; text-align: left; }
.story-v3-content--text-right { justify-content: flex-end; text-align: right; }
.story-v3-content--text-center-bottom { align-items: flex-end; text-align: center; padding-bottom: clamp(80px, 12vh, 120px); }

.story-v3-text-panel {
    background-color: rgba(18, 18, 18, 0.65); /* Slightly transparent panel for text */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: clamp(30px, 5vw, 50px);
    border-radius: 8px;
    max-width: 520px; /* Control text width */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(40px);
}
.story-v3-section.in-view--story-v3 .story-v3-text-panel {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.story-v3-content--text-right .story-v3-text-panel { margin-left: auto; }
.story-v3-content--text-left .story-v3-text-panel { margin-right: auto; }
.story-v3-text-panel--centered { margin-left:auto; margin-right:auto; }


.story-v3-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.story-v3-title {
    font-family: 'Cinzel', serif; /* Changed to Cinzel */
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
/* Text reveal for section titles */
.story-v3-title span {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
     transition: opacity 0.6s ease, transform 0.6s ease;
}
.story-v3-section.in-view--story-v3 .story-v3-title span.visible {
    opacity: 1;
    transform: translateY(0);
    /* transition-delay handled by JS if needed */
}


.story-v3-text-panel p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: rgba(240,240,240,0.85);
    font-weight: 300;
    margin-bottom: 1rem;
}
.story-v3-text-panel p:last-child { margin-bottom: 0; }

.story-v3-cta {
    margin-top: 2rem;
    display: inline-block; /* To allow margin-top */
    /* Uses .cta-button styles */
    border-width: 2px;
    padding: 12px 35px;
    font-size: 0.9rem;
}

/* Dot Navigation */
.story-v3-dot-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 100;
}
.story-v3-dot-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.story-v3-dot-nav li {
    margin: 15px 0;
}
.story-v3-dot-nav a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
}
.story-v3-dot-nav a span { /* For accessibility / tooltip */
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background-color: var(--color-black);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.story-v3-dot-nav a:hover span {
    opacity: 1;
    visibility: visible;
}
.story-v3-dot-nav a.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
}
.story-v3-dot-nav a.active span {
    /* Optional: Keep tooltip visible for active dot if desired */
}


/* Visual Focus Section (e.g., Craft) */
.story-v3-section--visual-focus .story-v3-text-panel {
    max-width: 650px; /* Wider for centered text */
    background-color: rgba(10,10,10, 0.75); /* Slightly different bg */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .story-v3-content--text-left,
    .story-v3-content--text-right {
        justify-content: center; /* Center panel on smaller screens */
        text-align: center; /* Center text inside panel */
    }
    .story-v3-text-panel {
        margin-left: auto;
        margin-right: auto;
    }
     .story-v3-eyebrow, .story-v3-title {
        text-align: center;
    }
    .story-v3-dot-nav {
        display: none; /* Hide dot nav on smaller screens, or make it horizontal */
    }
}
@media (max-width: 767px) {
    .story-v3-section {
        padding: 60px 0;
        min-height: 70vh; /* Less strict height */
    }
    .story-v3-section:first-child { min-height: 90vh; }
    .story-v3-hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
    .story-v3-hero-title-divider { margin: 1rem auto !important; width:60px; }
    .story-v3-hero-subtitle { font-size: clamp(0.9rem, 3.5vw, 1.1rem); }
    .story-v3-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
    .story-v3-text-panel p { font-size: clamp(0.9rem, 2.5vw, 1rem); }
    .story-v3-content { padding: 0 20px; }
    .story-v3-text-panel { padding: clamp(20px, 4vw, 30px); }
}

/* Class to be added by JS when section is in view */
.in-view--story-v3 {}

 /* --- About Page Specific Styles (Reinstated with enhancements) --- */

body.page-about {
    background-color: var(--color-black); 
    color: var(--color-text-light-gray); 
}

/* About Hero Section */
.about-hero {
    position: relative;
    padding: clamp(120px, 22vh, 250px) 0; /* Dynamic padding for height */
    min-height: 70vh; /* Good height for hero */
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
    color: var(--color-text-on-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* For potential inner animations or bg effects */
}
/* Ensure background-image is set inline in PHP or with a specific class if needed */

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0.3) 0%, rgba(var(--color-black-rgb), 0.8) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title { /* This will be used if not using .animated-text-reveal specifically */
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: var(--color-light-gold);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Character Animation for Hero Title (if using .animated-text-reveal) */
.about-hero-title.animated-text-reveal {
    /* Basic styles for h1 are inherited or can be set here if different */
}
.about-hero-title.animated-text-reveal span {
    display: inline-block; /* Important for char animation */
    opacity: 0;
    transform: translateY(30px) rotateX(-90deg) scale(0.9);
    transform-origin: bottom center;
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
.about-hero-title.animated-text-reveal.in-view span {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    /* transition-delay is set by JS inline for staggering */
}


.about-hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #e8e8e8; /* Brighter for subtitle */
    font-weight: 300;
    line-height: 1.75;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Main Text Section */
.about-main-text-section {
    padding: clamp(70px, 10vw, 120px) 0;
    background-color: var(--color-dark-gray); 
}

.about-text-container {
    max-width: 820px; 
    margin-left: auto;
    margin-right: auto;
}

.about-article {
    margin-bottom: clamp(50px, 8vw, 90px);
}
.about-article:last-child { margin-bottom: 0; }

.about-section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4.5vw, 3rem); /* Prominent section titles */
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 2.5rem; 
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.2);
    text-align: left; /* Default to left */
    position: relative;
}
/* Optional: Centered titles if needed */
.about-section-title.text-center { text-align: center; }
.about-section-title.text-center::after { margin-left:auto; margin-right:auto; }

.about-section-title::after { /* Small decorative line */
    content: '';
    display: block;
    width: 60px;
    height: 2.5px;
    background-color: var(--color-gold);
    margin-top: 0.75rem; /* Space between text and line */
    opacity: 0.7;
}
.about-section-title.text-center::after { margin-left: auto; margin-right: auto; }


.about-article p {
    font-family: var(--font-secondary);
    font-size: clamp(1.05rem, 2vw, 1.15rem); 
    line-height: 1.9; 
    color: var(--color-text-light-gray); 
    font-weight: 300;
    margin-bottom: 1.8rem;
}
.about-article p:last-of-type { margin-bottom: 0; }

/* Drop Cap Styling */
.drop-cap {
    float: left;
    font-family: var(--font-primary);
    font-size: 5em; 
    line-height: 0.75; 
    margin: 0.1em 0.12em -0.1em 0; /* Fine-tune margins */
    color: var(--color-gold);
    font-weight: 600; /* Slightly less bold than title */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

/* Values List Styling */
.values-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(25px, 4vw, 40px);
}
.value-item {
    padding: 25px 30px; /* More padding */
    background-color: rgba(var(--color-black-rgb), 0.15); /* Panel background */
    border-radius: var(--border-radius-main);
    border: 1px solid rgba(var(--color-gold-rgb), 0.1);
    border-left: 4px solid var(--color-gold); /* Accent border */
    transition: background-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    display: flex; /* Align icon and text for non-mobile */
    align-items: flex-start;
}
.value-item:hover {
    background-color: rgba(var(--color-black-rgb), 0.3);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.value-item-icon {
    font-size: 1.9rem; 
    color: var(--color-gold);
    margin-right: 20px;
    padding-top: 0.2em; /* Align with first line of h3 */
    flex-shrink: 0;
    min-width: 35px;
    text-align: center;
    opacity: 0.9;
}
.value-item-text h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--color-text-on-dark);
    margin: 0 0 0.6rem 0;
    font-weight: 600; /* Slightly lighter than section titles */
}
.value-item-text p {
    font-size: 0.95rem;
    color: var(--color-text-light-gray);
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.85;
}

/* Decorative Divider */
.about-divider {
    height: 1px;
    width: 80px; 
    background: linear-gradient(to right, transparent, rgba(var(--color-gold-rgb), 0.4), transparent); 
    margin: clamp(60px, 8vw, 100px) auto; 
    border: none;
}

/* Text Link Style */
.text-link-phigha {
    color: var(--color-gold);
    font-weight: 600; 
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--color-gold-rgb), 0.4);
    transition: color 0.3s ease, border-color 0.3s ease;
    padding-bottom: 2px; 
}
.text-link-phigha:hover {
    color: var(--color-light-gold);
    border-bottom-color: var(--color-light-gold);
}

/* About Page CTA Section */
.about-cta-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background-color: var(--color-black); 
    border-top: 2px solid var(--color-gold);
    text-align: center;
}
.about-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--color-light-gold); 
    margin-bottom: 1.2rem;
}
.about-cta-text {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: #e0e0e0; 
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.75;
    opacity: 0.9;
}
.cta-button.about-page-cta { 
    margin: 10px 12px;
    padding: 15px 40px; /* Slightly larger CTA */
    font-size: 0.95rem;
}
.cta-button.secondary.about-page-cta {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}
.cta-button.secondary.about-page-cta:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* Responsive Adjustments for About Page */
@media (max-width: 991px) { /* Tablets */
    .values-list {
        /* Stays grid, auto-fit handles columns */
    }
}

@media (max-width: 767px) { /* Mobile */
    .about-hero {
        min-height: 60vh; /* Adjusted min-height */
        padding: 100px 0;
    }
     .about-hero-title { font-size: clamp(2.4rem, 7vw, 3.8rem); }
     .about-hero-subtitle { font-size: clamp(1rem, 3.5vw, 1.25rem); }

    .about-main-text-section { padding: 60px 0; }
    .about-text-container { padding-left: 20px; padding-right: 20px; }
    
    .about-section-title {
        text-align: center; 
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 2rem;
    }
    .about-section-title::after { margin-left:auto; margin-right:auto; }

    .drop-cap { font-size: 4.5em; }
    
    .values-list {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 25px;
    }
    .value-item {
        /* Default flex-direction is row, but content will stack due to limited width */
        /* We can explicitly set to column for better control on mobile if needed: */
        /* flex-direction: column; align-items: center; text-align: center; */
    }
    /* .value-item-icon { margin-right: 0; margin-bottom: 15px; font-size: 2.2rem; } */
    /* .value-item-text h3 { text-align:center; } */

    .about-cta-section { padding: 70px 0; }
    .about-cta-title { font-size: clamp(2rem, 6vw, 2.8rem); }
    .about-cta-text { font-size: clamp(1rem, 3vw, 1.2rem); }
    .cta-button.about-page-cta { display: block; width:fit-content; margin-left:auto; margin-right:auto; }
    .cta-button.about-page-cta + .cta-button.about-page-cta { margin-top:15px; }

}