/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #bfa31c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}
html {
  scroll-behavior: smooth;
}
.splash-content {
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-in-out;
}
.header-link {
color: black;
    text-decoration: none;
}
.splash-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 2px;
}

.splash-content p {
  font-size: 18px;
  letter-spacing: 1px;
}

/* TradeGothic Font Face Declarations */
@font-face {
    font-family: 'TradeGothic';
    src: url('../fonts/TradeGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}
 .image-item {
      filter: grayscale(50%);
      transition: filter 0.5s ease;
    }

    .image-item:hover {
      filter: grayscale(0%);
    }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-image {
    width: 40%;
    margin-bottom: 2rem;
}
/* Header Styles */
.modern-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 18px;
    font-weight: 600;
    color: #FFD700;
    text-decoration: none;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

    .navbar-brand:hover {
        color: #FFD700;
        text-decoration: none;
    }

/* Burger Menu Button */
.burger-menu {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

    .burger-menu.hidden {
        opacity: 0;
        pointer-events: none;
    }

.burger-line {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Close Menu Button */
.close-menu {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

    .close-menu.visible {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.close-line {
    position: absolute;
    width: 25px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

    .close-line:first-child {
        transform: rotate(45deg);
    }

    .close-line:last-child {
        transform: rotate(-45deg);
    }

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f8f8f8;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    padding-top: 80px;
}

.menu-left {
    padding: 60px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.menu-right {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
}

/* Navigation Styles */
.main-navigation {
    width: 100%;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.menu-overlay.active .nav-item {
    transform: translateY(0);
    opacity: 1;
}

.nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-item:nth-child(5) {
    transition-delay: 0.5s;
}

.nav-item:nth-child(6) {
    transition-delay: 0.6s;
}

.nav-link {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

    .nav-link:hover {
        color: #FFD700;
        text-decoration: none;
    }

/* Menu Right Section */
.menu-section {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.menu-overlay.active .menu-section {
    transform: translateY(0);
    opacity: 1;
}

.menu-section:nth-child(1) {
    transition-delay: 0.3s;
}

.menu-section:nth-child(2) {
    transition-delay: 0.4s;
}

.menu-section:nth-child(3) {
    transition-delay: 0.5s;
}

.section-title {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

/* Hero Section */
.hero-section {
        padding: 90px 0px 0px;
    min-height: 100vh;
}

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

.hero-text {
    max-width: 500px;
    text-align: center;
    font-family: 'TradeGothic';
}

.hero-title {
    margin-bottom: 40px;
}

.brand-name {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 8px;
}

.companies-section {
    margin-top: 40px;
}

.companies-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.company-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.company-row {
    display: flex;
    gap: 24px;
    align-items: center;
}
.company-item {
      position: relative;
      color: gray;
      text-decoration: none;
      transition: color 0.3s ease;
          cursor: pointer;
    }

    .company-item::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;              /* adjust spacing below text */
      width: 0;
      height: 2px;
      background: gold;       /* underline color */
      transition: width 0.3s ease;
    }

    .company-item:hover {
      color: gold;
    }

    .company-item:hover::after {
      width: 100%;
    }

.company-item2 {
    font-size: 16px;
    font-weight: 400;
    color: #333;

    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .company-item2::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .company-item2:hover::before {
        left: 100%;
    }

    .company-item2:hover {
        transform: translateY(-3px) scale(1.02);
        border-color: #FFD700;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
        color: #333;
        background: rgba(255, 255, 255, 0.95);
    }

    .company-item:active {
        transform: translateY(-1px) scale(0.98);
        transition: all 0.1s ease;
    }

    .company-item.clicking {
        transform: scale(0.95);
        background: #FFD700;
        color: #333;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .company-item.location {
        font-weight: 500;
        background: #333;
        color: #fff;
        border-color: #333;
    }

/* Hero Image */
.hero-image {
    position: relative;
}

.office-image {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url(/img/golden.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Content Sections */
.content-sections {
    padding: 0px 0px;
}

.content-row {
    padding: 140px 0;
    position: relative;
}

    .content-row:nth-child(even) {
        background-color: #f8f9fa;
    }

.row-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.content-row.reverse .row-content {
    grid-template-columns: 1fr 1fr;
}

.content-row.reverse .text-content {
    order: 2;
    text-align: left;
}

.content-row.reverse .images-grid {
    order: 1;
}

/* Text Content */
.text-content {
    width: 100%;
    max-width: none;
    padding: 40px 0;
    text-align: center;
}

    .text-content .section-title {
        font-size: 48px;
        font-weight: 700;
        color: #333;
        line-height: 1.1;
        margin-bottom: 30px;
        letter-spacing: -1px;
        font-style: normal;
    }

.section-description {
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
    font-family: OpenSans;
}

.cta-button {
    display: inline-block;
    padding: 5px 10px;
    background: transparent;
    color: #333;
    text-decoration: none;
    border: 2px solid #333;
    font-weight: 600;
    border-radius:8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    align-self: flex-start;
}

    .cta-button:hover {
        background: #fff;
        color: #FFD700;
        text-decoration: none;
        border: 2px solid #FFD700;
    }

/* Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    height: 600px;
    position: relative;
    width: 100%;
}

.image-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.image-item2 {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 4s ease, transform 4s ease;
}

    .image-item.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .image-item.large {
        grid-row: span 2;
        grid-column: 1;
    }

    .image-item.medium {
        grid-column: 2;
        grid-row: 1;
        height: 280px;
    }

    .image-item.small {
        grid-column: 1;
        grid-row: 3;
        height: 180px;
        margin-top: -100px;
        z-index: 2 !important;
    }

    .image-item.medium-tall {
        grid-column: 2;
        grid-row: 2;
        height: 300px;
        margin-top: -20px;
    }

    /* Image Placeholders with Different Styles */
    .image-item .image-placeholder {
        width: 100%;
        height: 100%;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        background-repeat: round;
    }

.coffee-setup {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.coffee-maker {
    background: linear-gradient(135deg, #2F4F4F 0%, #708090 100%);
}

.coffee-bags {
    background: linear-gradient(135deg, #8B0000 0%, #FF6347 100%);
}

.coffee-display {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.barista-work {
    background: linear-gradient(135deg, #4B0082 0%, #9370DB 100%);
}

.coffee-experience {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
}

.brewing {
    background: linear-gradient(135deg, #CD853F 0%, #F4A460 100%);
}

.workshop {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
}

.premium-beans {
    background: linear-gradient(135deg, #800000 0%, #DC143C 100%);
}

.roasting {
    background: linear-gradient(135deg, #556B2F 0%, #9ACD32 100%);
}

.cupping {
    background: linear-gradient(135deg, #4682B4 0%, #87CEEB 100%);
}

.tasting {
    background: linear-gradient(135deg, #8B008B 0%, #DA70D6 100%);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.image-item:hover .image-placeholder::after {
    opacity: 0.1;
}

/* Animation Delays */
.image-item[data-animation="fadeInUp"] {
    transition-delay: 0.2s;
}

.image-item[data-animation="fadeInRight"] {
    transition-delay: 0.4s;
}

.image-item[data-animation="fadeInLeft"] {
    transition-delay: 0.6s;
}

.image-item[data-animation="fadeInDown"] {
    transition-delay: 0.8s;
}

/* Footer */
.modern-footer {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 100px;
    z-index: 100;
}

.footer-content {
    text-align: center;
}

    .footer-content p {
        color: #666;
        font-size: 14px;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-content {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .menu-left {
        padding: 40px 60px 20px;
    }

    .menu-right {
        padding: 20px 60px 40px;
        gap: 40px;
    }

    .nav-link {
        font-size: 28px;
    }

    .nav-item {
        margin-bottom: 30px;
    }

    .row-content {
        gap: 60px;
    }

    .text-content .section-title {
        font-size: 36px;
    }

    .images-grid {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-name {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .company-row {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .office-image {
        height: 250px;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .menu-left,
    .menu-right {
        padding: 30px 40px;
    }

    .nav-link {
        font-size: 24px;
    }

    .section-title {
        font-size: 16px;
    }

    .content-row {
        padding: 60px 0;
    }

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

    .content-row.reverse .text-content,
    .content-row.reverse .images-grid {
        order: initial;
    }

    .text-content .section-title {
        font-size: 28px;
    }

    .images-grid {
        height: 400px;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .image-item.small {
        margin-top: 0;
    }

    .image-item.medium-tall {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .companies-title {
        font-size: 20px;
    }

    .company-item {
        font-size: 14px;
        padding: 6px 12px;
    }

    .menu-left,
    .menu-right {
        padding: 20px;
    }

    .nav-link {
        font-size: 20px;
    }

    .nav-item {
        margin-bottom: 25px;
    }

    .text-content .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .images-grid {
        height: 300px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .image-item.large,
    .image-item.medium,
    .image-item.small,
    .image-item.medium-tall {
        grid-column: 1;
        grid-row: auto;
        height: auto;
        margin-top: 0;
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FFD700;
    border: none;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-to-top:hover {
        background: #333;
        color: #FFD700;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    }

    .scroll-to-top:active {
        transform: translateY(-1px) scale(0.95);
    }

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Timeline & Resume Section */
.timeline-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #eae266e6 0%, #90a24be6 100%), url('/img/golden.jpg') center/cover;
    position: relative;
    color: white;
    z-index:5;
}

    .timeline-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

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

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.timeline-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

    .timeline-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #FFD700, rgba(255, 215, 0, 0.3));
        z-index: 0;
    }

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .timeline-item.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 60%;
        text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60%;
        text-align: left;
    }

    .timeline-item::before {
        content: attr(data-year);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #FFD700;
        color: #333;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 16px;
        z-index: 3;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid #FFD700;
        border-radius: 50%;
        z-index: 2;
    }

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.15);
    }

    .timeline-content::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 0;
        height: 0;
        border: 15px solid transparent;
    }

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #333;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-title {
        font-size: 32px;
    }

    .timeline-subtitle {
        font-size: 18px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item::before {
        left: 30px;
        transform: translateX(-50%) translateY(-50%);
    }

    .timeline-item::after {
        left: 30px;
        transform: translateX(-50%) translateY(-50%);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

        .timeline-item:nth-child(odd) .timeline-content::before,
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -30px;
            right: auto;
            border-right-color: rgba(255, 255, 255, 0.1);
            border-left-color: transparent;
        }

    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
    }

    .timeline-content {
        padding: 30px 25px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 100;
}

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

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
}

    .contact-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: #666;
    }

.contact-subtitle {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 300;
}

.heart {
    color: #e74c3c;
    font-size: 24px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .contact-form-container.animate {
        opacity: 1;
        transform: translateY(0);
    }

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

.form-group {
    position: relative;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 5px;
        font-size: 16px;
        color: #333;
        background: #ffffff;
        transition: all 0.3s ease;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #666;
            box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
            font-weight: 300;
        }

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

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

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.captcha-text {
    background: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
}

.captcha-container input {
    flex: 1;
    margin: 0;
}

.send-button {
    background: #333;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

    .send-button:hover {
        background: #555;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .send-button:active {
        transform: translateY(0);
    }

.contact-info {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

    .contact-info.animate {
        opacity: 1;
        transform: translateY(0);
    }

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

    .contact-item:last-of-type {
        border-bottom: none;
        margin-bottom: 40px;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.company-location,
.phone-number,
.email-address {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.social-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #333;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.social-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 22px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-container {
        flex-direction: column;
        gap: 10px;
    }

    .captcha-text {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-icons {
        gap: 10px;
    }
}

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

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .send-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Enhanced Responsive Design for Image Grids */
@media (max-width: 1024px) {
    .images-grid {
        height: 500px;
        gap: 15px;
    }

    .image-item.medium {
        height: 240px;
    }

    .image-item.medium-tall {
        height: 260px;
        margin-top: -10px;
    }

    .image-item.small {
        height: 160px;
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .images-grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        min-height: 350px;
    }

    .image-item.large,
    .image-item.medium,
    .image-item.small,
    .image-item.medium-tall {
        height: 150px;
        margin-top: 0;
        grid-column: auto;
        grid-row: auto;
        right:0;
    }

    .image-item.large {
        grid-column: 1 / -1;
        height: 180px;
    }

    .image-item.medium {
        grid-column: 1;
        grid-row: 2;
    }

    .image-item.small {
        grid-column: 2;
        grid-row: 2;
    }

    .image-item.medium-tall {
        grid-column: 1 / -1;
        grid-row: 3;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 10px;
        height: auto;
        min-height: 400px;
    }

    .image-item.large,
    .image-item.medium,
    .image-item.small,
    .image-item.medium-tall {
        grid-column: 1;
        grid-row: auto;
        height: 120px;
        margin-top: 0;
    }

    .image-item.large {
        height: 140px;
    }
}

@media (max-width: 360px) {
    .images-grid {
        min-height: 320px;
        gap: 8px;
    }

    .image-item.large,
    .image-item.medium,
    .image-item.small,
    .image-item.medium-tall {
        height: 100px;
    }

    .image-item.large {
        height: 120px;
    }
}

/* Enhanced Image Item Responsiveness */
@media (max-width: 768px) {
    .image-item .image-placeholder {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

/* Fix for content sections on mobile */
@media (max-width: 768px) {
    .row-content {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
    }

    .text-content {
        padding: 20px 0;
    }

    .content-row {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .content-row {
        padding: 40px 0;
    }

    .text-content {
        padding: 15px 0;
    }

    .row-content {
        gap: 25px;
    }
}

.vertical-line {
    position: absolute;
    top: 100vh;
    bottom: 0;
    height: 800vh;
    left: 50%;
    width: 1px;
    background-color: black;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}
@media (max-width: 768px) {
    .vertical-line {
       display:none;
    }
}