/* ==========================================================================
   File Documentation
   ==========================================================================
   
   HTML Files:
   -----------
   - index.html: Main landing page with property listings and auction information
   - plots.html: Property listings page with filtering and pagination
   - single-product.html: Detailed view of individual property with images and enquiry form
   - dashboard.html: Admin dashboard for managing properties and auctions
   - signin.html: User authentication page
   - newaccount.html: New user registration page
   - forgot-password.html: Password recovery page
   - signin-error.html: Error page for failed login attempts

   JavaScript Files:
   ----------------
   - js/script.js: Main JavaScript file for common functionality
   - js/plots.js: JavaScript for property listings page functionality
   - js/jquery-1.11.0.min.js: jQuery library for DOM manipulation

   CSS Files:
   ----------
   - css/style.css: Main stylesheet containing all site styles
   
   Image Files:
   -----------
   - images/logo Blue.png: Company logo
   - images/image.png: Default property image
   - images/blueprint.png: Property blueprint image
   - images/location.png: Property location map image

   Font Files:
   ----------
   - fonts/*.otf: Acumin Pro font family files

   ========================================================================== */

/* ==========================================================================
   Font Declarations
   ========================================================================== */
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-BdItPro.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-BdPro.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-ItPro.otf") format("opentype");
    font-weight: 400; /* Assuming regular italic */
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-Pro.otf") format("opentype");
    font-weight: 400; /* Assuming regular */
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-RgItPro.otf") format("opentype");
    font-weight: 400; /* Assuming regular italic */
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-RgPro.otf") format("opentype");
    font-weight: 400; /* Assuming regular */
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-SlPro.otf") format("opentype");
    font-weight: 300; /* Assuming semi-light */
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-ThPro.otf") format("opentype");
    font-weight: 100; /* Assuming thin */
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-UlPro.otf") format("opentype");
    font-weight: 200; /* Assuming ultra-light */
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-UlItPro.otf") format("opentype");
    font-weight: 200; /* Assuming ultra-light italic */
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-UlSlPro.otf") format("opentype");
    font-weight: 200; /* Assuming ultra-light semi-light */
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin-UlSlItPro.otf") format("opentype");
    font-weight: 200; /* Assuming ultra-light semi-light italic */
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin\ Pro\ Thin\ Italic.otf") format("opentype");
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin\ Pro\ Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin\ Pro\ UltraLight\ Italic.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: "Acumin Pro";
    src: url("../fonts/Acumin\ Pro\ UltraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  --primary-color: #E30613;
  --secondary-color: #222469;
  --gray-dark: #070707;
  --gray-light: #F9F9F9;
  --text-color: #333333;
  --light-gray: #f8f9fa;
  --border-color: #dee2e6;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

body,
html {
  font-family: 'Acumin Pro', Arial, sans-serif;
  color: var(--gray-dark);
  background: var(--gray-light);
  height: 100%; /* Ensure body and html take full height */
  margin: 0;
  padding: 0;
}

/* Text Colors */
.text-secondary {
  color: var(--secondary-color) !important;
}

p {
  color: var(--gray-dark);
}

/* Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Apply font to main page sections */
header,
main,
.bg-danger.py-2 { /* Targeting the specific footer section class in index.html */
  font-family: 'Acumin Pro', Arial, sans-serif;
}

/* Header Styles */
header {
  background-color: #fff;
}

main {
  flex: 1 0 auto; /* Allow main content to grow and push footer down */
}

footer,
.footer-section,
.bg-danger.py-2 { /* Also include the new footer class in the footer layout rule */
  flex-shrink: 0; /* Prevent footer from shrinking */
  margin-top: auto; /* Push the footer to the bottom */
}

/* Side Menu Container */
.side-menu {
  width: 280px;
  background: #fff;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex; /* Use flex for internal layout */
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Push logo/menu up, logout down */
  font-family: 'Acumin Pro', Arial, sans-serif;
}

/* Collapsed State */
.side-menu.collapsed {
  width: 80px;
}

/* Menu Header */
.side-menu .menu-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  background: #fff;
}

