/* Golden Investment Group - Main Stylesheet */
/* Χρώματα: ΜΑΥΡΟ και ΑΣΗΜΙ - ΑΠΑΓΟΡΕΥΕΤΑΙ το χρυσό */

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #4a4a4a;
    --silver: #c0c0c0;
    --light-silver: #d3d3d3;
    --lighter-silver: #e8e8e8;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --border-color: #3a3a3a;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--white);
    /* Changed to white for overscroll */
    color: var(--primary-black);
    /* Text needs to be dark on white bg */
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    /* No padding - header is transparent over video */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--silver);
    transition: none;
    /* Χωρίς hover effects */
}

/* Rotating Text Animation - Smooth Fade In/Out */
/* Rotating Text Animation - Smooth Fade In/Out */
.rotating-text {
    display: inline-block;
    position: relative;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    vertical-align: baseline;
}

/* Old animation classes removed to prevent jumping */

/* Header - Unified Sticky Navigation - Almost Transparent */
header {
    background: linear-gradient(180deg, #1a1d2e 0%, #3d4457 100%);
    /* Same as contact-hero - solid dark background */
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Always on top of everything */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth transition when scrolling */
}

/* When scrolled - becomes transparent with blur */
header.scrolled {
    background: linear-gradient(180deg, rgba(26, 29, 46, 0.15) 0%, rgba(26, 29, 46, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Homepage - Transparent header at top */
.homepage header {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Homepage - Header when scrolled - Matches footer color with blur */
.homepage header.scrolled {
    background: rgba(26, 29, 46, 0.75) !important;
    /* Same as footer #1a1d2e but with transparency */
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15) !important;
}

.header-main {
    padding: 18px 0;
    /* Exact padding for consistent vertical alignment */
}

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

/* Logo - Unified styles for all pages */
.logo-center {
    font-size: 1rem !important;
    font-weight: 300 !important;
    color: var(--white) !important;
    letter-spacing: 2px !important;
    font-family: 'Playfair Display', 'Georgia', serif !important;
    text-align: left;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.logo-center a {
    display: flex !important;
    align-items: center !important;
    gap: 0;
    font-size: 1rem !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    line-height: 1.2 !important;
    color: inherit !important;
    text-decoration: none !important;
}

/* Header Logo Image */
.header-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-right: -8px;
}

.header-logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* Desktop Navigation - Right Side */
.desktop-nav {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.desktop-nav ul li a {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.desktop-nav ul li a.active,
.desktop-nav ul li a:hover {
    color: var(--silver);
    border-bottom-color: var(--silver);
}

/* Mobile Menu Toggle Button - In Header */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10002;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Transform hamburger to X when menu is active */
/* Transform hamburger to X when menu is active - DISABLED, WE HIDE IT INSTEAD */
.mobile-menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}


/* Mobile Navigation Menu - FULL SCREEN ELEGANT DESIGN */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #f5f5f5;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Close Button - hidden since hamburger transforms to X */
/* Close Button */
.mobile-nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    /* Made slightly larger */
    color: #000000 !important;
    /* Force Black */
    cursor: pointer;
    z-index: 99999;
    /* Ensure on top */
    padding: 10px;
    opacity: 1 !important;
}

/* Logo Section */
.mobile-nav-logo {
    text-align: center;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #1a1d2e;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 10px;
    transform: translateX(-15px);
    /* Move slightly left */
    text-align: left;
}

.mobile-nav-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    margin-right: -8px;
    /* Closer together */
    margin-bottom: 0;
}

.mobile-nav-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin: 0;
    font-weight: 300;
}

/* Divider */
.mobile-nav-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 0 auto;
}

/* Menu Items */
.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.mobile-nav-menu li {
    width: 100%;
}

.mobile-nav-link {
    color: #333;
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    padding: 18px 0;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #c9a961;
    padding-left: 10px;
}

/* Social Media Section */
.mobile-nav-social {
    text-align: center;
    padding: 20px 20px 40px;
}

.mobile-nav-social-title {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.mobile-nav-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-nav-social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-nav-social-icons a:hover {
    background: #c9a961;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - ΚΟΦΤΕΣ ΓΩΝΙΕΣ, ΧΩΡΙΣ HOVER */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--silver);
    color: var(--primary-black);
    border: none;
    border-radius: 0;
    /* Κοφτές γωνίες */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: none;
    /* Χωρίς hover effects */
}

.btn-primary {
    background-color: var(--silver);
    color: var(--primary-black);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-bottom: 2px solid var(--border-color);
    background: var(--primary-black);
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark overlay on image for better text visibility */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

/* Hero Overlay Content - Centered Text and Button */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Playfair Display', 'Georgia', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    /* Κρατάει το κείμενο σε μία γραμμή */
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--light-silver);
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-btn {
    display: inline-block;
    padding: 16px 50px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: none;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

/* Responsive Hero Text */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
        white-space: nowrap;
        /* Κρατάει σε μία γραμμή */
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .hero-btn {
        padding: 14px 35px;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
        white-space: nowrap;
        /* Κρατάει σε μία γραμμή */
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
}

/* ===================================
   ATHENS SECTION - White Container
   =================================== */

.athens-section {
    padding: 100px 0;
    background-color: var(--white);
}

.athens-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.athens-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.athens-text-box {
    background: linear-gradient(135deg, #2a2d3e 0%, #3d4457 100%);
    padding: 60px;
    border-left: 4px solid var(--gold);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.athens-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 400;
}

.athens-main-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.athens-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

.athens-btn {
    display: inline-block;
    padding: 16px 50px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 15px;
}

.athens-btn:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

/* Responsive Athens Section */
@media (max-width: 992px) {
    .athens-content-wrapper {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    .athens-image {
        min-height: 400px;
    }

    .athens-text-box {
        padding: 50px;
    }

    .athens-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .athens-section {
        padding: 60px 0;
    }

    .athens-content-wrapper {
        padding: 0 20px;
    }

    .athens-text-box {
        padding: 40px 30px;
    }

    .athens-main-title {
        font-size: 1.8rem;
    }

    .athens-description {
        font-size: 1rem;
    }

    .athens-btn {
        padding: 14px 35px;
        font-size: 0.85rem;
    }
}

/* ===================================
   PIRAEUS SECTION - White Container
   =================================== */

.piraeus-section {
    padding: 100px 0;
    background-color: var(--white);
}

.piraeus-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.piraeus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.piraeus-text-box {
    background: linear-gradient(135deg, #2a2d3e 0%, #3d4457 100%);
    padding: 60px;
    border-left: 4px solid var(--gold);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.piraeus-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 400;
}

.piraeus-main-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.piraeus-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

.piraeus-btn {
    display: inline-block;
    padding: 16px 50px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 15px;
}

.piraeus-btn:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

/* Responsive Piraeus Section */
@media (max-width: 992px) {
    .piraeus-content-wrapper {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    .piraeus-image {
        min-height: 400px;
        order: -1;
        /* Image on top in mobile */
    }

    .piraeus-text-box {
        padding: 50px;
    }

    .piraeus-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .piraeus-section {
        padding: 60px 0;
    }

    .piraeus-content-wrapper {
        padding: 0 20px;
    }

    .piraeus-text-box {
        padding: 40px 30px;
    }

    .piraeus-main-title {
        font-size: 1.8rem;
    }

    .piraeus-description {
        font-size: 1rem;
    }

    .piraeus-btn {
        padding: 14px 35px;
        font-size: 0.85rem;
    }
}

/* Section Styling */
section {
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--silver);
}

/* ===================================
   WHY INVEST WITH US SECTION - White Container
   =================================== */

.why-invest-section {
    padding: 100px 0;
    background-color: var(--white);
}

.why-invest-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.why-invest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.why-invest-text-box {
    background: linear-gradient(135deg, #2a2d3e 0%, #3d4457 100%);
    padding: 60px;
    border-left: 4px solid var(--gold);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-invest-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 400;
}

.why-invest-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.why-invest-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Responsive Why Invest */
@media (max-width: 992px) {
    .why-invest-wrapper {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    .why-invest-image {
        min-height: 400px;
    }

    .why-invest-text-box {
        padding: 50px;
    }

    .why-invest-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-invest-section {
        padding: 60px 0;
    }

    .why-invest-wrapper {
        padding: 0 20px;
    }

    .why-invest-text-box {
        padding: 40px 30px;
    }

    .why-invest-title {
        font-size: 1.8rem;
    }

    .why-invest-description {
        font-size: 1rem;
    }
}

/* Newsletter Section - Part of Footer */
.newsletter-section {
    background-color: #1a1d2e;
    padding: 50px 0 40px;
    text-align: center;
}

.newsletter-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.newsletter-section>.container>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 5px 5px 5px 25px;
    background: transparent;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 0;
    border: none;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.newsletter-form button {
    padding: 12px 18px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--white);
}

/* Footer - Same background as newsletter */
footer {
    background-color: #1a1d2e;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.footer-section a:hover {
    color: var(--white);
}

/* Footer Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: none;
}

/* Footer Logo with Image */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-right: -8px;
}

.footer-logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-gemi {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Social Media Icons - Simple, no circles */
.footer-social {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    margin-bottom: 0;
    padding: 5px;
}

.footer-social a:hover {
    color: var(--silver);
    transform: scale(1.15);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Powered By Bar - Same background as footer */
.powered-by-bar {
    background-color: #1a1d2e;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by-bar p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.powered-by-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by-bar a:hover {
    color: var(--white);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 20px 30px;
    }

    .newsletter-section h2 {
        font-size: 1.6rem;
    }

    .newsletter-form {
        max-width: 100%;
        padding: 5px 5px 5px 20px;
    }

    .newsletter-form input[type="email"]::placeholder {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand-section {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--secondary-black);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    /* Κοφτές γωνίες */
    text-align: center;
    transition: none;
    /* Χωρίς hover effects */
}

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

.service-card p {
    color: var(--silver);
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: var(--secondary-black);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    /* Κοφτές γωνίες */
    text-align: center;
    transition: none;
    /* Χωρίς hover effects */
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--silver);
}

.feature-box p {
    color: var(--medium-gray);
}

/* Newsletter Section */
#newsletter {
    background-color: var(--secondary-black);
}

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

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--silver);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    max-width: 400px;
    padding: 15px 20px;
    background-color: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 0;
    /* Κοφτές γωνίες */
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--medium-gray);
}

#newsletterMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 0;
}

#newsletterMessage.success {
    background-color: var(--dark-gray);
    color: var(--silver);
    border: 1px solid var(--silver);
}

#newsletterMessage.error {
    background-color: var(--dark-gray);
    color: var(--light-silver);
    border: 1px solid var(--medium-gray);
}