/* Menu Navigation */
.side-menu .nav {
    flex-grow: 1; /* Allow nav to take up available space */
}

.side-menu .nav-link {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.side-menu .nav-link:hover {
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary-color);
}

.side-menu .nav-link.active {
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
}

.side-menu .nav-link i {
  width: 24px;
  margin-right: 1rem;
  text-align: center;
}

/* Accordion overrides for side menu */
.side-menu .accordion-button {
    padding: 0.75rem 1.5rem;
    color: #333;
    background-color: transparent; /* Ensure consistent background */
    border: none; /* Remove default border */
    box-shadow: none; /* Remove default shadow */
}

.side-menu .accordion-button:focus {
    box-shadow: none; /* Remove focus shadow */
}

.side-menu .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(227, 6, 19, 0.1);
    border-left: 4px solid var(--primary-color);
}

.side-menu .accordion-button::after {
    filter: invert(28%) sepia(87%) saturate(5326%) hue-rotate(347deg) brightness(98%) contrast(107%); /* Red color for icon */
}

.side-menu .accordion-button:not(.collapsed)::after {
    filter: invert(28%) sepia(87%) saturate(5326%) hue-rotate(347deg) brightness(98%) contrast(107%); /* Red color for icon */
}

.side-menu .accordion-body {
    padding: 0.5rem 1.5rem 0.5rem 3rem; /* Adjust padding for nested links */
}

.side-menu .accordion-body .nav-link {
    padding: 0.5rem 0;
}


/* Main Content */
.main-content {
  margin-left: 280px;
  padding: 2rem;
  transition: all 0.3s ease;
  background: var(--gray-light);
  width: calc(100% - 280px); /* Adjust width */
  font-family: 'Acumin Pro', Arial, sans-serif;
}

.main-content.expanded {
  margin-left: 80px;
  width: calc(100% - 80px); /* Adjust width */
}

/* Responsive adjustment for main content */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0; /* Remove margin on smaller screens */
        padding: 1rem;
        width: 100%; /* Full width on mobile */
    }
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn {
    font-family: 'Acumin Pro', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
}

.btn-danger,
.btn-primary {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-outline-danger,
.btn-outline-primary {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

/* Button SVG styles */
.btn-outline-danger svg,
.btn-outline-danger svg use,
.btn-outline-danger svg path {
    fill: var(--primary-color) !important;
    color: var(--primary-color) !important;
    transition: fill 0.2s, color 0.2s;
}

.btn-outline-danger:hover svg,
.btn-outline-danger:hover svg use,
.btn-outline-danger:hover svg path,
.btn-outline-danger:focus svg,
.btn-outline-danger:focus svg use,
.btn-outline-danger:focus svg path {
    fill: #fff !important;
    color: #fff !important;
}

/* View More Button (Specific style on index page) */
.btn.btn-light.border-primary {
  padding: 0.8rem 2.5rem !important; /* Adjusted padding for a larger look */
  font-size: 1.0rem !important; /* Adjusted font size */
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  background-color: #fff !important;
}

.btn.btn-light.border-primary:hover,
.btn.btn-light.border-primary:focus {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

/* Inputs, selects, textareas */
input,
select,
textarea,
.form-control {
  background-color: #fff;
  color: var(--gray-dark);
  border: 1px solid #ddd;
  font-family: 'Acumin Pro', Arial, sans-serif;
  border-radius: 0 !important; /* Ensure sharp corners */
  padding: 0.375rem 0.75rem; /* Default Bootstrap padding */
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25); /* Match primary color with transparency */
}


/* Cards */
.card {
    border-radius: 0 !important;
    border-color: #eee; /* Subtle border color */
}

/* Modals */
.modal-content {
    border-radius: 0 !important;
}

/* Tabs */
.nav-tabs .nav-link {
    border-radius: 0 !important;
    color: var(--gray-dark);
    border-color: transparent;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
    padding: 0.5rem 1rem; /* Adjust padding */
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: transparent;
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-color: transparent;
    border-bottom-color: var(--primary-color); /* Apply color to bottom border */
}

.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-link.active:focus {
    color: var(--primary-color);
}

/* DataTables Custom Styling */
.dataTables_wrapper .row {
    margin-bottom: 15px; /* Add space below DataTables controls */
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ddd;
    border-radius: 0 !important; /* Apply global border-radius reset */
    padding: 5px 10px;
    margin-left: 0.5em; /* Add space between label and input */
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #ddd;
    border-radius: 0 !important; /* Apply global border-radius reset */
    padding: 5px 10px;
    margin-right: 0.5em; /* Add space between select and text */
}

.dt-buttons {
    margin-bottom: 15px;
    float: left; /* Align buttons to the left */
}

.dt-buttons .btn {
    margin-right: 5px;
}

.dataTables_wrapper .dataTables_info {
    padding-top: 0.85em; /* Align info text */
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 0.85em; /* Align pagination */
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.5em 1em;
    margin: 0 2px;
    border: 1px solid transparent; /* Add border for consistent spacing */
    border-radius: 0 !important; /* Apply global border-radius reset */
    background-color: transparent;
    color: var(--gray-dark) !important;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--gray-light) !important;
    border-color: #ddd !important;
    color: var(--primary-color) !important;
}

/* Add cursor pointer to table rows */
#productsTable tbody tr,
#completedTable tbody tr,
#enquiriesTable tbody tr {
    cursor: pointer;
}