/* Toast Notification System */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1a1d2e;
    color: #ffffff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    min-width: 300px;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.toast-success .toast-icon {
    background: #1a1d2e;
    border: 2px solid #c0c0c0;
    color: #c0c0c0;
}

.toast-error .toast-icon {
    background: #1a1d2e;
    border: 2px solid #888;
    color: #888;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

.toast-close:hover {
    color: #fff;
}

/* Form Success/Error Messages - Minimal Style */
.form-message {
    padding: 15px 20px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.form-message.success {
    background: #1a1d2e;
    color: #c0c0c0;
    border-left: 3px solid #c0c0c0;
}

.form-message.error {
    background: #2a1a1a;
    color: #c0c0c0;
    border-left: 3px solid #888;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--silver);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 0;
    /* Κοφτές γωνίες */
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}

/* Contact Page */
/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(180deg, #1a1d2e 0%, #3d4457 100%);
    padding: 70px 0;
    /* Same as properties page - compact and visible with header */
    margin: 0;
    position: relative;
    z-index: 1;
    border: none;
    /* No borders for seamless integration with header */
}

.contact-hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #c0c0c0;
    margin: 0;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0;
        /* Normal padding - header is static */
    }

    .contact-hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .contact-hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 0;
        /* Normal padding - header is static */
    }

    .contact-hero-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .contact-hero-subtitle {
        font-size: 0.85rem;
    }
}

/* Contact Hero Section with Background Image */
.contact-hero-image {
    position: relative;
    min-height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images-video/contact.1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    background-attachment: fixed;
}

.contact-hero-overlay {
    max-width: 650px;
    padding: 50px;
    border-left: 4px solid #c9a961;
    background: rgba(0, 0, 0, 0.4);
    margin-left: 10%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle-small {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.contact-hero-title-large {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.contact-hero-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Submit Property Hero Section with Background Image */
.submit-hero-image {
    position: relative;
    min-height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images-video/submuty.property.1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    background-attachment: fixed;
}

.submit-hero-overlay {
    max-width: 650px;
    padding: 50px;
    border-left: 4px solid #c9a961;
    background: rgba(0, 0, 0, 0.4);
    margin-left: 10%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.submit-hero-subtitle-small {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.submit-hero-title-large {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.submit-hero-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Responsive for Hero Images */
@media (max-width: 768px) {

    .contact-hero-image,
    .submit-hero-image {
        min-height: 450px;
        background-attachment: scroll;
        align-items: flex-start;
        /* Align top so we can pad it down */
        padding-top: 120px;
        /* Space for fixed header */
    }

    .contact-hero-overlay,
    .submit-hero-overlay {
        margin-left: 5%;
        padding: 20px;
    }

    .contact-hero-title-large,
    .submit-hero-title-large {
        font-size: 2.2rem;
    }

    .contact-hero-description,
    .submit-hero-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .contact-hero-image,
    .submit-hero-image {
        min-height: 400px;
        align-items: flex-start;
        padding-top: 110px;
    }

    .contact-hero-overlay,
    .submit-hero-overlay {
        margin-left: 0;
        padding: 25px;
        max-width: 90%;
    }

    .contact-hero-title-large,
    .submit-hero-title-large {
        font-size: 1.8rem;
    }

    .contact-hero-subtitle-small,
    .submit-hero-subtitle-small {
        font-size: 0.65rem;
    }

    .contact-hero-description,
    .submit-hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    margin-bottom: 40px;
}

/* Contact Containers */
.contact-container {
    background-color: #f5f5f5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-map-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - Contact Form */
.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 40px;
    font-weight: 400;
}

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

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #999;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    background-color: var(--white);
}

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

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 220px;
}

.btn-contact-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-black);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.btn-contact-submit:hover {
    background-color: #333;
}

/* Right Column - Contact Info */
.contact-info-wrapper {
    flex: 1;
}

.contact-info-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-black);
}

/* Privacy Checkbox */
.privacy-checkbox {
    margin-bottom: 25px !important;
}

.privacy-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.privacy-checkbox input[type="checkbox"] {
    width: auto !important;
    min-width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-black);
    flex-shrink: 0;
}