/* ==========================================================================
   Utility Classes (Ensure these are minimal and highly reusable)
   ========================================================================== */

/* Remove border-radius globally (keep this at the end for specificity) */
.rounded,
.rounded-4,
.rounded-pill,
.navbar,
.input-group-text,
.progress-bar,
.carousel-inner,
.badge,
.alert,
.table,
.progress,
.border,
.shadow-sm,
.main-content,
.side-menu,
.stat-icon,
.logo,
.footer-section,
.form-select, /* Added form-select */
.form-check-input /* Added form-check-input */
{
  border-radius: 0 !important;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 768px) {
    /* Mobile Side Menu
       ========================================================================== */
    .side-menu {
        transform: translateX(-100%);
        width: 250px; /* Adjust width for smaller screens */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow */
    }

    .side-menu.show {
        transform: translateX(0);
    }

    /* Mobile Main Content
       ========================================================================== */
    .main-content {
        margin-left: 0; /* Remove margin on smaller screens */
        padding: 1rem;
        width: 100%; /* Full width on mobile */
    }

    /* Adjust button padding for smaller screens */
    .btn {
        padding: 0.4rem 1rem;
        font-size: 14px;
    }

    /* Adjust header/logo spacing */
    .navbar-brand img.logo {
        height: 30px !important; /* Smaller logo */
    }

    .navbar .col-auto {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar .col {
         padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    /* Adjust typography for smaller screens */
    h1 { font-size: 35px; }
    h2 { font-size: 30px; }
    h3 { font-size: 25px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    p, .p, label, input, select, textarea { font-size: 14px; }

    /* Adjust DataTables pagination */
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 0.3em 0.6em;
    }
}

/* Media query for very small screens */
@media (max-width: 576px) {
     /* Further adjustments for very small screens */
    .side-menu {
        width: 200px; /* Even smaller side menu */
    }

    

    /* Stack filter buttons */
     .d-flex.gap-3.flex-wrap {
        flex-direction: column;
        align-items: stretch;
     }

     .d-flex.gap-3.flex-wrap > div {
        width: 100%;
     }

     .d-flex.gap-2 {
        width: 100%;
        justify-content: space-around;
     }

     .d-flex.gap-2 .btn {
        flex-grow: 1;
     }
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
}

/* Form Styles */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0.75rem;
    transition: border-color 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-label {
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    margin-bottom: 0.5rem;
}

/* Button Styles */
.btn-danger {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c00510;
    border-color: #c00510;
    transform: translateY(-1px);
}

/* Link Styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c00510;
}

/* Error Message Styles */
.error-message {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-control.is-invalid {
    border-color: var(--primary-color);
}

/* Loading Spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

/* Form Container */
.form-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .form-container {
        padding: 1rem;
    }
    
    .btn-danger {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   Dashboard Styles
   ========================================================================== */

/* Side Menu */
.side-menu {
  width: 280px;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  position: fixed;
  height: 100vh;
  z-index: 1000;
}

.main-content {
  margin-left: 280px;
  padding: 2rem;
}

.nav-link {
  color: #333;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #E30613;
  background: rgba(227, 6, 19, 0.1);
}

.accordion-button:not(.collapsed) {
  color: #E30613;
  background: rgba(227, 6, 19, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(227, 6, 19, 0.1);
}

/* ==========================================================================
   Sign In Styles
   ========================================================================== */

.signin-container {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signin-form {
  max-width: 420px;
  width: 100%;
}

.signin-form .form-label {
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 2px;
}

.signin-form .form-control {
  border-radius: 0;
}

.signin-form .btn-danger {
  border-radius: 0;
  min-width: 90px;
}

.signin-form .form-check-label {
  font-size: 0.95rem;
}

.signin-form .signup-link {
  font-size: 0.95rem;
}

.signin-form .forgot-password {
  text-decoration: none;
  font-size: 0.98rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
  .side-menu {
    width: 100%;
    transform: translateX(-100%);
  }
  
  .side-menu.show {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: 1rem;
  }
  
  .signin-container {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .side-menu {
    width: 100%;
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .d-flex.gap-3.flex-wrap {
    gap: 1rem !important;
  }
  
  .d-flex.gap-3.flex-wrap > div {
    width: 100%;
  }
  
  .d-flex.gap-2 {
    gap: 0.5rem !important;
  }
  
  .d-flex.gap-2 .btn {
    padding: 0.5rem 1rem;
  }
}

/* Dashboard Specific Footer */
.dashboard-footer {
    margin-top: auto; /* Push the footer to the bottom */
    width: calc(100% - 280px); /* Match the width of the main content area */
    margin-left: 280px; /* Align with the main content area next to the sidebar */
    font-family: 'Acumin Pro', Arial, sans-serif;
}

/* Responsive adjustment for dashboard footer */
@media (max-width: 768px) {
    .dashboard-footer {
        width: 100%; /* Full width on smaller screens */
        margin-left: 0; /* Align to the left when sidebar is hidden */
    }
}

.area-measurement-option .form-check-label {
    margin-left: 0.5rem; /* Adjust the value as needed for desired spacing */
}

.hide-scrollbar {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

#productsTable thead th {
    font-weight: 500;
}

#completedTable thead th {
    font-weight: 500;
}

/* Nav Pills */
.nav-pills .nav-link {
    color: var(--gray-dark);
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-pills .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-pills .nav-link:hover::after,
.nav-pills .nav-link:focus::after {
    width: 100%;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
    color: var(--secondary-color);
    background-color: rgba(34, 36, 105, 0.1);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-pills .nav-link.active::after {
    display: none;
}

/* Filter Button */
.btn-outline-danger {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-danger svg,
.btn-outline-danger svg use,
.btn-outline-danger svg path {
    fill: currentColor !important;
    color: currentColor !important;
    transition: all 0.3s ease;
}

/* Select element styles */
select.form-select {
    color: #E30613;
}

select option {
    color: #E30613;
}

select option:checked {
    color: #222469;
}

select option:hover,
select option:focus,
select option:active {
    background-color: #222469 !important;
    color: white !important;
}

/* Social Share Section */
.social-share {
  padding: 1rem 0;
}

.social-share h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments for social icons */
@media (max-width: 576px) {
  .social-icons {
    justify-content: center;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}