.privacy-checkbox span {
    display: block;
}

.privacy-checkbox a {
    color: var(--primary-black);
    text-decoration: underline;
    transition: opacity 0.3s ease;
    display: inline;
}

.privacy-checkbox a:hover {
    opacity: 0.7;
}

/* Map Section */
.contact-map-section {
    width: 100%;
}

.contact-map-section h2 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 30px;
    font-weight: 400;
}

.map-container {
    background-color: var(--white);
    padding: 0;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        padding: 30px;
    }

    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 640px) {
    .contact-container {
        padding: 20px;
    }

    .contact-form-wrapper h2,
    .contact-info-wrapper h2,
    .contact-map-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-content p {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 100%;
        padding: 4px 4px 4px 15px;
    }

    .newsletter-form input {
        max-width: 100%;
        flex: 1;
        min-width: 0;
    }

    .newsletter-form button {
        padding: 10px 14px;
        font-size: 1.1rem;
    }

    /* Mobile Logo - Maintain consistency */
    .logo-center,
    .logo-center a {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        font-weight: 300 !important;
        line-height: 1.2 !important;
    }

    /* Footer Logo Mobile */
    .footer-logo-wrapper {
        gap: 0;
    }

    /* Mobile Header Adjustments */
    .header-main .container {
        padding: 0 20px;
    }

    /* Hide Desktop Nav on Mobile */
    .desktop-nav {
        display: none !important;
    }

    /* Show Mobile Menu Toggle on Mobile */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Show Mobile Nav on Mobile */
    .mobile-nav {
        display: flex !important;
    }

    /* Mobile Menu Responsive Adjustments */
    .mobile-nav-logo a {
        font-size: 1.5rem;
        letter-spacing: 1px;
        flex-direction: row;
        gap: 0;
        transform: translateX(-15px);
    }

    .mobile-nav-logo-img {
        margin-right: -8px;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
    }

}

/* Tablet Adjustments */
@media (max-width: 768px) and (min-width: 481px) {

    .logo-center,
    .logo-center a {
        font-size: 0.85rem !important;
        letter-spacing: 2px !important;
        font-weight: 300 !important;
        line-height: 1.2 !important;
    }

    .header-logo-img {
        height: 70px;
    }

    .header-logo-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .mobile-nav-logo a {
        font-size: 1.45rem;
        flex-direction: row;
        gap: 0;
        transform: translateX(-15px);
    }

    .mobile-nav-logo-img {
        height: 60px;
        margin-right: -8px;
        margin-bottom: 0;
    }

    .mobile-nav-link {
        font-size: 1.4rem;
    }

    /* Footer Tablet */
    .footer-logo-img {
        height: 65px;
        margin-right: -6px;
    }

    .footer-logo-text {
        font-size: 0.85rem;
    }
}

/* iPad Pro, Nest Hub (1024px) */
@media (max-width: 1024px) {
    .header-logo-img {
        height: 90px;
        margin-right: -7px;
    }

    .header-logo-text {
        font-size: 1.4rem;
        letter-spacing: 2.5px;
    }

    .footer-logo-img {
        height: 85px;
        margin-right: -7px;
    }

    .footer-logo-text {
        font-size: 1.3rem;
        letter-spacing: 2.5px;
    }

    .mobile-nav-logo-img {
        height: 90px;
        margin-right: -7px;
    }

    .mobile-nav-logo a {
        font-size: 1.4rem;
        letter-spacing: 2.5px;
    }
}

/* Surface Pro 7 (912px), iPad Air (820px), Asus Zenbook Fold (853px) */
@media (max-width: 912px) {
    .header-logo-img {
        height: 85px;
        margin-right: -6px;
    }

    .header-logo-text {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }

    .footer-logo-img {
        height: 80px;
        margin-right: -6px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .mobile-nav-logo-img {
        height: 85px;
        margin-right: -6px;
    }

    .mobile-nav-logo a {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
}

/* iPad Mini (768px) */
@media (max-width: 768px) {
    .header-logo-img {
        height: 75px;
        margin-right: -5px;
    }

    .header-logo-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .footer-logo-img {
        height: 70px;
        margin-right: -5px;
    }

    .footer-logo-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .mobile-nav-logo-img {
        height: 75px;
        margin-right: -5px;
    }

    .mobile-nav-logo a {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

/* Surface Duo (540px) */
@media (max-width: 540px) {
    .header-logo-img {
        height: 65px;
        margin-right: -5px;
    }

    .header-logo-text {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .footer-logo-img {
        height: 60px;
        margin-right: -5px;
    }

    .footer-logo-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .mobile-nav-logo-img {
        height: 65px;
        margin-right: -5px;
    }

    .mobile-nav-logo a {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
}

/* iPhone 14 Pro Max (430px), iPhone XR (414px), Pixel 7 (412px), Samsung S20 Ultra (412px), Galaxy A51/71 (412px) */
@media (max-width: 430px) {
    .header-logo-img {
        height: 58px;
        margin-right: -4px;
    }

    .header-logo-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .footer-logo-img {
        height: 55px;
        margin-right: -4px;
    }

    .footer-logo-text {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .mobile-nav-menu {
        padding: 20px 30px;
    }

    .mobile-nav-logo a {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .mobile-nav-logo-img {
        height: 58px;
        margin-right: -4px;
    }

    .mobile-nav-tagline {
        font-size: 0.65rem;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
    }

    .mobile-nav-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* iPhone 12 Pro (390px) */
@media (max-width: 390px) {
    .header-logo-img {
        height: 52px;
        margin-right: -4px;
    }

    .header-logo-text {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .footer-logo-img {
        height: 50px;
        margin-right: -4px;
    }

    .footer-logo-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .mobile-nav-logo-img {
        height: 52px;
        margin-right: -4px;
    }

    .mobile-nav-logo a {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }
}

/* iPhone SE (375px) */
@media (max-width: 375px) {
    .header-logo-img {
        height: 48px;
        margin-right: -3px;
    }

    .header-logo-text {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .footer-logo-img {
        height: 45px;
        margin-right: -3px;
    }

    .footer-logo-text {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .mobile-nav-logo-img {
        height: 48px;
        margin-right: -3px;
    }

    .mobile-nav-logo a {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }
}

/* Samsung Galaxy S8+ (360px) */
@media (max-width: 360px) {
    .header-logo-img {
        height: 45px;
        margin-right: -3px;
    }

    .header-logo-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .footer-logo-img {
        height: 42px;
        margin-right: -3px;
    }

    .footer-logo-text {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .mobile-nav-logo-img {
        height: 45px;
        margin-right: -3px;
    }

    .mobile-nav-logo a {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* Galaxy Z Fold 5 (344px) - Smallest */
@media (max-width: 344px) {
    .header-logo-img {
        height: 42px;
        margin-right: -3px;
    }

    .header-logo-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .footer-logo-img {
        height: 40px;
        margin-right: -3px;
    }

    .footer-logo-text {
        font-size: 0.58rem;
        letter-spacing: 0.5px;
    }

    .mobile-nav-logo-img {
        height: 42px;
        margin-right: -3px;
    }

    .mobile-nav-logo a {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}